h/core/irc.py

244 lines
7.8 KiB
Python
Raw Normal View History

2009-11-13 01:59:41 +00:00
import re
import socket
import time
2015-11-15 16:36:35 +00:00
import _thread
import queue
from ssl import wrap_socket, CERT_NONE, CERT_REQUIRED, SSLError
2009-11-13 01:59:41 +00:00
2010-03-01 02:32:41 +00:00
2009-11-13 01:59:41 +00:00
def decode(txt):
for codec in ('utf-8', 'iso-8859-1', 'shift_jis', 'cp1252'):
try:
return txt.decode(codec)
except UnicodeDecodeError:
continue
return txt.decode('utf-8', 'ignore')
2010-03-01 02:32:41 +00:00
def censor(text):
text = text.replace('\n', '').replace('\r', '')
replacement = '[censored]'
if 'censored_strings' in bot.config:
2015-11-15 16:36:35 +00:00
words = list(map(re.escape, bot.config['censored_strings']))
regex = re.compile('(%s)' % "|".join(words))
text = regex.sub(replacement, text)
return text
class crlf_tcp(object):
2014-01-14 21:12:37 +00:00
2009-11-13 01:59:41 +00:00
"Handles tcp connections that consist of utf-8 lines ending with crlf"
def __init__(self, host, port, timeout=300):
self.ibuffer = ""
2009-11-13 01:59:41 +00:00
self.obuffer = ""
2015-11-15 16:36:35 +00:00
self.oqueue = queue.Queue() # lines to be sent out
self.iqueue = queue.Queue() # lines that were received
self.socket = self.create_socket()
2009-11-13 01:59:41 +00:00
self.host = host
self.port = port
self.timeout = timeout
2009-11-13 01:59:41 +00:00
def create_socket(self):
return socket.socket(socket.AF_INET, socket.TCP_NODELAY)
2010-03-01 02:32:41 +00:00
2009-11-13 01:59:41 +00:00
def run(self):
self.socket.connect((self.host, self.port))
2015-11-15 16:36:35 +00:00
_thread.start_new_thread(self.recv_loop, ())
_thread.start_new_thread(self.send_loop, ())
2009-11-13 01:59:41 +00:00
def recv_from_socket(self, nbytes):
return self.socket.recv(nbytes)
2010-03-01 02:32:41 +00:00
def get_timeout_exception_type(self):
return socket.timeout
2010-03-01 02:32:41 +00:00
def handle_receive_exception(self, error, last_timestamp):
if time.time() - last_timestamp > self.timeout:
self.iqueue.put(StopIteration)
self.socket.close()
return True
return False
def recv_loop(self):
last_timestamp = time.time()
while True:
2009-11-21 22:55:52 +00:00
try:
data = self.recv_from_socket(4096)
self.ibuffer += data
if data:
last_timestamp = time.time()
else:
if time.time() - last_timestamp > self.timeout:
self.iqueue.put(StopIteration)
self.socket.close()
return
time.sleep(1)
2011-05-11 20:40:04 +00:00
except (self.get_timeout_exception_type(), socket.error) as e:
if self.handle_receive_exception(e, last_timestamp):
return
2009-11-21 22:55:52 +00:00
continue
while '\r\n' in self.ibuffer:
line, self.ibuffer = self.ibuffer.split('\r\n', 1)
self.iqueue.put(decode(line))
2009-11-13 01:59:41 +00:00
def send_loop(self):
2009-11-13 01:59:41 +00:00
while True:
line = self.oqueue.get().splitlines()[0][:500]
2015-11-15 16:36:35 +00:00
print(">>> %r" % line)
self.obuffer += line.encode('utf-8', 'replace') + '\r\n'
while self.obuffer:
sent = self.socket.send(self.obuffer)
self.obuffer = self.obuffer[sent:]
2009-11-13 01:59:41 +00:00
2010-03-01 02:32:41 +00:00
class crlf_ssl_tcp(crlf_tcp):
2014-01-14 21:12:37 +00:00
"Handles ssl tcp connetions that consist of utf-8 lines ending with crlf"
2014-01-14 21:12:37 +00:00
def __init__(self, host, port, ignore_cert_errors, timeout=300):
self.ignore_cert_errors = ignore_cert_errors
crlf_tcp.__init__(self, host, port, timeout)
2010-03-01 02:32:41 +00:00
def create_socket(self):
2010-03-01 02:32:41 +00:00
return wrap_socket(crlf_tcp.create_socket(self), server_side=False,
2014-01-14 21:12:37 +00:00
cert_reqs=CERT_NONE if self.ignore_cert_errors else
CERT_REQUIRED)
2010-03-01 02:32:41 +00:00
def recv_from_socket(self, nbytes):
return self.socket.read(nbytes)
def get_timeout_exception_type(self):
return SSLError
2010-03-01 02:32:41 +00:00
def handle_receive_exception(self, error, last_timestamp):
# this is terrible
if not "timed out" in error.args[0]:
raise
return crlf_tcp.handle_receive_exception(self, error, last_timestamp)
2010-03-01 02:32:41 +00:00
2009-11-13 01:59:41 +00:00
irc_prefix_rem = re.compile(r'(.*?) (.*?) (.*)').match
irc_noprefix_rem = re.compile(r'()(.*?) (.*)').match
irc_netmask_rem = re.compile(r':?([^!@]*)!?([^@]*)@?(.*)').match
irc_param_ref = re.compile(r'(?:^|(?<= ))(:.*|[^ ]+)').findall
class IRC(object):
2014-01-14 21:12:37 +00:00
2009-11-13 01:59:41 +00:00
"handles the IRC protocol"
2014-01-14 21:12:37 +00:00
# see the docs/ folder for more information on the protocol
def __init__(self, conf):
self.set_conf(conf)
2015-11-15 16:36:35 +00:00
self.out = queue.Queue() # responses from the server are placed here
2009-11-13 01:59:41 +00:00
# format: [rawline, prefix, command, params,
# nick, user, host, paramlist, msg]
self.connect()
2015-11-15 16:36:35 +00:00
_thread.start_new_thread(self.parse_loop, ())
def set_conf(self, conf):
self.conf = conf
self.nick = self.conf['nick']
self.server = self.conf['server']
def create_connection(self):
return crlf_tcp(self.server, self.conf.get('port', 6667))
2010-03-01 02:32:41 +00:00
def connect(self):
self.conn = self.create_connection()
2015-11-15 16:36:35 +00:00
_thread.start_new_thread(self.conn.run, ())
self.cmd("NICK", [self.nick])
self.cmd("USER",
2015-11-05 01:22:06 +00:00
[self.conf.get('user', 'h'), "3", "*", self.conf.get('realname',
'h - https://git.xeserv.us/xena/h')])
if 'server_password' in self.conf:
self.cmd("PASS", [self.conf['server_password']])
2009-11-13 01:59:41 +00:00
def parse_loop(self):
while True:
msg = self.conn.iqueue.get()
if msg == StopIteration:
self.connect()
continue
2010-03-01 02:32:41 +00:00
if msg.startswith(":"): # has a prefix
2009-11-13 01:59:41 +00:00
prefix, command, params = irc_prefix_rem(msg).groups()
else:
prefix, command, params = irc_noprefix_rem(msg).groups()
nick, user, host = irc_netmask_rem(prefix).groups()
paramlist = irc_param_ref(params)
lastparam = ""
if paramlist:
if paramlist[-1].startswith(':'):
paramlist[-1] = paramlist[-1][1:]
lastparam = paramlist[-1]
2009-11-13 01:59:41 +00:00
self.out.put([msg, prefix, command, params, nick, user, host,
2014-01-14 21:12:37 +00:00
paramlist, lastparam])
2009-11-13 01:59:41 +00:00
if command == "PING":
self.cmd("PONG", paramlist)
2009-11-13 01:59:41 +00:00
def join(self, channel):
self.cmd("JOIN", channel.split(" ")) # [chan, password]
2009-11-13 01:59:41 +00:00
def msg(self, target, text):
self.cmd("PRIVMSG", [target, text])
2009-11-13 01:59:41 +00:00
def cmd(self, command, params=None):
if params:
params[-1] = ':' + params[-1]
self.send(command + ' ' + ' '.join(map(censor, params)))
2009-11-13 01:59:41 +00:00
else:
self.send(command)
def send(self, str):
self.conn.oqueue.put(str)
2010-03-01 02:32:41 +00:00
class FakeIRC(IRC):
2014-01-14 21:12:37 +00:00
def __init__(self, conf):
self.set_conf(conf)
2015-11-15 16:36:35 +00:00
self.out = queue.Queue() # responses from the server are placed here
self.f = open(fn, 'rb')
2015-11-15 16:36:35 +00:00
_thread.start_new_thread(self.parse_loop, ())
def parse_loop(self):
while True:
msg = decode(self.f.readline()[9:])
if msg == '':
2015-11-15 16:36:35 +00:00
print("!!!!DONE READING FILE!!!!")
return
2010-03-01 02:32:41 +00:00
if msg.startswith(":"): # has a prefix
prefix, command, params = irc_prefix_rem(msg).groups()
else:
prefix, command, params = irc_noprefix_rem(msg).groups()
nick, user, host = irc_netmask_rem(prefix).groups()
paramlist = irc_param_ref(params)
lastparam = ""
if paramlist:
if paramlist[-1].startswith(':'):
paramlist[-1] = paramlist[-1][1:]
lastparam = paramlist[-1]
self.out.put([msg, prefix, command, params, nick, user, host,
2014-01-14 21:12:37 +00:00
paramlist, lastparam])
if command == "PING":
self.cmd("PONG", [params])
def cmd(self, command, params=None):
pass
2010-03-01 02:32:41 +00:00
class SSLIRC(IRC):
2014-01-14 21:12:37 +00:00
def create_connection(self):
return crlf_ssl_tcp(self.server, self.conf.get('port', 6697), self.conf.get('ignore_cert', True))