Browse Source

Add ability to pass conditional to Plugin.wait_for_event

pull/27/head
Andrei 8 years ago
parent
commit
5ca596b889
  1. 11
      disco/bot/plugin.py

11
disco/bot/plugin.py

@ -209,15 +209,22 @@ class Plugin(LoggingClass, PluginDeco):
def handle_exception(self, greenlet, event):
pass
def wait_for_event(self, event_name, **kwargs):
def wait_for_event(self, event_name, conditional=None, **kwargs):
result = AsyncResult()
listener = None
def _event_callback(event):
for k, v in kwargs.items():
if getattr(event, k) != v:
obj = event
for inst in k.split('__'):
obj = getattr(obj, inst)
if obj != v:
break
else:
if conditional and not conditional(event):
return
listener.remove()
return result.set(event)

Loading…
Cancel
Save