X-Git-Url: https://plomlompom.com/repos/?p=plomlombot-irc.git;a=blobdiff_plain;f=plomlombot.py;h=7224b29e2ccff2a90504a113676edd625278253e;hp=89ff51a015700ec067fa88a7e984e3e04a6fc16e;hb=2fc56d6691472c34fc5487c97b11075f0824cf36;hpb=2742522c6041ef70b3f3763bcd50ac2b72eca95a diff --git a/plomlombot.py b/plomlombot.py index 89ff51a..7224b29 100755 --- a/plomlombot.py +++ b/plomlombot.py @@ -12,6 +12,7 @@ import random import hashlib import os import plomsearch +import irclog # Defaults, may be overwritten by command line arguments. SERVER = "irc.freenode.net" @@ -23,16 +24,45 @@ TWTFILE = "" DBDIR = os.path.expanduser("~/plomlombot_db") +def write_to_file(path, mode, text): + f = open(path, mode) + f.write(text) + f.close() + + class ExceptionForRestart(Exception): pass +class Line: + + def __init__(self, line): + self.line = line + self.tokens = line.split(" ") + self.sender = "" + if self.tokens[0][0] == ":": + for rune in self.tokens[0][1:]: + if rune in {"!", "@"}: + break + self.sender += rune + self.receiver = "" + if len(self.tokens) > 2: + for rune in self.tokens[2]: + if rune in {"!", "@"}: + break + if rune != ":": + self.receiver += rune + + class IO: def __init__(self, server, port, timeout): self.timeout = timeout self.socket = socket.socket() - self.socket.connect((server, port)) + try: + self.socket.connect((server, port)) + except TimeoutError: + raise ExceptionForRestart self.socket.setblocking(0) self.line_buffer = [] self.rune_buffer = "" @@ -99,12 +129,9 @@ def handle_command(command, argument, notice, target, session): def addquote(): if not os.access(session.quotesfile, os.F_OK): - quotesfile = open(session.quotesfile, "w") - quotesfile.write("QUOTES FOR " + target + ":\n") - quotesfile.close() - quotesfile = open(session.quotesfile, "a") - quotesfile.write(argument + "\n") - quotesfile.close() + write_to_file(session.quotesfile, "w", + "QUOTES FOR " + target + ":\n") + write_to_file(session.quotesfile, "a", argument + "\n") quotesfile = open(session.quotesfile, "r") lines = quotesfile.readlines() quotesfile.close() @@ -153,12 +180,15 @@ def handle_command(command, argument, notice, target, session): if len(results) == 0: notice("NO QUOTES MATCHING QUERY") else: - for result in results: - notice("QUOTE #" + str(result[0] + 1) + " : " + result[1]) + if len(results) > 3: + notice("SHOWING 3 OF " + str(len(results)) + " QUOTES") + for result in results[:3]: + notice("QUOTE #" + str(result[0] + 1) + ": " + + result[1][:-1]) return else: i = random.randrange(len(lines)) - notice("QUOTE #" + str(i + 1) + ": " + lines[i]) + notice("QUOTE #" + str(i + 1) + ": " + lines[i][:-1]) def markov(): from random import choice, shuffle @@ -331,108 +361,98 @@ def handle_url(url, notice, show_url=False): class Session: - def __init__(self, io, username, nickname, channel, twtfile, dbdir): + def __init__(self, io, username, nickname, channel, twtfile, dbdir, rmlogs): self.io = io self.nickname = nickname + self.username = username self.channel = channel self.users_in_chan = [] self.twtfile = twtfile self.dbdir = dbdir + self.rmlogs = rmlogs self.io.send_line("NICK " + self.nickname) - self.io.send_line("USER " + username + " 0 * : ") + self.io.send_line("USER " + self.username + " 0 * : ") self.io.send_line("JOIN " + self.channel) hash_channel = hashlib.md5(self.channel.encode("utf-8")).hexdigest() self.chandir = self.dbdir + "/" + hash_channel + "/" + self.rawlogdir = self.chandir + "raw_logs/" self.logdir = self.chandir + "logs/" if not os.path.exists(self.logdir): os.makedirs(self.logdir) + if not os.path.exists(self.rawlogdir): + os.makedirs(self.rawlogdir) self.markovfile = self.chandir + "markovfeed" self.quotesfile = self.chandir + "quotes" def loop(self): def log(line): + if type(line) == str: + line = Line(":" + self.nickname + "!~" + self.username + + "@localhost" + " " + line) now = datetime.datetime.utcnow() - logfile = open(self.logdir + now.strftime("%Y-%m-%d") + ".txt", "a") form = "%Y-%m-%d %H:%M:%S UTC\t" - logfile.write(now.strftime(form) + " " + line + "\n") - logfile.close() - - def handle_privmsg(tokens): - - def handle_input(msg, target): - - def notice(msg): - self.io.send_line("NOTICE " + target + " :" + msg) - - matches = re.findall("(https?://[^\s>]+)", msg) - for i in range(len(matches)): - handle_url(matches[i], notice) - if "!" == msg[0]: - tokens = msg[1:].split() - argument = str.join(" ", tokens[1:]) - handle_command(tokens[0], argument, notice, target, self) - return - file = open(self.markovfile, "a") - file.write(msg + "\n") - file.close() - - sender = "" - for rune in tokens[0]: - if rune == "!": - break - if rune != ":": - sender += rune - receiver = "" - for rune in tokens[2]: - if rune == "!": - break - if rune != ":": - receiver += rune - target = sender - if receiver != self.nickname: - target = receiver - msg = str.join(" ", tokens[3:])[1:] - if target == self.channel: - log("<" + sender + "> " + msg) - handle_input(msg, target) - - def name_from_join_or_part(tokens): - token = tokens[0][1:] - index_cut = token.find("@") - index_ex = token.find("!") - if index_ex > 0 and index_ex < index_cut: - index_cut = index_ex - return token[:index_cut] + write_to_file(self.rawlogdir + now.strftime("%Y-%m-%d") + ".txt", + "a", now.strftime(form) + " " + line.line + "\n") + to_log = irclog.format_logline(line, self.channel) + if to_log != None: + write_to_file(self.logdir + now.strftime("%Y-%m-%d") + ".txt", + "a", now.strftime(form) + " " + to_log + "\n") + + def handle_privmsg(line): + + def notice(msg): + line = "NOTICE " + target + " :" + msg + self.io.send_line(line) + log(line) + + target = line.sender + if line.receiver != self.nickname: + target = line.receiver + msg = str.join(" ", line.tokens[3:])[1:] + matches = re.findall("(https?://[^\s>]+)", msg) + for i in range(len(matches)): + handle_url(matches[i], notice) + if "!" == msg[0]: + tokens = msg[1:].split() + argument = str.join(" ", tokens[1:]) + handle_command(tokens[0], argument, notice, target, self) + return + write_to_file(self.markovfile, "a", msg + "\n") + now = datetime.datetime.utcnow() + write_to_file(self.logdir + now.strftime("%Y-%m-%d") + ".txt", "a", + "-----------------------\n") while True: + if self.rmlogs > 0: + for f in os.listdir(self.logdir): + f = os.path.join(self.logdir, f) + if os.path.isfile(f) and \ + os.stat(f).st_mtime < time.time() - self.rmlogs: + os.remove(f) line = self.io.recv_line() if not line: continue - tokens = line.split(" ") - if len(tokens) > 1: - if tokens[0] == "PING": - self.io.send_line("PONG " + tokens[1]) - elif tokens[1] == "PRIVMSG": - handle_privmsg(tokens) - elif tokens[1] == "353": - names = tokens[5:] + line = Line(line) + log(line) + if len(line.tokens) > 1: + if line.tokens[0] == "PING": + self.io.send_line("PONG " + line.tokens[1]) + elif line.tokens[1] == "PRIVMSG": + handle_privmsg(line) + elif line.tokens[1] == "353": + names = line.tokens[5:] names[0] = names[0][1:] for i in range(len(names)): names[i] = names[i].replace("@", "").replace("+", "") self.users_in_chan += names - log(line) - elif tokens[1] == "JOIN": - name = name_from_join_or_part(tokens) - if name != self.nickname: - self.users_in_chan += [name] - log(line) - elif tokens[1] == "PART": - name = name_from_join_or_part(tokens) - del(self.users_in_chan[self.users_in_chan.index(name)]) - log(line) - else: - log(line) + elif line.tokens[1] == "JOIN" and line.sender != self.nickname: + self.users_in_chan += [line.sender] + elif line.tokens[1] == "PART": + del(self.users_in_chan[self.users_in_chan.index(line.sender)]) + elif line.tokens[1] == "NICK": + del(self.users_in_chan[self.users_in_chan.index(line.sender)]) + self.users_in_chan += [line.receiver] def parse_command_line_arguments(): @@ -446,7 +466,7 @@ def parse_command_line_arguments(): + str(PORT) + ")") parser.add_argument("-w, --wait", action="store", dest="timeout", type=int, default=TIMEOUT, - help="timeout in seconds after which to attempt " + + help="timeout in seconds after which to attempt " "reconnect (default: " + str(TIMEOUT) + ")") parser.add_argument("-u, --username", action="store", dest="username", default=USERNAME, help="username to use (default: " @@ -459,6 +479,10 @@ def parse_command_line_arguments(): + TWTFILE + ")") parser.add_argument("-d, --dbdir", action="store", dest="dbdir", default=DBDIR, help="directory to store DB files in") + parser.add_argument("-r, --rmlogs", action="store", dest="rmlogs", + type=int, default=0, + help="maximum age in seconds for logfiles in logs/ " + "(0 means: never delete, and is default)") parser.add_argument("CHANNEL", action="store", help="channel to join") opts, unknown = parser.parse_known_args() return opts @@ -471,7 +495,7 @@ while True: hash_server = hashlib.md5(opts.server.encode("utf-8")).hexdigest() dbdir = opts.dbdir + "/" + hash_server session = Session(io, opts.username, opts.nickname, opts.CHANNEL, - opts.twtfile, dbdir) + opts.twtfile, dbdir, opts.rmlogs) session.loop() except ExceptionForRestart: io.socket.close()