mirror of
https://git.wownero.com/wownero/tippero.git
synced 2024-08-15 00:33:14 +00:00
Cleaner code for optional parameters
This commit is contained in:
parent
79f3a00415
commit
dd98853861
1 changed files with 25 additions and 20 deletions
35
tipbot.py
35
tipbot.py
|
@ -152,6 +152,14 @@ def Part(chan):
|
|||
def Who(chan):
|
||||
SendIRC ( 'WHO ' + chan)
|
||||
|
||||
def IsParamPresent(parms,idx):
|
||||
return len(parms) > idx
|
||||
|
||||
def GetParam(parms,idx):
|
||||
if IsParamPresent(parms,idx):
|
||||
return parms[idx]
|
||||
return None
|
||||
|
||||
def CheckRegistered(nick,ifyes,yesdata,ifno,nodata):
|
||||
if nick not in calltable:
|
||||
calltable[nick] = []
|
||||
|
@ -305,11 +313,10 @@ def Rain(nick,data):
|
|||
except Exception,e:
|
||||
SendTo(sendto, "Usage: rain amount [users]")
|
||||
return
|
||||
users = GetParam(data,2)
|
||||
if users:
|
||||
try:
|
||||
if data[2] == None:
|
||||
users = None
|
||||
else:
|
||||
users=long(data[2])
|
||||
users=long(users)
|
||||
except Exception,e:
|
||||
SendTo(sendto, "Usage: rain amount [users]")
|
||||
return
|
||||
|
@ -398,10 +405,10 @@ def IsValidAddress(address):
|
|||
|
||||
def Withdraw(nick,data):
|
||||
address=data[0]
|
||||
amount=data[1]
|
||||
if not IsValidAddress(address):
|
||||
SendTo(nick, "Invalid address")
|
||||
return
|
||||
amount = GetParam(data,1)
|
||||
if amount:
|
||||
try:
|
||||
famount=float(amount)
|
||||
|
@ -994,15 +1001,14 @@ while True:
|
|||
CheckRegistered(GetNick(who),GetBalance,[sendto],SendTo,"You must be registered with Freenode to query balance")
|
||||
elif cmd[0] == 'tip':
|
||||
if len(cmd) == 3:
|
||||
CheckRegistered(GetNick(who),Tip,[sendto,cmd[1],cmd[2]],SendTo,"You must be registered with Freenode to tip")
|
||||
parms=[sendto]
|
||||
parms.extend(cmd[1:])
|
||||
CheckRegistered(GetNick(who),Tip,parms,SendTo,"You must be registered with Freenode to tip")
|
||||
else:
|
||||
SendTo(GetNick(who), "Usage: !tip nick amount");
|
||||
elif cmd[0] == 'withdraw':
|
||||
if len(cmd) == 2 or len(cmd) == 3:
|
||||
amount = None
|
||||
if len(cmd) == 3:
|
||||
amount = cmd[2]
|
||||
CheckRegistered(GetNick(who),Withdraw,[cmd[1],amount],SendTo,"You must be registered with Freenode to withdraw")
|
||||
CheckRegistered(GetNick(who),Withdraw,cmd[1:],SendTo,"You must be registered with Freenode to withdraw")
|
||||
else:
|
||||
SendTo(GetNick(who), "Usage: !withdraw address");
|
||||
elif cmd[0] == 'info':
|
||||
|
@ -1010,10 +1016,9 @@ while True:
|
|||
elif cmd[0] == 'rain':
|
||||
if chan[0] == '#':
|
||||
if len(cmd) == 2 or len(cmd) == 3:
|
||||
users = None
|
||||
if len(cmd) == 3:
|
||||
users = cmd[2]
|
||||
CheckRegistered(GetNick(who),Rain,[chan,cmd[1],users],SendTo,"You must be registered with Freenode to rain")
|
||||
parms=[chan]
|
||||
parms.extend(cmd[1:])
|
||||
CheckRegistered(GetNick(who),Rain,parms,SendTo,"You must be registered with Freenode to rain")
|
||||
else:
|
||||
SendTo(sendto, "Usage: !rain amount [users]");
|
||||
else:
|
||||
|
@ -1035,7 +1040,7 @@ while True:
|
|||
CheckAdmin(GetNick(who),DumpUsers,None,SendTo,"You must be admin")
|
||||
elif cmd[0] == 'show_activity':
|
||||
if len(cmd)==3:
|
||||
CheckAdmin(GetNick(who),ShowActivity,[cmd[1],cmd[2]],SendTo,"You must be admin")
|
||||
CheckAdmin(GetNick(who),ShowActivity,cmd[1:],SendTo,"You must be admin")
|
||||
else:
|
||||
SendTo(sendto,"Usage: show_activity channel nick")
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue