update echo.py to use command spec language

This commit is contained in:
jesopo 2020-01-25 11:33:38 +00:00
parent 264e544ce5
commit 85c13cbbd7

View file

@ -4,25 +4,23 @@ from src import ModuleManager, utils
class Module(ModuleManager.BaseModule):
@utils.hook("received.command.echo")
@utils.kwarg("min_args", 1)
@utils.kwarg("remove_empty", False)
@utils.kwarg("help", "Echo a string back")
@utils.kwarg("spec", "!...")
def echo(self, event):
event["stdout"].write(event["args"])
event["stdout"].write(event["spec"][0])
@utils.hook("received.command.action")
@utils.kwarg("min_args", 1)
@utils.kwarg("expect_output", False)
@utils.kwarg("remove_empty", False)
@utils.kwarg("help", "Make the bot send a /me")
@utils.kwarg("spec", "!...")
def action(self, event):
event["target"].send_message("\x01ACTION %s\x01" % event["args"])
event["target"].send_message("\x01ACTION %s\x01" % event["spec"][0])
@utils.hook("received.command.msg")
@utils.kwarg("min_args", 2)
@utils.kwarg("permission", "say")
@utils.kwarg("remove_empty", False)
@utils.kwarg("help", "Send a message to a target")
@utils.kwarg("spec", "!word !...")
def msg(self, event):
event["server"].send_message(event["args_split"][0],
" ".join(event["args_split"][1:]))
event["server"].send_message(event["spec"][0], event["spec"][1])