forked from mniip/Doger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hooks.py
270 lines (240 loc) · 9.38 KB
/
Hooks.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
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
# coding=utf8
import traceback, sys, re, time, threading, Queue, socket, subprocess
import Irc, Config, Transactions, Commands, Config, Global, Logger
hooks = {}
def end_of_motd(instance, *_):
Global.instances[instance].can_send.set()
Logger.log("c", instance + ": End of motd, joining " + " ".join(Config.config["instances"][instance]))
for channel in Config.config["instances"][instance]:
Irc.instance_send(instance, ("JOIN", channel))
hooks["376"] = end_of_motd
def ping(instance, source, *args):
Irc.instance_send(instance, tuple(("PONG",) + args), priority = 0, lock = False)
hooks["PING"] = ping
class Request(object):
def __init__(self, instance, target, source, text):
self.instance = instance
self.target = target
self.source = source
self.nick = Irc.get_nickname(source)
self.text = text
def privmsg(self, targ, text, priority = None):
Logger.log("c", self.instance + ": %s <- (pri=%s) %s " % (targ, str(priority), text))
for i in xrange(0, len(text), 350):
if priority:
Irc.instance_send(self.instance, ("PRIVMSG", targ, text[i:i+350]), priority = priority)
else:
Irc.instance_send(self.instance, ("PRIVMSG", targ, text[i:i+350]))
def reply(self, text):
if self.nick == self.target:
self.privmsg(self.target, self.nick + ": " + text, priority = 10)
else:
self.privmsg(self.target, self.nick + ": " + text)
def reply_private(self, text):
self.privmsg(self.nick, self.nick + ": " + text, priority = 10)
def say(self, text):
if self.nick == self.target:
self.privmsg(self.target, text, priority = 10)
else:
self.privmsg(self.target, text)
class FakeRequest(Request):
def __init__(self, req, target, text):
self.instance = req.instance
self.target = req.target
self.source = req.source
self.nick = target
self.text = text
self.realnick = req.nick
def privmsg(self, targ, text, priority = None):
Logger.log("c", self.instance + ": %s <- %s " % (targ, text))
for i in xrange(0, len(text), 350):
if priority:
Irc.instance_send(self.instance, ("PRIVMSG", targ, text[i:i+350]), priority = priority)
else:
Irc.instance_send(self.instance, ("PRIVMSG", targ, text[i:i+350]))
def reply(self, text):
self.privmsg(self.target, self.realnick + " [reply] : " + text)
def reply_private(self, text):
self.privmsg(self.target, self.realnick + " [reply_private]: " + text)
def say(self, text):
self.privmsg(self.target, text)
def run_command(cmd, req, arg):
try:
cmd(req, arg)
except Exception as e:
req.reply(repr(e))
type, value, tb = sys.exc_info()
Logger.log("ce", "ERROR in " + req.instance + " : " + req.text)
Logger.log("ce", repr(e))
Logger.log("ce", "".join(traceback.format_tb(tb)))
Logger.irclog("Error while executing '%s' from '%s': %s" % (req.text, req.nick, repr(e)))
Logger.irclog("".join(traceback.format_tb(tb)).replace("\n", " || "))
del tb
def message(instance, source, target, text):
host = Irc.get_host(source)
if text == "\x01VERSION\x01":
p = subprocess.Popen(["git", "rev-parse", "HEAD"], stdout = subprocess.PIPE)
hash, _ = p.communicate()
hash = hash.strip()
p = subprocess.Popen(["git", "diff", "--quiet"])
changes = p.wait()
if changes:
hash += "[+]"
version = "Doger by mniip, version " + hash
Irc.instance_send(instance, ("NOTICE", Irc.get_nickname(source), "\x01VERSION " + version + "\x01"), priority = 20)
else:
commandline = None
if target == instance:
commandline = text
if text[0] == Config.config["prefix"]:
commandline = text[1:]
if commandline:
if Irc.is_ignored(host):
Logger.log("c", instance + ": %s <%s ignored> %s " % (target, Irc.get_nickname(source), text))
return
Logger.log("c", instance + ": %s <%s> %s " % (target, Irc.get_nickname(source), text))
if Config.config.get("ignore", None):
t = time.time()
score = Global.flood_score.get(host, (t, 0))
score = max(score[1] + score[0] - t, 0) + Config.config["ignore"]["cost"]
if score > Config.config["ignore"]["limit"] and not Irc.is_admin(source):
Logger.log("c", instance + ": Ignoring " + host)
Irc.ignore(host, Config.config["ignore"]["timeout"])
Irc.instance_send(instance, ("PRIVMSG", Irc.get_nickname(source), "You're sending commands too quickly. Your host is ignored for 240 seconds"))
return
Global.flood_score[host] = (t, score)
src = Irc.get_nickname(source)
if target == instance:
reply = src
else:
reply = target
commandline = commandline.rstrip(" \t")
if commandline.find(" ") == -1:
command = commandline
args = []
else:
command, args = commandline.split(" ", 1)
args = [a for a in args.split(" ") if len(a) > 0]
if command[0] != '_':
cmd = Commands.commands.get(command.lower(), None)
if not cmd.__doc__ or cmd.__doc__.find("admin") == -1 or Irc.is_admin(source):
if cmd:
req = Request(instance, reply, source, commandline)
t = threading.Thread(target = run_command, args = (cmd, req, args))
t.start()
hooks["PRIVMSG"] = message
def join(instance, source, channel, account, _):
if account == "*":
account = False
nick = Irc.get_nickname(source)
with Global.account_lock:
if nick == instance:
Global.account_cache[channel] = {}
Global.account_cache[channel][nick] = account
for channel in Global.account_cache:
if nick in Global.account_cache[channel]:
Global.account_cache[channel][nick] = account
Logger.log("w", "Propagating %s=%s into %s" % (nick, account, channel))
hooks["JOIN"] = join
def part(instance, source, channel, *_):
nick = Irc.get_nickname(source)
with Global.account_lock:
if nick == instance:
del Global.account_cache[channel]
Logger.log("w", "Removing cache for " + channel)
return
if nick in Global.account_cache[channel]:
del Global.account_cache[channel][nick]
Logger.log("w", "Removing %s from %s" % (nick, channel))
hooks["PART"] = part
def kick(instance, _, channel, nick, *__):
with Global.account_lock:
if nick == instance:
del Global.account_cache[channel]
Logger.log("w", "Removing cache for " + channel)
return
if nick in Global.account_cache[channel]:
del Global.account_cache[channel][nick]
Logger.log("w", "Removing %s from %s" % (nick, channel))
hooks["KICK"] = kick
def quit(instance, source, _):
nick = Irc.get_nickname(source)
with Global.account_lock:
if nick == instance:
chans = []
for channel in Global.account_cache:
if nick in Global.account_cache[channel]:
chans.append(channel)
for channel in chans:
del Global.account_cache[channel]
Logger.log("w", "Removing cache for " + channel)
return
for channel in Global.account_cache:
if nick in Global.account_cache[channel]:
del Global.account_cache[channel][nick]
Logger.log("w", "Removing %s from %s" % (nick, channel))
hooks["QUIT"] = quit
def account(instance, source, account):
if account == "*":
account = False
nick = Irc.get_nickname(source)
with Global.account_lock:
for channel in Global.account_cache:
if nick in Global.account_cache[channel]:
Global.account_cache[channel][nick] = account
Logger.log("w", "Propagating %s=%s into %s" % (nick, account, channel))
hooks["ACCOUNT"] = account
def _nick(instance, source, newnick):
nick = Irc.get_nickname(source)
with Global.account_lock:
for channel in Global.account_cache:
if nick in Global.account_cache[channel]:
Global.account_cache[channel][newnick] = Global.account_cache[channel][nick]
Logger.log("w", "%s -> %s in %s" % (nick, newnick, channel))
del Global.account_cache[channel][nick]
hooks["NICK"] = _nick
def names(instance, _, __, eq, channel, names):
names = names.split(" ")
with Global.account_lock:
for n in names:
n = Irc.strip_nickname(n)
Global.account_cache[channel][n] = None
hooks["353"] = names
def error(instance, *_):
Logger.log("ce", instance + " disconnected")
raise socket.error()
hooks["ERROR"] = error
def whois_host(instance, _, __, target, *___):
Global.instances[instance].lastwhois = False
hooks["311"] = whois_host
def whois_ident(instance, _, __, target, account, ___):
Global.instances[instance].lastwhois = account
hooks["330"] = whois_ident
def whois_end(instance, _, __, target, ___):
try:
nick, q = Global.instances[instance].whois_queue.get(False)
if Irc.equal_nicks(target, nick):
Logger.log("w", instance + ": WHOIS of " + target + " is " + repr(Global.instances[instance].lastwhois))
q.put(Global.instances[instance].lastwhois, True)
else:
Logger.log("we", instance + ": WHOIS reply for " + target + " but queued " + nick + " returning None")
q.put(None, True)
Global.instances[instance].lastwhois = None
Global.instances[instance].whois_queue.task_done()
except Queue.Empty:
Logger.log("we", instance + ": WHOIS reply for " + target + " but nothing queued")
hooks["318"] = whois_end
def cap(instance, _, __, ___, caps):
if caps.rstrip(" ") == "sasl":
Irc.instance_send(instance, ("AUTHENTICATE", "PLAIN"), lock = False)
hooks["CAP"] = cap
def authenticate(instance, _, data):
if data == "+":
load = Config.config["account"] + "\0" + Config.config["account"] + "\0" + Config.config["password"]
Irc.instance_send(instance, ("AUTHENTICATE", load.encode("base64").rstrip("\n")), lock = False)
hooks["AUTHENTICATE"] = authenticate
def sasl_success(instance, _, data, __):
Logger.log("c", "Finished authentication")
Irc.instance_send(instance, ("CAP", "END"), lock = False)
Irc.instance_send(instance, ("CAP", "REQ", "extended-join account-notify"), lock = False)
hooks["903"] = sasl_success