forked from millefalcon/TrioIRC
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathirc.py
More file actions
313 lines (280 loc) · 9.34 KB
/
irc.py
File metadata and controls
313 lines (280 loc) · 9.34 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
305
306
307
308
309
310
311
312
313
import logging
import attr
import trio
from typing import Tuple, List
CR = chr(0o15)
class IRCBadMessage(Exception):
pass
@attr.s(auto_attribs=True, slots=True)
class Event:
type: str = ""
prefix: str = ""
params: List = []
def parsemsg(s: str) -> Tuple[str, str, List]:
"""
Breaks a message from an IRC server into its prefix, command, and
arguments.
"""
prefix = ''
trailing = []
if not s:
raise IRCBadMessage("Empty line.")
if s[0:1] == ':' and ' ' in s[1:]:
prefix, s = s[1:].split(' ', 1)
if s.find(' :') != -1:
s, trailing = s.split(' :', 1)
args = s.split()
args.append(trailing)
else:
args = s.split()
command = args.pop(0)
return prefix, command, args
class IRCBase:
nickname = 'tribot'
def __init__(self, host, port):
self.host = host
self.port = port
self.logger = logging.getLogger(__file__)
async def connect(self):
stream = await trio.open_tcp_stream(self.host, self.port)
self.stream = stream
async def _parse(self, bdata: bytes):
data = bdata.decode('utf-8')
data = data.split('\r\n')
for line in data:
if not line: continue
if len(line) <= 2:
# This is a blank line, at best.
continue
if line[-1] == CR:
line = line[:-1]
yield parsemsg(line)
await trio.sleep(0)
async def _read_and_parse_next_event(self, stream):
async with stream:
try:
async for data in stream:
async for prefix, command, params in self._parse(data):
if command in numeric_to_symbolic:
command = numeric_to_symbolic[command]
yield Event(command, prefix, params)
#except trio.ClosedResourceError:
# yield Event('DISCONNECT', None, None)
except Exception as e:
print("****** err", e)
async def events(self):
async for event in self._read_and_parse_next_event(self.stream):
yield event
async def disconnect(self):
# `send_eof` will probably cause the other end to close the connection too, but it's not available always
# (e.g. if you're connecting over TLS), and most programs treat it the same as if you simply closed the connection.
# The simplest approach is just to call `await stream.aclose()`, and that will cause any ongoing or future `receive_some`
# calls to `raise trio.ClosedResourceError`
await self.stream.aclose()
#await self.stream.send_eof()
symbolic_to_numeric = {
"RPL_WELCOME": '001',
"RPL_YOURHOST": '002',
"RPL_CREATED": '003',
"RPL_MYINFO": '004',
"RPL_ISUPPORT": '005',
"RPL_BOUNCE": '010',
"RPL_USERHOST": '302',
"RPL_ISON": '303',
"RPL_AWAY": '301',
"RPL_UNAWAY": '305',
"RPL_NOWAWAY": '306',
"RPL_WHOISUSER": '311',
"RPL_WHOISSERVER": '312',
"RPL_WHOISOPERATOR": '313',
"RPL_WHOISIDLE": '317',
"RPL_ENDOFWHOIS": '318',
"RPL_WHOISCHANNELS": '319',
"RPL_WHOWASUSER": '314',
"RPL_ENDOFWHOWAS": '369',
"RPL_LISTSTART": '321',
"RPL_LIST": '322',
"RPL_LISTEND": '323',
"RPL_UNIQOPIS": '325',
"RPL_CHANNELMODEIS": '324',
"RPL_NOTOPIC": '331',
"RPL_TOPIC": '332',
"RPL_INVITING": '341',
"RPL_SUMMONING": '342',
"RPL_INVITELIST": '346',
"RPL_ENDOFINVITELIST": '347',
"RPL_EXCEPTLIST": '348',
"RPL_ENDOFEXCEPTLIST": '349',
"RPL_VERSION": '351',
"RPL_WHOREPLY": '352',
"RPL_ENDOFWHO": '315',
"RPL_NAMREPLY": '353',
"RPL_ENDOFNAMES": '366',
"RPL_LINKS": '364',
"RPL_ENDOFLINKS": '365',
"RPL_BANLIST": '367',
"RPL_ENDOFBANLIST": '368',
"RPL_INFO": '371',
"RPL_ENDOFINFO": '374',
"RPL_MOTDSTART": '375',
"RPL_MOTD": '372',
"RPL_ENDOFMOTD": '376',
"RPL_YOUREOPER": '381',
"RPL_REHASHING": '382',
"RPL_YOURESERVICE": '383',
"RPL_TIME": '391',
"RPL_USERSSTART": '392',
"RPL_USERS": '393',
"RPL_ENDOFUSERS": '394',
"RPL_NOUSERS": '395',
"RPL_TRACELINK": '200',
"RPL_TRACECONNECTING": '201',
"RPL_TRACEHANDSHAKE": '202',
"RPL_TRACEUNKNOWN": '203',
"RPL_TRACEOPERATOR": '204',
"RPL_TRACEUSER": '205',
"RPL_TRACESERVER": '206',
"RPL_TRACESERVICE": '207',
"RPL_TRACENEWTYPE": '208',
"RPL_TRACECLASS": '209',
"RPL_TRACERECONNECT": '210',
"RPL_TRACELOG": '261',
"RPL_TRACEEND": '262',
"RPL_STATSLINKINFO": '211',
"RPL_STATSCOMMANDS": '212',
"RPL_ENDOFSTATS": '219',
"RPL_STATSUPTIME": '242',
"RPL_STATSOLINE": '243',
"RPL_UMODEIS": '221',
"RPL_SERVLIST": '234',
"RPL_SERVLISTEND": '235',
"RPL_LUSERCLIENT": '251',
"RPL_LUSEROP": '252',
"RPL_LUSERUNKNOWN": '253',
"RPL_LUSERCHANNELS": '254',
"RPL_LUSERME": '255',
"RPL_ADMINME": '256',
"RPL_ADMINLOC1": '257',
"RPL_ADMINLOC2": '258',
"RPL_ADMINEMAIL": '259',
"RPL_TRYAGAIN": '263',
"ERR_NOSUCHNICK": '401',
"ERR_NOSUCHSERVER": '402',
"ERR_NOSUCHCHANNEL": '403',
"ERR_CANNOTSENDTOCHAN": '404',
"ERR_TOOMANYCHANNELS": '405',
"ERR_WASNOSUCHNICK": '406',
"ERR_TOOMANYTARGETS": '407',
"ERR_NOSUCHSERVICE": '408',
"ERR_NOORIGIN": '409',
"ERR_NORECIPIENT": '411',
"ERR_NOTEXTTOSEND": '412',
"ERR_NOTOPLEVEL": '413',
"ERR_WILDTOPLEVEL": '414',
"ERR_BADMASK": '415',
"ERR_TOOMANYMATCHES": '416',
"ERR_UNKNOWNCOMMAND": '421',
"ERR_NOMOTD": '422',
"ERR_NOADMININFO": '423',
"ERR_FILEERROR": '424',
"ERR_NONICKNAMEGIVEN": '431',
"ERR_ERRONEUSNICKNAME": '432',
"ERR_NICKNAMEINUSE": '433',
"ERR_NICKCOLLISION": '436',
"ERR_UNAVAILRESOURCE": '437',
"ERR_USERNOTINCHANNEL": '441',
"ERR_NOTONCHANNEL": '442',
"ERR_USERONCHANNEL": '443',
"ERR_NOLOGIN": '444',
"ERR_SUMMONDISABLED": '445',
"ERR_USERSDISABLED": '446',
"ERR_NOTREGISTERED": '451',
"ERR_NEEDMOREPARAMS": '461',
"ERR_ALREADYREGISTRED": '462',
"ERR_NOPERMFORHOST": '463',
"ERR_PASSWDMISMATCH": '464',
"ERR_YOUREBANNEDCREEP": '465',
"ERR_YOUWILLBEBANNED": '466',
"ERR_KEYSET": '467',
"ERR_CHANNELISFULL": '471',
"ERR_UNKNOWNMODE": '472',
"ERR_INVITEONLYCHAN": '473',
"ERR_BANNEDFROMCHAN": '474',
"ERR_BADCHANNELKEY": '475',
"ERR_BADCHANMASK": '476',
"ERR_NOCHANMODES": '477',
"ERR_BANLISTFULL": '478',
"ERR_NOPRIVILEGES": '481',
"ERR_CHANOPRIVSNEEDED": '482',
"ERR_CANTKILLSERVER": '483',
"ERR_RESTRICTED": '484',
"ERR_UNIQOPPRIVSNEEDED": '485',
"ERR_NOOPERHOST": '491',
"ERR_NOSERVICEHOST": '492',
"ERR_UMODEUNKNOWNFLAG": '501',
"ERR_USERSDONTMATCH": '502',
}
numeric_to_symbolic = {}
for k, v in symbolic_to_numeric.items():
numeric_to_symbolic[v] = k
@attr.s(auto_attribs=True)
class IRCClient(IRCBase):
nickname = "tribot"
hostname = ""
_attempted_nick = ''
_heartbeat_interval = 120
host: str = ""
port: int = 6667
#channel: str = "#dummychan"
def __attrs__post_init__(self):
super().__init__(self, self.host, self.port)
async def connect(self):
if self.hostname is None:
self.hostname = socket.getfqdn()
await super().connect()
await self._identify()
async def _identify(self):
await self.send_message("NICK", self.nickname)
await self.send_message('USER', self.nickname, '-', '-', f'{self.nickname} Python IRC bot')
def _alter_collided_nick(self, nickname):
return self.nickname + '_'
async def set_nick(self, nickname):
self._attempted_nick = nickname
await self.send_message("NICK", nickname)
async def join(self, channel):
await self.send_message("JOIN", channel)
async def send_message(self, command, *args):
parts = [command] + list(args)
message = ' '.join(parts) + '\r\n'
print("msg >", repr(message))
await self.stream.send_all(message.encode('utf-8'))
async def handle_nicknameinuse(self):
self._attempted_nick = self._alter_collided_nick(self._attempted_nick)
await self.set_nick(self._attempted_nick)
async def _start_heartbeat(self):
print("sending heartbeat...")
while True:
await trio.sleep(self._heartbeat_interval)
await self.send_message("PONG", self.hostname)
async def events(self):
async with trio.open_nursery() as nursery:
nursery.start_soon(self._start_heartbeat)
async for event in super().events():
yield event
if __name__ == '__main__':
async def main():
logging.basicConfig(level=logging.DEBUG)
#host, port, channel = ("irc.freenode.net", 6667, "#bash")
host, port, channel = ("irc.freenode.net", 6667, "#dummychan")
client = IRCClient(host, port)
await client.connect()
async for event in client.events():
print(event)
if event.type == 'ERR_NICKNAMEINUSE':
await client.handle_nicknameinuse()
elif event.type == 'RPL_ENDOFMOTD':
await client.join(channel)
elif event.type == 'JOIN':
await client.send_message("PRIVMSG", channel, "hello world")
await client.send_message("PRIVMSG", channel, "universe that")
trio.run(main)