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
|
#!/usr/bin/python
import os
import re
import time
class SED(object):
def __init__(self, expiry=1800):
self.__name__ = "SED Bot"
self.__version__ = "0.0.2"
self.expiry = expiry
self.history = []
self.pattern = r"^!?s([,/#])((?:.|\\\1)*)\1((?:.|\\\1)*)\1([ig]*)$"
def onChanMsg(self, IRC, user, channel, targetprefix, msg):
matches = re.findall(self.pattern, msg)
if matches:
separator, find, replace, flags = matches[0]
find = re.sub("\\\\([,/#\\\\])", "\\1", find)
replace = re.sub("\\\\(,/#\\\\)", "\\1", replace)
match = False
for t, IRC2, user2, channel2, msg2, isaction in self.history.__reversed__():
if channel != channel2:
continue
try:
if re.findall(find, msg2):
sub = re.sub(
find, replace, msg2, flags=re.I if "i" in flags else 0)
match = True
else:
continue
except:
channel.msg("%s: Invalid syntax" % user.nick, origin=self)
raise
if isaction:
channel.msg("What %s really meant was: *%s %s" %
(user2.nick, user2.nick, sub), origin=self)
else:
channel.msg("What %s really meant to say was: %s" %
(user2.nick, sub), origin=self)
break
if not match:
channel.msg(
"%s: I tried. I really tried! But I could not find the pattern: %s" %
(user.nick, find), origin=self)
else:
self.history.append((time.time(), IRC, user, channel, msg, False))
while len(self.history) and self.history[0][0] < time.time() - 1800:
del self.history[0]
def onSendChanMsg(self, IRC, origin, channel, targetprefix, msg):
if origin != self: # Ignore messages sent from THIS addon.
self.onChanMsg(IRC, IRC.identity, channel, targetprefix, msg)
def onChanAction(self, IRC, user, channel, targetprefix, action):
self.history.append((time.time(), IRC, user, channel, action, True))
while len(self.history) and self.history[0][0] < time.time() - 1800:
del self.history[0]
def onSendChanAction(self, IRC, origin, channel, targetprefix, action):
if origin != self: # Ignore messages sent from THIS addon.
self.onChanAction(IRC, IRC.identity, channel, targetprefix, action)
|