Browse Source

Fix argument parser passing lists through

pull/3/head
Andrei 9 years ago
parent
commit
4b4c944f48
  1. 1
      README.md
  2. 6
      disco/bot/parser.py
  3. 4
      disco/bot/plugin.py
  4. 2
      disco/gateway/client.py
  5. 14
      examples/basic_plugin.py

1
README.md

@ -3,6 +3,7 @@ A Discord Python bot built to be easy to use and scale.
## TODOS ## TODOS
- permissions support
- flesh out API client - flesh out API client
- storage/database/config - storage/database/config
- flesh out type methods - flesh out type methods

6
disco/bot/parser.py

@ -88,6 +88,12 @@ class ArgumentSet(object):
r, ', '.join(arg.types) 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) parsed.append(raw)
return parsed return parsed

4
disco/bot/plugin.py

@ -1,6 +1,7 @@
import inspect import inspect
import functools import functools
from disco.util.logging import LoggingClass
from disco.bot.command import Command, CommandError 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): def __init__(self, bot, config):
super(Plugin, self).__init__()
self.bot = bot self.bot = bot
self.config = config self.config = config

2
disco/gateway/client.py

@ -59,7 +59,7 @@ class GatewayClient(LoggingClass):
def handle_dispatch(self, packet): def handle_dispatch(self, packet):
obj = GatewayEvent.from_dispatch(self.client, 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) self.client.events.emit(obj.__class__.__name__, obj)
def handle_heartbeat(self, packet): def handle_heartbeat(self, packet):

14
examples/basic_plugin.py

@ -6,18 +6,18 @@ from disco.bot.plugin import Plugin
class BasicPlugin(Plugin): class BasicPlugin(Plugin):
@Plugin.listen('MessageCreate') @Plugin.listen('MessageCreate')
def on_message_create(self, event): 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') @Plugin.command('echo', '<content:str...>')
def on_test_command(self, event): def on_test_command(self, event, content):
event.msg.reply('HELLO WORLD') event.msg.reply(content)
@Plugin.command('spam', '<count:int> <content:str...>') @Plugin.command('spam', '<count:int> <content:str...>')
def on_spam_command(self, event, count, content): def on_spam_command(self, event, count, content):
count = int(event.args[0])
for i in range(count): for i in range(count):
print event.msg.reply(' '.join(event.args[1:])).id event.msg.reply(content)
if __name__ == '__main__': if __name__ == '__main__':
bot = Bot(disco_main()) bot = Bot(disco_main())

Loading…
Cancel
Save