This commit is contained in:
Jeremy Fincher 2003-09-29 05:51:28 +00:00
parent 14459d05d8
commit 2b6eb6665e
1 changed files with 22 additions and 6 deletions

View File

@ -391,12 +391,28 @@ if __name__ == '__main__':
if yn('Would you like to add an owner user for your bot?') == 'y': if yn('Would you like to add an owner user for your bot?') == 'y':
import ircdb import ircdb
name = something('What should the owner\'s username be?') name = something('What should the owner\'s username be?')
password = something('What should the owner\'s password be?') try:
(id, u) = ircdb.users.newUser() id = ircdb.users.getUserId(name)
u.name = name u = ircdb.users.getUser(id)
u.setPassword(password) if u.checkCapability('owner'):
u.addCapability('owner') myPrint("""That user already exists, and has owner capabilities
ircdb.users.setUser(id, u) already. Perhaps you added it before? """)
if yn('Do you want to remove the its owner capability?')=='y':
u.removeCapability('owner')
ircdb.setUser(id, u)
else:
myPrint("""That user already exists, but doesn't have owner
capabilities.""")
if yn('Do you want to add to it owner capabilities?') == 'y':
u.addCapability('owner')
ircdb.setUser(id, u)
except KeyError:
password = something('What should the owner\'s password be?')
(id, u) = ircdb.users.newUser()
u.name = name
u.setPassword(password)
u.addCapability('owner')
ircdb.users.setUser(id, u)
myPrint("""Of course, when you're in an IRC channel you can address the bot myPrint("""Of course, when you're in an IRC channel you can address the bot
by its nick and it will respond, if you give it a valid command (it may or by its nick and it will respond, if you give it a valid command (it may or