diff --git a/README.md b/README.md index 7bcaf17..e35d9e0 100644 --- a/README.md +++ b/README.md @@ -3,6 +3,7 @@ A Discord Python bot built to be easy to use and scale. ## TODOS +- permissions support - flesh out API client - storage/database/config - flesh out type methods diff --git a/disco/bot/parser.py b/disco/bot/parser.py index 92671db..fb203cf 100644 --- a/disco/bot/parser.py +++ b/disco/bot/parser.py @@ -88,6 +88,12 @@ class ArgumentSet(object): r, ', '.join(arg.types) )) + if arg.true_count == 1: + raw = raw[0] + + if not arg.types or arg.types == ['str'] and isinstance(raw, list): + raw = ' '.join(raw) + parsed.append(raw) return parsed diff --git a/disco/bot/plugin.py b/disco/bot/plugin.py index 6c6811e..a711df1 100644 --- a/disco/bot/plugin.py +++ b/disco/bot/plugin.py @@ -1,6 +1,7 @@ import inspect import functools +from disco.util.logging import LoggingClass from disco.bot.command import Command, CommandError @@ -56,8 +57,9 @@ class PluginDeco(object): }) -class Plugin(PluginDeco): +class Plugin(LoggingClass, PluginDeco): def __init__(self, bot, config): + super(Plugin, self).__init__() self.bot = bot self.config = config diff --git a/disco/gateway/client.py b/disco/gateway/client.py index 5ce6e1c..7ed5f6c 100644 --- a/disco/gateway/client.py +++ b/disco/gateway/client.py @@ -59,7 +59,7 @@ class GatewayClient(LoggingClass): def handle_dispatch(self, packet): obj = GatewayEvent.from_dispatch(self.client, packet) - self.log.info('Dispatching %s', obj.__class__.__name__) + self.log.debug('Dispatching %s', obj.__class__.__name__) self.client.events.emit(obj.__class__.__name__, obj) def handle_heartbeat(self, packet): diff --git a/examples/basic_plugin.py b/examples/basic_plugin.py index df5397c..99f301a 100644 --- a/examples/basic_plugin.py +++ b/examples/basic_plugin.py @@ -6,18 +6,18 @@ from disco.bot.plugin import Plugin class BasicPlugin(Plugin): @Plugin.listen('MessageCreate') def on_message_create(self, event): - print 'Message Created: {}'.format(event.message.content) + self.log.info('Message created: <{}>: {}'.format( + event.message.author.username, + event.message.content)) - @Plugin.command('test') - def on_test_command(self, event): - event.msg.reply('HELLO WORLD') + @Plugin.command('echo', '') + def on_test_command(self, event, content): + event.msg.reply(content) @Plugin.command('spam', ' ') def on_spam_command(self, event, count, content): - count = int(event.args[0]) - for i in range(count): - print event.msg.reply(' '.join(event.args[1:])).id + event.msg.reply(content) if __name__ == '__main__': bot = Bot(disco_main())