Browse Source

Better command function introspection, docstrings

pull/11/head
Andrei 9 years ago
parent
commit
58ea923562
  1. 9
      disco/bot/command.py
  2. 3
      disco/bot/plugin.py

9
disco/bot/command.py

@ -108,6 +108,7 @@ class Command(object):
self.func = func
self.triggers = [trigger]
self.dispatch_func = None
self.args = None
self.level = None
self.group = None
@ -117,7 +118,10 @@ class Command(object):
self.update(*args, **kwargs)
def update(self, args=None, level=None, aliases=None, group=None, is_regex=None, oob=False, context=None):
def get_docstring(self):
return (self.func.__doc__ or '').format(**self.context)
def update(self, args=None, level=None, aliases=None, group=None, is_regex=None, oob=False, context=None, dispatch_func=None):
self.triggers += aliases or []
def resolve_role(ctx, rid):
@ -137,6 +141,7 @@ class Command(object):
self.is_regex = is_regex
self.oob = oob
self.context = context or {}
self.dispatch_func = dispatch_func
@staticmethod
def mention_type(getters, force=False):
@ -203,4 +208,4 @@ class Command(object):
except ArgumentError as e:
raise CommandError(e.message)
return self.func(event, *args, **self.context)
return (self.dispatch_func or self.func)(event, *args, **self.context)

3
disco/bot/plugin.py

@ -300,7 +300,8 @@ class Plugin(LoggingClass, PluginDeco):
self.commands[name].update(*args, **kwargs)
else:
wrapped = functools.partial(self._dispatch, 'command', func)
self.commands[name] = Command(self, wrapped, *args, **kwargs)
kwargs.setdefault('dispatch_func', wrapped)
self.commands[name] = Command(self, func, *args, **kwargs)
def register_schedule(self, func, interval, repeat=True, init=True):
"""

Loading…
Cancel
Save