mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 11:09:23 +01:00
More work on the wizard. Removed allowEval. (somewhere else?)
Still a couple of FIXME's. Added a function to prompt and set registry values to questions.py.
This commit is contained in:
parent
9ce0e7dc7d
commit
a7559f3686
@ -15,21 +15,18 @@ import logging
|
|||||||
import optparse
|
import optparse
|
||||||
from itertools import imap
|
from itertools import imap
|
||||||
|
|
||||||
import log
|
|
||||||
import ansi
|
import ansi
|
||||||
import registry
|
|
||||||
import conf
|
|
||||||
import utils
|
import utils
|
||||||
import Owner
|
|
||||||
import ircutils
|
import ircutils
|
||||||
|
import registry
|
||||||
|
|
||||||
import questions
|
import questions
|
||||||
from questions import output, yn, anything, something, expect, getpass
|
from questions import output, yn, anything, something, expect, getpass
|
||||||
|
|
||||||
def getPlugins():
|
def getPlugins(pluginDirs):
|
||||||
filenames = []
|
filenames = []
|
||||||
for dir in conf.supybot.directories.plugins():
|
for pluginDir in pluginDirs:
|
||||||
filenames.extend(os.listdir(dir))
|
filenames.extend(os.listdir(pluginDir))
|
||||||
plugins = sets.Set([])
|
plugins = sets.Set([])
|
||||||
for filename in filenames:
|
for filename in filenames:
|
||||||
if filename.endswith('.py') and filename[0].isupper():
|
if filename.endswith('.py') and filename[0].isupper():
|
||||||
@ -40,6 +37,7 @@ def getPlugins():
|
|||||||
return plugins
|
return plugins
|
||||||
|
|
||||||
def loadPlugin(name):
|
def loadPlugin(name):
|
||||||
|
import Owner
|
||||||
try:
|
try:
|
||||||
module = Owner.loadPluginModule(name)
|
module = Owner.loadPluginModule(name)
|
||||||
if hasattr(module, 'Class'):
|
if hasattr(module, 'Class'):
|
||||||
@ -72,19 +70,15 @@ def describePlugin(module, showUsage):
|
|||||||
else:
|
else:
|
||||||
output("""This plugin has no usage example.""")
|
output("""This plugin has no usage example.""")
|
||||||
|
|
||||||
def configurePlugin(module, advanced):
|
def clearLoadedPlugins(plugins, pluginRegistry):
|
||||||
if hasattr(module, 'configure'):
|
# FIXME: This is removing all plugins??
|
||||||
output("""Beginning configuration for %s..."""%module.Class.__name__)
|
for plugin in plugins:
|
||||||
module.configure(advanced)
|
try:
|
||||||
print # Blank line :)
|
pluginKey = pluginRegistry.getChild(plugin)
|
||||||
output("""Done!""")
|
if pluginKey():
|
||||||
else:
|
plugins.remove(plugin)
|
||||||
Owner.registerPlugin(module, currentValue=True)
|
except AttributeError:
|
||||||
|
continue
|
||||||
def clearLoadedPlugins(plugins):
|
|
||||||
for plugin, group in conf.supybot.plugins.children.iteritems():
|
|
||||||
if plugin in plugins and group():
|
|
||||||
plugins.remove(plugin)
|
|
||||||
|
|
||||||
_windowsVarRe = re.compile(r'%(\w+)%')
|
_windowsVarRe = re.compile(r'%(\w+)%')
|
||||||
def getDirectoryName(default):
|
def getDirectoryName(default):
|
||||||
@ -109,15 +103,28 @@ def getDirectoryName(default):
|
|||||||
return os.path.expandvars(os.path.expanduser(dir))
|
return os.path.expandvars(os.path.expanduser(dir))
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
conf.supybot.log.minimumPriority.setValue('CRITICAL')
|
from conf import version
|
||||||
parser = optparse.OptionParser(usage='Usage: %prog [options]',
|
parser = optparse.OptionParser(usage='Usage: %prog [options] [configFile]',
|
||||||
version='Supybot %s' % conf.version)
|
version='Supybot %s' % version)
|
||||||
(options, args) = parser.parse_args()
|
(options, args) = parser.parse_args()
|
||||||
|
|
||||||
output("""This is a wizard to help you start running supybot. What it
|
filename = ''
|
||||||
will do is create a single Python file whose effect will be that of
|
if len(args) > 1:
|
||||||
starting an IRC bot with the options you select here. So hold on tight
|
parser.error()
|
||||||
and be ready to be interrogated :)""")
|
elif len(args) == 1:
|
||||||
|
filename = args[0]
|
||||||
|
try:
|
||||||
|
registry.open(filename)
|
||||||
|
except OSError, msg:
|
||||||
|
raise SystemExit, 'Unable to open file %s: %s' % (filename, msg)
|
||||||
|
output("""It seems you already have a configuration file. We'll run
|
||||||
|
you through the options so you can change them if you want.""")
|
||||||
|
else:
|
||||||
|
output("""This is a wizard to help you start running supybot. What it
|
||||||
|
will do is create a single Python file whose effect will be that of
|
||||||
|
starting an IRC bot with the options you select here. So hold on tight
|
||||||
|
and be ready to be interrogated :)""")
|
||||||
|
|
||||||
|
|
||||||
output("""First of all, we can bold the questions you're asked so you can
|
output("""First of all, we can bold the questions you're asked so you can
|
||||||
easily distinguish the mostly useless blather (like this) from the
|
easily distinguish the mostly useless blather (like this) from the
|
||||||
@ -146,6 +153,9 @@ def main():
|
|||||||
advanced = yn('Are you an advanced Supybot user?', default=False)
|
advanced = yn('Are you an advanced Supybot user?', default=False)
|
||||||
|
|
||||||
### Directories.
|
### Directories.
|
||||||
|
# We set these variables in cache because otherwise conf and log will
|
||||||
|
# create directories for the default values, which might not be what the
|
||||||
|
# user wants.
|
||||||
output("""Now we've got to ask you some questions about where some of
|
output("""Now we've got to ask you some questions about where some of
|
||||||
your directories are (or, perhaps, will be :)). If you're running this
|
your directories are (or, perhaps, will be :)). If you're running this
|
||||||
wizard from the directory you'll actually be starting your bot from and
|
wizard from the directory you'll actually be starting your bot from and
|
||||||
@ -157,42 +167,74 @@ def main():
|
|||||||
output("""Your bot will need to put his logs somewhere. Do you have any
|
output("""Your bot will need to put his logs somewhere. Do you have any
|
||||||
specific place you'd like them? If not, just press enter and we'll make
|
specific place you'd like them? If not, just press enter and we'll make
|
||||||
a directory named "logs" right here.""")
|
a directory named "logs" right here.""")
|
||||||
conf.supybot.directories.log.setValue(getDirectoryName('logs'))
|
try:
|
||||||
|
registry.cache['supybot.directories.log'] = getDirectoryName(
|
||||||
|
registry.cache['supybot.directories.log'])
|
||||||
|
except KeyError:
|
||||||
|
registry.cache['supybot.directories.log'] = getDirectoryName('logs')
|
||||||
|
|
||||||
|
|
||||||
# conf.supybot.directories.data
|
# conf.supybot.directories.data
|
||||||
output("""Your bot will need to put various data somewhere. Things like
|
output("""Your bot will need to put various data somewhere. Things like
|
||||||
databases, downloaded files, etc. Do you have any specific place you'd
|
databases, downloaded files, etc. Do you have any specific place you'd
|
||||||
like the bot to put these things? If not, just press enter and we'll make
|
like the bot to put these things? If not, just press enter and we'll make
|
||||||
a directory named "data" right here.""")
|
a directory named "data" right here.""")
|
||||||
conf.supybot.directories.data.setValue(getDirectoryName('data'))
|
try:
|
||||||
|
registry.cache['supybot.directories.data'] = getDirectoryName(
|
||||||
|
registry.cache['supybot.directories.data'])
|
||||||
|
except KeyError:
|
||||||
|
registry.cache['supybot.directories.data'] = getDirectoryName('data')
|
||||||
|
|
||||||
# conf.supybot.directories.conf
|
# conf.supybot.directories.conf
|
||||||
output("""Your bot must know where to find his configuration files. It'll
|
output("""Your bot must know where to find his configuration files. It'll
|
||||||
probably only make one or two, but it's gotta have some place to put them.
|
probably only make one or two, but it's gotta have some place to put them.
|
||||||
Where should that place be? If you don't care, just press enter and we'll
|
Where should that place be? If you don't care, just press enter and we'll
|
||||||
make a directory right here named "conf" where it'll store his stuff. """)
|
make a directory right here named "conf" where it'll store his stuff. """)
|
||||||
conf.supybot.directories.conf.setValue(getDirectoryName('conf'))
|
try:
|
||||||
|
registry.cache['supybot.directories.conf'] = getDirectoryName(
|
||||||
output("Good! We're done with the directory stuff.")
|
registry.cache['supybot.directories.conf'])
|
||||||
|
except KeyError:
|
||||||
|
registry.cache['supybot.directories.conf'] = getDirectoryName('conf')
|
||||||
|
|
||||||
# pluginDirs
|
# pluginDirs
|
||||||
output("""Your bot will also need to know where to find his plugins at.
|
output("""Your bot will also need to know where to find his plugins at.
|
||||||
Of course, he already knows where the plugins that he came with are, but
|
Of course, he already knows where the plugins that he came with are, but
|
||||||
your own personal plugins that you write for will probably be somewhere
|
your own personal plugins that you write for will probably be somewhere
|
||||||
else. Where do you plan to put those plugins? If you don't know, just
|
else.""")
|
||||||
press enter and we'll put a "plugins" directory right here that you can
|
try:
|
||||||
stick your own personal plugins in.""")
|
pluginDirs = registry.cache['supybot.directories.plugins'].split(',')
|
||||||
pluginDirs = conf.supybot.directories.plugins()
|
output("""Currently, the bot knows about the following directories:""")
|
||||||
pluginDir = getDirectoryName('plugins')
|
for pluginDir in pluginDirs:
|
||||||
if pluginDir not in pluginDirs:
|
output(pluginDir)
|
||||||
pluginDirs.append(pluginDir)
|
except KeyError:
|
||||||
output("""Of course, you can have more than one plugin directory.""")
|
pluginDirs = []
|
||||||
|
output("""Where do you plan to put those plugins? If you don't know,
|
||||||
|
just press enter and we'll put a "plugins" directory right here that
|
||||||
|
you can stick your own personal plugins in.""")
|
||||||
|
pluginDir = getDirectoryName('plugins')
|
||||||
|
if pluginDir not in pluginDirs:
|
||||||
|
pluginDirs.append(pluginDir)
|
||||||
|
output("""Of course, you can have more than one plugin directory.""")
|
||||||
while yn('Would you like to add another plugin directory?',
|
while yn('Would you like to add another plugin directory?',
|
||||||
default=False):
|
default=False):
|
||||||
pluginDir = getDirectoryName('plugins')
|
pluginDir = getDirectoryName('plugins')
|
||||||
if pluginDir not in pluginDirs:
|
if pluginDir not in pluginDirs:
|
||||||
pluginDirs.append(pluginDir)
|
pluginDirs.append(pluginDir)
|
||||||
conf.supybot.directories.plugins.setValue(pluginDirs)
|
registry.cache['supybot.directories.plugins'] = ','.join(pluginDirs)
|
||||||
|
|
||||||
|
output("Good! We're done with the directory stuff.")
|
||||||
|
|
||||||
|
# Store the minimum log priority if set, because we set it to a temporary
|
||||||
|
# value during the wizard
|
||||||
|
try:
|
||||||
|
priority = registry.cache['supybot.log.minimumPriority']
|
||||||
|
except KeyError:
|
||||||
|
priority = 'INFO'
|
||||||
|
registry.cache['supybot.log.minimumPriority'] = 'CRITICAL'
|
||||||
|
|
||||||
|
# Now that we're all set, import conf and log
|
||||||
|
import conf
|
||||||
|
import log
|
||||||
|
|
||||||
###
|
###
|
||||||
# Bot stuff
|
# Bot stuff
|
||||||
@ -230,7 +272,7 @@ def main():
|
|||||||
else:
|
else:
|
||||||
port = 6667
|
port = 6667
|
||||||
server = ':'.join(map(str, [serverString, port]))
|
server = ':'.join(map(str, [serverString, port]))
|
||||||
conf.supybot.server.setValue(server)
|
conf.supybot.server.set(server)
|
||||||
|
|
||||||
# conf.supybot.nick
|
# conf.supybot.nick
|
||||||
nick = ''
|
nick = ''
|
||||||
@ -239,7 +281,7 @@ def main():
|
|||||||
if not ircutils.isNick(nick):
|
if not ircutils.isNick(nick):
|
||||||
output("""That's not a valid nick. Go ahead and pick another.""")
|
output("""That's not a valid nick. Go ahead and pick another.""")
|
||||||
nick = ''
|
nick = ''
|
||||||
conf.supybot.nick.setValue(nick)
|
conf.supybot.nick.set(nick)
|
||||||
|
|
||||||
# conf.supybot.user
|
# conf.supybot.user
|
||||||
user = ''
|
user = ''
|
||||||
@ -251,7 +293,7 @@ def main():
|
|||||||
user = anything('What would you like your bot\'s full name to be?')
|
user = anything('What would you like your bot\'s full name to be?')
|
||||||
if not user:
|
if not user:
|
||||||
user = nick
|
user = nick
|
||||||
conf.supybot.user.setValue(user)
|
conf.supybot.user.set(user)
|
||||||
|
|
||||||
# conf.supybot.ident (if advanced)
|
# conf.supybot.ident (if advanced)
|
||||||
if advanced:
|
if advanced:
|
||||||
@ -266,7 +308,7 @@ def main():
|
|||||||
ident = nick
|
ident = nick
|
||||||
else:
|
else:
|
||||||
ident = nick
|
ident = nick
|
||||||
conf.supybot.ident.setValue(ident)
|
conf.supybot.ident.set(ident)
|
||||||
|
|
||||||
# conf.supybot.password
|
# conf.supybot.password
|
||||||
output("""Some servers require a password to connect to them. Most
|
output("""Some servers require a password to connect to them. Most
|
||||||
@ -274,7 +316,7 @@ def main():
|
|||||||
reason it just won't work, it might be that you need to set a
|
reason it just won't work, it might be that you need to set a
|
||||||
password.""")
|
password.""")
|
||||||
if yn('Do you want to set such a password?', default=False):
|
if yn('Do you want to set such a password?', default=False):
|
||||||
conf.supybot.password.setValue(getpass())
|
conf.supybot.password.set(getpass())
|
||||||
|
|
||||||
# conf.supybot.channels
|
# conf.supybot.channels
|
||||||
output("""Of course, having an IRC bot isn't the most useful thing in the
|
output("""Of course, having an IRC bot isn't the most useful thing in the
|
||||||
@ -282,22 +324,31 @@ def main():
|
|||||||
if yn('Do you want your bot to join some channels when he connects?',
|
if yn('Do you want your bot to join some channels when he connects?',
|
||||||
default=True):
|
default=True):
|
||||||
channels = something('What channels? Separate channels with '
|
channels = something('What channels? Separate channels with '
|
||||||
'spaces.').split()
|
'commas.')
|
||||||
while not all(ircutils.isChannel, channels):
|
while not all(ircutils.isChannel, channels.split(',')):
|
||||||
# FIXME: say which ones weren't channels.
|
# FIXME: say which ones weren't channels.
|
||||||
output("""Not all of those are valid IRC channels. Be sure to
|
output("""Not all of those are valid IRC channels. Be sure to
|
||||||
prefix the channel with # (or +, or !, or &, but no one uses those
|
prefix the channel with # (or +, or !, or &, but no one uses those
|
||||||
channels, really).""")
|
channels, really).""")
|
||||||
channels = something('What channels?').split()
|
channels = something('What channels?')
|
||||||
conf.supybot.channels.setValue(channels)
|
conf.supybot.channels.set(channels)
|
||||||
|
|
||||||
###
|
###
|
||||||
# Plugins
|
# Plugins
|
||||||
###
|
###
|
||||||
plugins = getPlugins()
|
def configurePlugin(module, advanced):
|
||||||
|
if hasattr(module, 'configure'):
|
||||||
|
output("""Beginning configuration for %s..."""%module.Class.__name__)
|
||||||
|
module.configure(advanced)
|
||||||
|
print # Blank line :)
|
||||||
|
output("""Done!""")
|
||||||
|
else:
|
||||||
|
conf.registerPlugin(module, currentValue=True)
|
||||||
|
|
||||||
|
plugins = getPlugins(pluginDirs)
|
||||||
for s in ('Admin', 'User', 'Channel', 'Misc', 'Config'):
|
for s in ('Admin', 'User', 'Channel', 'Misc', 'Config'):
|
||||||
configurePlugin(s, advanced)
|
configurePlugin(s, advanced)
|
||||||
clearLoadedPlugins(plugins)
|
clearLoadedPlugins(plugins, conf.supybot.plugins)
|
||||||
|
|
||||||
# bulk
|
# bulk
|
||||||
addedBulk = False
|
addedBulk = False
|
||||||
@ -312,7 +363,7 @@ def main():
|
|||||||
module = loadPlugin(name)
|
module = loadPlugin(name)
|
||||||
if module is not None:
|
if module is not None:
|
||||||
configurePlugin(module, advanced)
|
configurePlugin(module, advanced)
|
||||||
clearLoadedPlugins(plugins)
|
clearLoadedPlugins(plugins, conf.supybot.plugins)
|
||||||
|
|
||||||
# individual
|
# individual
|
||||||
if yn('Would you like to look at plugins individually?'):
|
if yn('Would you like to look at plugins individually?'):
|
||||||
@ -331,7 +382,7 @@ def main():
|
|||||||
describePlugin(module, showUsage)
|
describePlugin(module, showUsage)
|
||||||
if yn('Would you like to load this plugin?', default=True):
|
if yn('Would you like to load this plugin?', default=True):
|
||||||
configurePlugin(module, advanced)
|
configurePlugin(module, advanced)
|
||||||
clearLoadedPlugins(plugins)
|
clearLoadedPlugins(plugins, conf.supybot.plugins)
|
||||||
if not yn('Would you like add another plugin?'):
|
if not yn('Would you like add another plugin?'):
|
||||||
break
|
break
|
||||||
name = expect('What plugin would you like to look at?', plugins)
|
name = expect('What plugin would you like to look at?', plugins)
|
||||||
@ -378,7 +429,7 @@ def main():
|
|||||||
the same effect. Of course, you don't *have* to have a prefix char, but
|
the same effect. Of course, you don't *have* to have a prefix char, but
|
||||||
if the bot ends up participating significantly in your channel, it'll ease
|
if the bot ends up participating significantly in your channel, it'll ease
|
||||||
things.""")
|
things.""")
|
||||||
if yn('Would you like to set the prefix char(s) for your bot?',
|
if yn('Would you like to set the prefix char(s) for your bot? ',
|
||||||
default=True):
|
default=True):
|
||||||
output("""Enter any characters you want here, but be careful: they
|
output("""Enter any characters you want here, but be careful: they
|
||||||
should be rare enough that people don't accidentally address the bot
|
should be rare enough that people don't accidentally address the bot
|
||||||
@ -389,15 +440,15 @@ def main():
|
|||||||
import callbacks
|
import callbacks
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
conf.supybot.prefixChars.setValue(
|
conf.supybot.prefixChars.set(
|
||||||
something('What would you like your '
|
something('What would you like your '
|
||||||
'bot\'s prefix character(s) to be?',
|
'bot\'s prefix character(s) to be?',
|
||||||
default='@'))
|
default='@'))
|
||||||
break
|
break
|
||||||
except registry.InvalidRegistryValue, reason:
|
except registry.InvalidRegistryValue, reason:
|
||||||
output(reason)
|
output(str(reason))
|
||||||
else:
|
else:
|
||||||
conf.supybot.prefixChars.setValue('')
|
conf.supybot.prefixChars.set('')
|
||||||
|
|
||||||
# enablePipeSyntax
|
# enablePipeSyntax
|
||||||
output("""Supybot allows nested commands. You've probably
|
output("""Supybot allows nested commands. You've probably
|
||||||
@ -412,7 +463,7 @@ def main():
|
|||||||
nicks, and we've found it to be somewhat frustrating to have to quote such
|
nicks, and we've found it to be somewhat frustrating to have to quote such
|
||||||
nicks in commands.""")
|
nicks in commands.""")
|
||||||
conf.supybot.pipeSyntax.setValue(yn('Would you like to enable the pipe '
|
conf.supybot.pipeSyntax.setValue(yn('Would you like to enable the pipe '
|
||||||
'syntax for nesting?', default=False))
|
'syntax for nesting? ', default=False))
|
||||||
|
|
||||||
###
|
###
|
||||||
# logging variables.
|
# logging variables.
|
||||||
@ -440,15 +491,15 @@ def main():
|
|||||||
default, your bot will log all of these priorities. You can, however,
|
default, your bot will log all of these priorities. You can, however,
|
||||||
specify that he only log messages above a certain priority level. Of
|
specify that he only log messages above a certain priority level. Of
|
||||||
course, all error messages will still be logged.""")
|
course, all error messages will still be logged.""")
|
||||||
priority = something('What would you like the minimum priority to be? '
|
newPriority = something('What would you like the minimum priority to be? '
|
||||||
'Just press enter to accept the default.',
|
'Just press enter to accept the default.',
|
||||||
default='INFO').lower()
|
default=priority).lower()
|
||||||
while priority not in ['debug', 'info', 'warning', 'error', 'critical']:
|
while newPriority not in ['debug', 'info', 'warning', 'error', 'critical']:
|
||||||
output("""That's not a valid priority. Valid priorities include
|
output("""That's not a valid priority. Valid priorities include
|
||||||
'DEBUG', 'INFO', 'WARNING', 'ERROR', and 'CRITICAL'""")
|
'DEBUG', 'INFO', 'WARNING', 'ERROR', and 'CRITICAL'""")
|
||||||
priority = something('What would you like the minimum priority to be?'
|
newPriority = something('What would you like the minimum priority to '
|
||||||
' Just press enter to accept the default.',
|
'be? Just press enter to accept the default.',
|
||||||
default='INFO').lower()
|
default=priority).lower()
|
||||||
|
|
||||||
if advanced:
|
if advanced:
|
||||||
output("""Here's some stuff you only get to choose if you're an
|
output("""Here's some stuff you only get to choose if you're an
|
||||||
@ -507,24 +558,6 @@ def main():
|
|||||||
yn('Would you like the bot to notice replies to users in private '
|
yn('Would you like the bot to notice replies to users in private '
|
||||||
'when a command is executed in a channel?', default=False))
|
'when a command is executed in a channel?', default=False))
|
||||||
|
|
||||||
# allowEval
|
|
||||||
output("""Here in supybot-developer world, we really like Python. In
|
|
||||||
fact, we like it so much we just couldn't do without the ability to
|
|
||||||
have our bots evaluate arbitrary Python code. Of course, we are aware
|
|
||||||
of the possible security hazards in allowing such a thing, but we're
|
|
||||||
pretty sure our capability system is sound enough to do such a thing
|
|
||||||
with some kind of security. Nevertheless, by default we have these
|
|
||||||
commands (eval and exec, both in the Owner plugin which is
|
|
||||||
loaded by default) disabled by a config variable allowEval. If you'd
|
|
||||||
like to use either eval or exec, you'll have to make this variable
|
|
||||||
True. Unless you intend to hack on supybot a lot, we suggest against
|
|
||||||
it -- it's just not worth the risk, and if you find something that you
|
|
||||||
can't do via a command because the command you want doesn't exist, you
|
|
||||||
should tell us and we'll implement the command (rather than make you
|
|
||||||
allow eval). But either way, here's your chance to enable it.""")
|
|
||||||
allowEval = yn('Would you like to enable allowEval, possibly opening '
|
|
||||||
'you to a significant security risk?', default=False)
|
|
||||||
|
|
||||||
# conf.supybot.throttleTime
|
# conf.supybot.throttleTime
|
||||||
output("""In order to prevent flooding itself off the network,
|
output("""In order to prevent flooding itself off the network,
|
||||||
your bot by default will not send more than one message per second to
|
your bot by default will not send more than one message per second to
|
||||||
@ -533,7 +566,7 @@ def main():
|
|||||||
'messages your bot sends to the network?', default=False):
|
'messages your bot sends to the network?', default=False):
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
conf.supybot.throttleTime.setValue(something(
|
conf.supybot.throttleTime.set(something(
|
||||||
'How long do you want your bot to wait between '
|
'How long do you want your bot to wait between '
|
||||||
'sending messages to the server? Floating '
|
'sending messages to the server? Floating '
|
||||||
'point values are accepted.'))
|
'point values are accepted.'))
|
||||||
@ -555,38 +588,26 @@ def main():
|
|||||||
boring, but they'll really help you customize your bot :)""")
|
boring, but they'll really help you customize your bot :)""")
|
||||||
|
|
||||||
###
|
###
|
||||||
# Writing the bot script.
|
# Write the registry
|
||||||
###
|
###
|
||||||
filename = reduce(os.path.join, [conf.installDir, 'src', 'template.py'])
|
# Replace the temporary value in supybot.log.minimumPriority
|
||||||
fd = file(filename)
|
conf.supybot.log.minimumPriority.set(newPriority)
|
||||||
template = fd.read()
|
|
||||||
fd.close()
|
|
||||||
|
|
||||||
format = pprint.pformat
|
# Save the registry
|
||||||
template = template.replace('"%%allowEval%%"',
|
if not filename:
|
||||||
format(allowEval))
|
filename = '%s.conf' % nick
|
||||||
template = template.replace('/usr/bin/env python',
|
registry.close(conf.supybot, filename)
|
||||||
os.path.normpath(sys.executable))
|
|
||||||
|
|
||||||
filename = '%s-botscript.py' % nick
|
# Prevent some INFO messages from being printed when exiting
|
||||||
fd = file(filename, 'w')
|
# conf.supybot.log.minimumPriority.set('CRITICAL')
|
||||||
fd.write(template)
|
# FIXME: Apparently, this doesn't work.
|
||||||
fd.close()
|
|
||||||
|
|
||||||
if os.name == 'posix':
|
|
||||||
os.chmod(filename, 0755)
|
|
||||||
|
|
||||||
# Overwrite temporary minimum log priority
|
|
||||||
conf.supybot.log.minimumPriority.setValue(priority)
|
|
||||||
|
|
||||||
# Save the registry registry
|
|
||||||
registry.close(conf.supybot, 'supybot.conf')
|
|
||||||
|
|
||||||
# Done!
|
# Done!
|
||||||
output("""All done! Your new bot script is %s. If you're running a *nix,
|
output("""All done! Your new bot configuration is %s. If you're running
|
||||||
you can start your bot script with the command line "./%s". If you're not
|
a *nix based OS, you can probably start your bot with the command line
|
||||||
running a *nix or similar machine, you'll just have to start it like you
|
"supybot ./%s". If you're not running a *nix or similar machine, you'll
|
||||||
start all your other Python scripts.""" % (filename, filename))
|
just have to start it like you start all your other Python scripts.""" % \
|
||||||
|
(filename, filename))
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
try:
|
try:
|
||||||
|
@ -260,7 +260,7 @@ class User(callbacks.Privmsg):
|
|||||||
else:
|
else:
|
||||||
irc.error(conf.supybot.replies.incorrectAuthentication())
|
irc.error(conf.supybot.replies.incorrectAuthentication())
|
||||||
|
|
||||||
def name(self, irc, msg, args):
|
def username(self, irc, msg, args):
|
||||||
"""<hostmask|nick>
|
"""<hostmask|nick>
|
||||||
|
|
||||||
Returns the username of the user specified by <hostmask> or <nick> if
|
Returns the username of the user specified by <hostmask> or <nick> if
|
||||||
|
@ -38,6 +38,7 @@ import textwrap
|
|||||||
from getpass import getpass as getPass
|
from getpass import getpass as getPass
|
||||||
|
|
||||||
import ansi
|
import ansi
|
||||||
|
import conf
|
||||||
import utils
|
import utils
|
||||||
|
|
||||||
useColor = False
|
useColor = False
|
||||||
@ -136,5 +137,24 @@ def getpass(prompt='Enter password: '):
|
|||||||
break
|
break
|
||||||
return password
|
return password
|
||||||
|
|
||||||
|
def getRegistryValue(setting, prompt='', showHelp=True, showType=True):
|
||||||
|
from registry import InvalidRegistryValue
|
||||||
|
if not prompt:
|
||||||
|
prompt = 'What would you like to set this option to?'
|
||||||
|
if showHelp:
|
||||||
|
help = ''
|
||||||
|
if showType:
|
||||||
|
help = '%s: ' % type(setting).__name__
|
||||||
|
help = '%s%s' % (help, setting.help)
|
||||||
|
output(textwrap.fill(help), unformatted=False)
|
||||||
|
ret = None
|
||||||
|
while not ret:
|
||||||
|
try:
|
||||||
|
setting.set(expect(prompt, [], default=str(setting)))
|
||||||
|
ret = setting()
|
||||||
|
except InvalidRegistryValue, reason:
|
||||||
|
output(str(reason))
|
||||||
|
return ret
|
||||||
|
|
||||||
|
|
||||||
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
# vim:set shiftwidth=4 tabstop=8 expandtab textwidth=78:
|
||||||
|
Loading…
Reference in New Issue
Block a user