2008-02-21 07:06:33 -05:00
|
|
|
#!/usr/bin/env python
|
|
|
|
"""
|
|
|
|
irc.py - A Utility IRC Bot
|
|
|
|
Copyright 2008, Sean B. Palmer, inamidst.com
|
|
|
|
Licensed under the Eiffel Forum License 2.
|
|
|
|
|
|
|
|
http://inamidst.com/phenny/
|
|
|
|
"""
|
|
|
|
|
|
|
|
import sys, re, time, traceback
|
|
|
|
import socket, asyncore, asynchat
|
2011-09-22 14:17:27 -04:00
|
|
|
import ssl
|
2008-02-21 07:06:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
class Origin(object):
|
2011-09-22 14:17:27 -04:00
|
|
|
source = re.compile(r'([^!]*)!?([^@]*)@?(.*)')
|
2008-02-21 07:06:33 -05:00
|
|
|
|
2011-09-22 14:17:27 -04:00
|
|
|
def __init__(self, bot, source, args):
|
2011-11-16 17:36:14 -05:00
|
|
|
if not source:
|
|
|
|
source = ""
|
2011-09-22 14:29:29 -04:00
|
|
|
match = Origin.source.match(source)
|
2011-09-22 14:17:27 -04:00
|
|
|
self.nick, self.user, self.host = match.groups()
|
2008-02-21 07:06:33 -05:00
|
|
|
|
2011-09-22 14:17:27 -04:00
|
|
|
if len(args) > 1:
|
2011-11-16 17:28:14 -05:00
|
|
|
target = args[1]
|
2011-09-22 14:17:27 -04:00
|
|
|
else: target = None
|
2008-02-21 07:06:33 -05:00
|
|
|
|
2011-09-22 14:17:27 -04:00
|
|
|
mappings = {bot.nick: self.nick, None: None}
|
|
|
|
self.sender = mappings.get(target, target)
|
2008-02-21 07:06:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
class Bot(asynchat.async_chat):
|
2011-09-22 14:17:27 -04:00
|
|
|
def __init__(self, nick, name, channels, password=None):
|
|
|
|
asynchat.async_chat.__init__(self)
|
|
|
|
self.set_terminator(b'\n')
|
|
|
|
self.buffer = b''
|
|
|
|
|
|
|
|
self.nick = nick
|
|
|
|
self.user = nick
|
|
|
|
self.name = name
|
|
|
|
self.password = password
|
|
|
|
|
|
|
|
self.verbose = True
|
|
|
|
self.channels = channels or []
|
|
|
|
self.stack = []
|
|
|
|
|
|
|
|
import threading
|
|
|
|
self.sending = threading.RLock()
|
|
|
|
|
|
|
|
# def push(self, *args, **kargs):
|
|
|
|
# asynchat.async_chat.push(self, *args, **kargs)
|
|
|
|
|
|
|
|
def __write(self, args, text=None):
|
2012-02-17 22:10:05 -05:00
|
|
|
# print 'PUSH: %r %r %r' % (self, args, text)
|
2011-09-22 14:17:27 -04:00
|
|
|
try:
|
|
|
|
if text is not None:
|
2011-12-13 14:59:30 -05:00
|
|
|
# 510 because CR and LF count too, as nyuszika7h points out
|
2011-12-21 01:31:46 -05:00
|
|
|
self.push((b' '.join(args) + b' :' + text)[:510] + b'\r\n')
|
2011-09-22 14:17:27 -04:00
|
|
|
else:
|
|
|
|
self.push(b' '.join(args)[:512] + b'\r\n')
|
|
|
|
except IndexError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
def write(self, args, text=None):
|
2011-09-22 15:04:19 -04:00
|
|
|
"""This is a safe version of __write"""
|
2011-09-22 14:17:27 -04:00
|
|
|
def safe(input):
|
2011-09-22 15:44:13 -04:00
|
|
|
if type(input) == str:
|
|
|
|
input = input.replace('\n', '')
|
|
|
|
input = input.replace('\r', '')
|
|
|
|
return input.encode('utf-8')
|
|
|
|
else:
|
|
|
|
return input
|
2011-09-22 14:17:27 -04:00
|
|
|
try:
|
|
|
|
args = [safe(arg) for arg in args]
|
|
|
|
if text is not None:
|
|
|
|
text = safe(text)
|
|
|
|
self.__write(args, text)
|
|
|
|
except Exception as e:
|
2011-09-22 15:44:13 -04:00
|
|
|
raise
|
|
|
|
#pass
|
2011-09-22 14:17:27 -04:00
|
|
|
|
2012-03-21 23:10:15 -04:00
|
|
|
def run(self, host, port=6667, ssl=False,
|
|
|
|
ipv6=False, ca_certs='/etc/ssl/certs/ca-certificates.crt'):
|
|
|
|
self.ca_certs = ca_certs
|
2011-09-22 14:17:27 -04:00
|
|
|
self.initiate_connect(host, port, ssl, ipv6)
|
|
|
|
|
|
|
|
def initiate_connect(self, host, port, use_ssl, ipv6):
|
|
|
|
if self.verbose:
|
|
|
|
message = 'Connecting to %s:%s...' % (host, port)
|
|
|
|
print(message, end=' ', file=sys.stderr)
|
|
|
|
if ipv6 and socket.has_ipv6:
|
|
|
|
af = socket.AF_INET6
|
|
|
|
else:
|
|
|
|
af = socket.AF_INET
|
|
|
|
self.create_socket(af, socket.SOCK_STREAM, use_ssl)
|
|
|
|
self.connect((host, port))
|
|
|
|
try: asyncore.loop()
|
|
|
|
except KeyboardInterrupt:
|
|
|
|
sys.exit()
|
|
|
|
|
|
|
|
def create_socket(self, family, type, use_ssl=False):
|
|
|
|
self.family_and_type = family, type
|
|
|
|
sock = socket.socket(family, type)
|
|
|
|
if use_ssl:
|
2012-03-21 23:10:15 -04:00
|
|
|
sock = ssl.wrap_socket(sock, ssl_version=ssl.PROTOCOL_TLSv1,
|
|
|
|
cert_reqs=ssl.CERT_OPTIONAL, ca_certs=self.ca_certs)
|
2011-09-22 14:17:27 -04:00
|
|
|
# FIXME: ssl module does not appear to work properly with nonblocking sockets
|
2011-10-22 21:12:54 -04:00
|
|
|
#sock.setblocking(0)
|
2011-09-22 14:17:27 -04:00
|
|
|
self.set_socket(sock)
|
|
|
|
|
|
|
|
def handle_connect(self):
|
|
|
|
if self.verbose:
|
|
|
|
print('connected!', file=sys.stderr)
|
|
|
|
if self.password:
|
|
|
|
self.write(('PASS', self.password))
|
|
|
|
self.write(('NICK', self.nick))
|
|
|
|
self.write(('USER', self.user, '+iw', self.nick), self.name)
|
|
|
|
|
|
|
|
def handle_close(self):
|
|
|
|
self.close()
|
|
|
|
print('Closed!', file=sys.stderr)
|
|
|
|
|
|
|
|
def collect_incoming_data(self, data):
|
|
|
|
self.buffer += data
|
|
|
|
|
|
|
|
def found_terminator(self):
|
|
|
|
line = self.buffer
|
|
|
|
if line.endswith(b'\r'):
|
|
|
|
line = line[:-1]
|
|
|
|
self.buffer = b''
|
|
|
|
|
2012-02-06 22:58:53 -05:00
|
|
|
try:
|
|
|
|
line = line.decode('utf-8')
|
|
|
|
except UnicodeDecodeError:
|
|
|
|
line = line.decode('iso-8859-1')
|
2011-11-16 17:28:14 -05:00
|
|
|
|
|
|
|
if line.startswith(':'):
|
|
|
|
source, line = line[1:].split(' ', 1)
|
2011-09-22 14:17:27 -04:00
|
|
|
else: source = None
|
|
|
|
|
2011-11-16 17:28:14 -05:00
|
|
|
if ' :' in line:
|
|
|
|
argstr, text = line.split(' :', 1)
|
|
|
|
else: argstr, text = line, ''
|
2011-09-22 14:17:27 -04:00
|
|
|
args = argstr.split()
|
|
|
|
|
|
|
|
origin = Origin(self, source, args)
|
|
|
|
self.dispatch(origin, tuple([text] + args))
|
|
|
|
|
2011-11-16 17:28:14 -05:00
|
|
|
if args[0] == 'PING':
|
2011-09-22 14:17:27 -04:00
|
|
|
self.write(('PONG', text))
|
|
|
|
|
|
|
|
def dispatch(self, origin, args):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def msg(self, recipient, text):
|
|
|
|
self.sending.acquire()
|
|
|
|
|
|
|
|
# Cf. http://swhack.com/logs/2006-03-01#T19-43-25
|
|
|
|
if isinstance(text, str):
|
|
|
|
try: text = text.encode('utf-8')
|
|
|
|
except UnicodeEncodeError as e:
|
|
|
|
text = e.__class__ + ': ' + str(e)
|
|
|
|
if isinstance(recipient, str):
|
|
|
|
try: recipient = recipient.encode('utf-8')
|
|
|
|
except UnicodeEncodeError as e:
|
|
|
|
return
|
|
|
|
|
|
|
|
# No messages within the last 3 seconds? Go ahead!
|
|
|
|
# Otherwise, wait so it's been at least 0.8 seconds + penalty
|
|
|
|
if self.stack:
|
|
|
|
elapsed = time.time() - self.stack[-1][0]
|
|
|
|
if elapsed < 3:
|
|
|
|
penalty = float(max(0, len(text) - 50)) / 70
|
|
|
|
wait = 0.8 + penalty
|
|
|
|
if elapsed < wait:
|
|
|
|
time.sleep(wait - elapsed)
|
|
|
|
|
|
|
|
# Loop detection
|
|
|
|
messages = [m[1] for m in self.stack[-8:]]
|
|
|
|
if messages.count(text) >= 5:
|
|
|
|
text = '...'
|
|
|
|
if messages.count('...') >= 3:
|
|
|
|
self.sending.release()
|
|
|
|
return
|
|
|
|
|
|
|
|
def safe(input):
|
2011-10-22 21:12:54 -04:00
|
|
|
if type(input) == str:
|
|
|
|
input = input.encode('utf-8')
|
2011-09-22 14:17:27 -04:00
|
|
|
input = input.replace(b'\n', b'')
|
|
|
|
return input.replace(b'\r', b'')
|
|
|
|
self.__write((b'PRIVMSG', safe(recipient)), safe(text))
|
|
|
|
self.stack.append((time.time(), text))
|
|
|
|
self.stack = self.stack[-10:]
|
|
|
|
|
|
|
|
self.sending.release()
|
|
|
|
|
|
|
|
def action(self, recipient, text):
|
|
|
|
text = "ACTION %s" % text
|
|
|
|
textu = chr(1) + text + chr(1)
|
|
|
|
return self.msg(recipient, textu)
|
|
|
|
|
|
|
|
def notice(self, dest, text):
|
2012-05-31 00:13:06 -04:00
|
|
|
self.write(('NOTICE', dest), text)
|
2011-09-22 14:17:27 -04:00
|
|
|
|
|
|
|
def error(self, origin):
|
|
|
|
try:
|
|
|
|
import traceback
|
|
|
|
trace = traceback.format_exc()
|
|
|
|
print(trace)
|
|
|
|
lines = list(reversed(trace.splitlines()))
|
|
|
|
|
|
|
|
report = [lines[0].strip()]
|
|
|
|
for line in lines:
|
|
|
|
line = line.strip()
|
|
|
|
if line.startswith('File "/'):
|
|
|
|
report.append(line[0].lower() + line[1:])
|
|
|
|
break
|
|
|
|
else: report.append('source unknown')
|
|
|
|
|
|
|
|
self.msg(origin.sender, report[0] + ' (' + report[1] + ')')
|
|
|
|
except: self.msg(origin.sender, "Got an error.")
|
|
|
|
|
2008-02-21 07:06:33 -05:00
|
|
|
|
|
|
|
class TestBot(Bot):
|
2011-09-22 14:17:27 -04:00
|
|
|
def f_ping(self, origin, match, args):
|
|
|
|
delay = m.group(1)
|
|
|
|
if delay is not None:
|
|
|
|
import time
|
|
|
|
time.sleep(int(delay))
|
|
|
|
self.msg(origin.sender, 'pong (%s)' % delay)
|
|
|
|
else: self.msg(origin.sender, 'pong')
|
|
|
|
f_ping.rule = r'^\.ping(?:[ \t]+(\d+))?$'
|
2008-02-21 07:06:33 -05:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2011-09-22 14:17:27 -04:00
|
|
|
bot = TestBot('testbot007', 'testbot007', ['#wadsworth'])
|
|
|
|
bot.run('irc.freenode.net')
|
|
|
|
print(__doc__)
|
2008-02-21 07:06:33 -05:00
|
|
|
|
|
|
|
if __name__=="__main__":
|
2011-09-22 14:17:27 -04:00
|
|
|
main()
|