-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodule.py
More file actions
304 lines (244 loc) · 10.7 KB
/
Copy pathmodule.py
File metadata and controls
304 lines (244 loc) · 10.7 KB
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
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
# -*- coding: utf-8 -*-
"""This module is meant to be imported from willie modules.
It defines the following decorators for defining willie callables:
willie.module.rule
willie.module.thread
willie.module.name (deprecated)
willie.module.commands
willie.module.nickname_commands
willie.module.priority
willie.module.event
willie.module.rate
willie.module.example
willie/module.py - willie IRC Bot (http://willie.dftba.net/)
Copyright 2013, Ari Koivula, <ari@koivu.la>
Copyright © 2013, Elad Alfassa <elad@fedoraproject.org>
Licensed under the Eiffel Forum License 2.
"""
import willie.test_tools
NOLIMIT = 1
"""Return value for ``callable``\s, which supresses rate limiting for the call.
*Avalability: 4.0+; available as ``willie.NOLIMIT`` in 3.2*
Returning this value means the triggering user will not be
prevented from triggering the command again within the rate limit. This can
be used, for example, to allow a user to rety a failed command immediately.
"""
def interval(*args):
"""Decorator. Equivalent to func.interval.append(value)
A function that uses this decorator will be called every X seconds, where
X is the argument. This decorator can be used multiple times for multiple
intervals, or all intervals can be given at once as arguments. The first
time the function will be called is X seconds after the bot was started.
For the callable, the first argument will be the bot itself, but it will
not have the say, reply or action methods as would be the case when called
due to rule or command.
There is no guarantee that the bot is connected to a server or joined a
channel when the function is called, so care must be taken.
Example:
import willie.module
@willie.module.interval(5)
def spam_every_5s(bot):
if "#here" in bot.channels:
bot.msg("#here", "It has been five seconds!")
"""
def add_attribute(function):
if not hasattr(function, "interval"):
function.interval = []
for arg in args:
function.interval.append(arg)
return function
return add_attribute
def rule(value):
"""Decorator. Equivalent to func.rule.append(value).
This decorator can be used multiple times to add more rules.
Args:
value: A regular expression which will trigger the function.
If the willie instance is in a channel, or sent a PRIVMSG, where a string
matching this expression is said, the function will execute. Note that
captured groups here will be retrievable through the Trigger object later.
Inside the regular expression, some special directives can be used. $nick
will be replaced with the nick of the bot and , or :, and $nickname will be
replaced with the nick of the bot.
Prior to 3.1, rules could also be made one of three formats of tuple. The
values would be joined together to form a singular regular expression.
However, these kinds of rules add no functionality over simple regular
expressions, and are considered deprecated in 3.1.
"""
def add_attribute(function):
if not hasattr(function, "rule"):
function.rule = []
function.rule.append(value)
return function
if isinstance(value, tuple):
raise DeprecationWarning("Tuple-form .rule is deprecated in 3.1."
" Replace tuple-form .rule with a regexp.")
return add_attribute
def thread(value):
"""Decorator. Equivalent to func.thread = value.
Args:
value: Either True or False. If True the function is called in
a separate thread. If False from the main thread.
"""
def add_attribute(function):
function.thread = value
return function
return add_attribute
def name(value):
"""Decorator. Equivalent to func.name = value.
This attribute is considered deprecated in 3.1.
"""
raise DeprecationWarning("This attribute is considered deprecated in 3.1."
" Replace tuple-form .rule with a regexp.")
def commands(*command_list):
"""Decorator. Sets a command list for a callable.
This decorator can be used to add multiple commands to one callable in
a single line. The resulting match object will have the command as the
first group, rest of the line, excluding leading whitespace, as the second
group. Parameters 1 through 4, seperated by whitespace, will be groups 3-6.
Args:
command: A string, which can be a regular expression.
Returns:
A function with a new command appended to the commands
attribute. If there is no commands attribute, it is added.
Example:
@command("hello"):
If the command prefix is "\.", this would trigger on lines starting
with ".hello".
@commands('j', 'join')
If the command prefix is "\.", this would trigger on lines starting
with either ".j" or ".join".
"""
def add_attribute(function):
if not hasattr(function, "commands"):
function.commands = []
function.commands.extend(command_list)
return function
return add_attribute
def nickname_commands(*command_list):
"""Decorator. Triggers on lines starting with "$nickname: command".
This decorator can be used multiple times to add multiple rules. The
resulting match object will have the command as the first group, rest of
the line, excluding leading whitespace, as the second group. Parameters
1 through 4, seperated by whitespace, will be groups 3-6.
Args:
command: A string, which can be a regular expression.
Returns:
A function with a new regular expression appended to the rule
attribute. If there is no rule attribute, it is added.
Example:
@nickname_command("hello!"):
Would trigger on "$nickname: hello!", "$nickname, hello!",
"$nickname hello!", "$nickname hello! parameter1" and
"$nickname hello! p1 p2 p3 p4 p5 p6 p7 p8 p9".
@nickname_command(".*"):
Would trigger on anything starting with "$nickname[:,]? ", and
would have never have any additional parameters, as the command
would match the rest of the line.
"""
def add_attribute(function):
if not hasattr(function, "rule"):
function.rule = []
rule = r"""
^
$nickname[:,]? # Nickname.
\s+({command}) # Command as group 1.
(?:\s+ # Whitespace to end command.
( # Rest of the line as group 2.
(?:(\S+))? # Parameters 1-4 as groups 3-6.
(?:\s+(\S+))?
(?:\s+(\S+))?
(?:\s+(\S+))?
.* # Accept anything after the parameters. Leave it up to
# the module to parse the line.
))? # Group 1 must be None, if there are no parameters.
$ # EoL, so there are no partial matches.
""".format(command='|'.join(command_list))
function.rule.append(rule)
return function
return add_attribute
def priority(value):
"""Decorator. Equivalent to func.priority = value.
Args:
value: Priority can be one of "high", "medium", "low". Defaults to
medium.
Priority allows you to control the order of callable execution, if your
module needs it.
"""
def add_attribute(function):
function.priority = value
return function
return add_attribute
def event(value):
"""Decorator. Equivalent to func.event = value.
This is one of a number of events, such as 'JOIN', 'PART', 'QUIT', etc.
(More details can be found in RFC 1459.) When the willie bot is sent one of
these events, the function will execute. Note that functions with an event
must also be given a rule to match (though it may be '.*', which will
always match) or they will not be triggered.
"""
def add_attribute(function):
function.event = value
return function
return add_attribute
def rate(value):
"""Decorator. Equivalent to func.rate = value.
Availability: 2+
This limits the frequency with which a single user may use the function. If
a function is given a rate of 20, a single user may only use that function
once every 20 seconds. This limit applies to each user individually. Users
on the admin list in willie’s configuration are exempted from rate limits.
"""
def add_attribute(function):
function.rate = value
return function
return add_attribute
class example(object):
"""Decorator. Add an example attribute into a function and generate a test.
"""
def __init__(self, msg, result=None, privmsg=False, admin=False,
owner=False, repeat=1, re=None):
"""Accepts arguments for the decorator.
Args:
msg - The example message to give to the function as input.
result - Resulting output from calling the function with msg.
privmsg - If true, make the message appear to have sent in a
private message to the bot. If false, make it appear to have
come from a channel.
admin - Bool. Make the message appear to have come from an admin.
owner - Bool. Make the message appear to have come from an owner.
repeat - How many times to repeat the test. Usefull for tests that
return random stuff.
re - Bool. If true, result is interpreted as a regular expression.
"""
# Argument re is a result in regular expression form. Giving both it
# and non-regular expression form makes no sense and it is not possible
# to know which should be used.
assert not (result and re)
# Wrap result into a list for get_example_test
self.result = None
self.use_re = False
if result is not None:
self.result = [result]
elif re is not None:
self.result = [re]
self.use_re = True
self.msg = msg
self.privmsg = privmsg
self.admin = admin
self.owner = owner
self.repeat = repeat
def __call__(self, func):
if not hasattr(func, "example"):
func.example = []
if self.result:
test = willie.test_tools.get_example_test(
func, self.msg, self.result, self.privmsg, self.admin,
self.owner, self.repeat, self.use_re)
willie.test_tools.insert_into_module(
test, func.__module__, func.__name__, 'test_example')
record = {"example": self.msg,
"result": self.result,
"privmsg": self.privmsg,
"admin": self.admin, }
func.example.append(record)
return func