aboutsummaryrefslogtreecommitdiff
path: root/modules/commands.py
blob: de941f77d6c94313b2461867a1bf92eae7887e56 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
import Utils

STR_MORE = " (more...)"
STR_CONTINUED = "(...continued) "

OUT_CUTOFF = 400

class Out(object):
    def __init__(self, module_name, target):
        self.module_name = module_name
        self.target = target
        self._text = ""
        self.written = False
    def write(self, text):
        self._text += text
        self.written = True
        return self
    def send(self):
        if self.has_text():
            text = "[%s] %s" % (self.prefix(), self._text)
            text_encoded = text.encode("utf8")
            if len(text_encoded) > OUT_CUTOFF:
                text = "%s%s" % (text_encoded[:OUT_CUTOFF].decode("utf8"
                    ).rstrip(), STR_MORE)
                self._text = "%s%s" % (STR_CONTINUED, text_encoded[OUT_CUTOFF:
                    ].decode("utf8").lstrip())
            self.target.send_message(text)
    def set_prefix(self, prefix):
        self.module_name = prefix
    def has_text(self):
        return bool(self._text)

class StdOut(Out):
    def prefix(self):
        return "%s%s%s" % (Utils.color(Utils.COLOR_GREEN),
            self.module_name, Utils.FONT_RESET)
class StdErr(Out):
    def prefix(self):
        return "%s!%s%s" % (Utils.color(Utils.COLOR_RED),
            self.module_name, Utils.FONT_RESET)

class Module(object):
    def __init__(self, bot):
        self.bot = bot
        bot.events.on("received").on("message").on("channel").hook(
            self.channel_message)
        bot.events.on("received").on("message").on("private").hook(
            self.private_message)
        bot.events.on("received").on("command").on("help").hook(self.help,
            help="Show help on commands")
        bot.events.on("received").on("command").on("more").hook(self.more,
            help="Get more output from the last command")
        bot.events.on("new").on("user", "channel").hook(self.new)
        bot.events.on("send").on("stdout").hook(self.send_stdout)
        bot.events.on("send").on("stderr").hook(self.send_stderr)

    def new(self, event):
        if "user" in event:
            target = event["user"]
        else:
            target = event["channel"]
        target.last_stdout = None
        target.last_stderr = None

    def has_command(self, command):
        return command.lower() in self.bot.events.on("received").on(
            "command").get_children()
    def get_hook(self, command):
        return self.bot.events.on("received").on("command").on(command
            ).get_hooks()[0]

    def is_highlight(self, server, s):
        return s.lower() == server.nickname_lower or (s.lower().startswith(
            server.nickname_lower) and len(s) == len(server.nickname_lower
            )+1 and s[-1] in [":", ","])

    def message(self, event, command, args_index=1):
        if self.has_command(command):
            hook = self.get_hook(command)
            is_channel = False

            if "channel" in event:
                target = event["channel"]
                is_channel = True
            else:
                target = event["user"]
            if not is_channel and hook.kwargs.get("channel_only"):
                return

            log = target.log
            log.skip_next()

            module_name = hook.function.__self__._name
            stdout, stderr = StdOut(module_name, target), StdErr(module_name,
                target)

            returns = self.bot.events.on("preprocess").on("command"
                ).call(hook=hook, user=event["user"], server=event["server"])
            for returned in returns:
                if returned:
                    stderr.write(returned).send()
                    return
            args_split = list(filter(None, event["message_split"][args_index:]))
            min_args = hook.kwargs.get("min_args")
            if min_args and len(args_split) < min_args:
                stderr.write("Not enough arguments (minimum: %d)" % min_args
                    ).send()
            else:
                args = " ".join(args_split)
                server = event["server"]
                user = event["user"]
                self.bot.events.on("received").on("command").on(command).call(
                    1, user=user, server=server, target=target, log=log,
                    args=args, args_split=args_split, stdout=stdout, stderr=stderr,
                    command=command.lower())
                stdout.send()
                target.last_stdout = stdout
                stderr.send()
                target.last_stderr = stderr

    def channel_message(self, event):
        command_prefix = event["channel"].get_setting("command_prefix",
            event["server"].get_setting("command_prefix", "!"))
        if event["message_split"][0].startswith(command_prefix):
            command = event["message_split"][0].replace(
                command_prefix, "", 1).lower()
            self.message(event, command)
        elif len(event["message_split"]) > 1 and self.is_highlight(
                event["server"], event["message_split"][0]):
            command = event["message_split"][1].lower()
            self.message(event, command, 2)

    def private_message(self, event):
        if event["message_split"]:
            command = event["message_split"][0].lower()
            self.message(event, command)

    def help(self, event):
        if event["args"]:
            command = event["args_split"][0].lower()
            if command in self.bot.events.on("received").on(
                    "command").get_children():
                hooks = self.bot.events.on("received").on("command").on(command).get_hooks()
                if hooks and "help" in hooks[0].kwargs:
                    event["stdout"].write("%s: %s" % (command, hooks[0].kwargs["help"]))
        else:
            help_available = []
            for child in self.bot.events.on("received").on("command").get_children():
                hooks = self.bot.events.on("received").on("command").on(child).get_hooks()
                if hooks and "help" in hooks[0].kwargs:
                    help_available.append(child)
            help_available = sorted(help_available)
            event["stdout"].write("Commands: %s" % ", ".join(help_available))

    def more(self, event):
        if event["target"].last_stdout and event["target"].last_stdout.has_text():
            event["target"].last_stdout.send()

    def send_stdout(self, event):
        if event["target"].name[0] in event["server"].channel_types:
            stdout = ChannelStdOut(event["module_name"], event["target"])
        stdout.write(event["message"]).send()
        if stdout.has_text():
            event["target"].last_stdout = stdout
    def send_stderr(self, event):
        if event["target"].name[0] in event["server"].channel_types:
            stderr = ChannelStdErr(event["module_name"], event["target"])
        stderr.write(event["message"]).send()
        if stderr.has_text():
            event["target"].last_stderr = stderr