forked from rmcfadzean/ircbots
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathregexbot.py
174 lines (146 loc) · 4.99 KB
/
regexbot.py
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
import re, asyncore
from datetime import datetime, timedelta
from ConfigParser import ConfigParser
from sys import argv, exit
from ircasync import *
from subprocess import Popen, PIPE
config = ConfigParser()
try:
config.readfp(open(argv[1]))
except:
try:
config.readfp(open('regexbot.ini'))
except:
print "Syntax:"
print " %s [config]" % argv[0]
print ""
print "If no configuration file is specified or there was an error, it will default to `regexbot.ini'."
print "If there was a failure reading the configuration, it will display this message."
exit(1)
# read config
SERVER = config.get('regexbot', 'server')
try: PORT = config.getint('regexbot', 'port')
except: PORT = DEFAULT_PORT
NICK = config.get('regexbot', 'nick')
CHANNEL = config.get('regexbot', 'channel')
VERSION = 'regexbot hg:%s; http://hg.micolous.id.au/ircbots/'
try: VERSION = VERSION % Popen(["hg","id"], stdout=PIPE).communicate()[0].strip()
except: VERSION = VERSION % 'unknown'
del Popen, PIPE
try: FLOOD_COOLDOWN = timedelta(seconds=config.getint('regexbot', 'flood_cooldown'))
except: FLOOD_COOLDOWN = timedelta(seconds=5)
try: MAX_MESSAGES = config.getint('regexbot', 'max_messages')
except: MAX_MESSAGES = 25
try: NICKSERV_PASS = config.get('regexbot', 'nickserv_pass')
except: NICKSERV_PASS = None
message_buffer = []
last_message = datetime.now()
flooders = []
ignore_list = []
if config.has_section('ignore'):
for k,v in config.items('ignore'):
try:
ignore_list.append(re.compile(v, re.I))
except Exception, ex:
print "Error compiling regular expression in ignore list (%s):" % k
print " %s" % v
print ex
exit(1)
# main code
def handle_ctcp(event, match):
global message_buffer, MAX_MESSAGES, CHANNEL
if event.channel.lower() == CHANNEL.lower():
if event.args[0] == "ACTION":
message_buffer.append([event.nick, event.text[:200], True])
message_buffer = message_buffer[-MAX_MESSAGES:]
return
def handle_msg(event, match):
global message_buffer, MAX_MESSAGES, last_message, flooders, CHANNEL
msg = event.text
if event.channel.lower() != CHANNEL.lower():
# ignore messages not from our channel
return
# nokiberry has / on a shift state
if msg.startswith('s@'):
msg = msg.replace('@','/')
if msg.startswith('s/'):
for item in ignore_list:
if item.search(event.origin) != None:
# ignore list item hit
print "Ignoring message from %s because of: %s" % (event.origin, item.pattern)
return
# handle regex
parts = msg.split('/')
# now flood protect!
delta = event.when - last_message
last_message = event.when
if delta < FLOOD_COOLDOWN:
# 5 seconds between requests
# any more are ignored
print "Flood protection hit, %s of %s seconds were waited" % (delta.seconds, FLOOD_COOLDOWN.seconds)
return
if len(message_buffer) == 0:
event.reply('%s: message buffer is empty' % event.nick)
return
if len(parts) == 3:
event.reply('%s: invalid regular expression, you forgot the trailing slash, dummy' % event.nick)
return
if len(parts) != 4:
# not a valid regex
event.reply('%s: invalid regular expression, not the right amount of slashes' % event.nick)
return
# find messages matching the string
if len(parts[1]) == 0:
event.reply('%s: original string is empty' % event.nick)
return
ignore_case = 'i' in parts[3]
e = None
try:
if ignore_case:
e = re.compile(parts[1], re.I)
else:
e = re.compile(parts[1])
except Exception, ex:
event.reply('%s: failure compiling regular expression: %s' % (event.nick, ex))
return
# now we have a valid regular expression matcher!
for x in range(len(message_buffer)-1, -1, -1):
if e.search(message_buffer[x][1]) != None:
# match found!
new_message = []
# replace the message in the buffer
try:
new_message = [message_buffer[x][0], e.sub(parts[2], message_buffer[x][1]).replace('\n','').replace('\r','')[:200], message_buffer[x][2]]
del message_buffer[x]
message_buffer.append(new_message)
except Exception, ex:
event.reply('%s: failure replacing: %s' % (event.nick, ex))
return
# now print the new text
print new_message
if new_message[2]:
# action
event.reply((' * %s %s' % (new_message[0], new_message[1]))[:200])
else:
# normal message
event.reply(('<%s> %s' % (new_message[0], new_message[1]))[:200])
return
# no match found
event.reply('%s: no match found' % event.nick)
else:
# add to buffer
message_buffer.append([event.nick, msg[:200], False])
# trim the buffer
message_buffer = message_buffer[-MAX_MESSAGES:]
def handle_welcome(event, match):
global NICKSERV_PASS
# Compliance with most network's rules to set this mode on connect.
event.connection.usermode("+B")
if NICKSERV_PASS != None:
event.connection.todo(['NickServ', 'identify', NICKSERV_PASS])
irc = IRC(nick=NICK, start_channels=[CHANNEL], version=VERSION)
irc.bind(handle_msg, PRIVMSG)
irc.bind(handle_welcome, RPL_WELCOME)
irc.bind(handle_ctcp, CTCP_REQUEST)
irc.make_conn(SERVER, PORT)
asyncore.loop()