X-Git-Url: https://plomlompom.com/repos/?p=plomlombot-irc.git;a=blobdiff_plain;f=plomlombot.py;h=31ea88f90e56a34397f9379369d22cb2dede5b45;hp=7fa9194af8236e27fd7d547843fc1a1e3577dc8b;hb=39a97788307a22f4b398451df11b536dbcdc744b;hpb=19b5218056b02ed8454cdc095560856bdf48b8b9 diff --git a/plomlombot.py b/plomlombot.py index 7fa9194..31ea88f 100644 --- a/plomlombot.py +++ b/plomlombot.py @@ -12,7 +12,10 @@ servername = "" timeout = 240 username = "plomlombot" nickname = username -channel = "#zrolaps-test" +channel = "#zrolaps" + +class ExceptionForRestart(Exception): + pass class IO: @@ -26,7 +29,8 @@ class IO: def _pingtest(self): if self.last_pong + timeout < time.time(): - raise RuntimeError("server not answering") + print("SERVER NOT ANSWERING TO PING") + raise ExceptionForRestart self.send_line("PING " + nickname + " " + servername) def send_line(self, msg): @@ -42,7 +46,8 @@ class IO: while total_sent_len < msg_len: sent_len = self.socket.send(bytes(msg[total_sent_len:], "UTF-8")) if sent_len == 0: - raise RuntimeError("socket connection broken") + print("SOCKET CONNECTION BROKEN") + raise ExceptionForRestart total_sent_len += sent_len def recv_line_wrapped(self): @@ -56,7 +61,8 @@ class IO: self.last_pong = time.time() received_runes = self.socket.recv(1024).decode("UTF-8") if len(received_runes) == 0: - raise RuntimeError("socket connection broken") + print("SOCKET CONNECTION BROKEN") + raise ExceptionForRestart self.rune_buffer += received_runes lines_split = str.split(self.rune_buffer, "\r\n") self.line_buffer += lines_split[:-1] @@ -71,47 +77,76 @@ class IO: line) return line -io = IO(servernet, port) -io.send_line("NICK " + nickname) -io.send_line("USER " + username + " 0 * : ") -io.send_line("JOIN " + channel) -servername = io.recv_line().split(" ")[0][1:] -while 1: - line = io.recv_line() - if not line: - continue - tokens = line.split(" ") - if len(tokens) > 1: - if tokens[1] == "PRIVMSG": - 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 != nickname: - target = receiver - msg = str.join(" ", tokens[3:])[1:] +def init_connection(): + print("CONNECTING TO " + servernet) + io = IO(servernet, port) + io.send_line("NICK " + nickname) + io.send_line("USER " + username + " 0 * : ") + io.send_line("JOIN " + channel) + servername = io.recv_line().split(" ")[0][1:] + return io + +def lineparser_loop(): + + def act_on_privmsg(tokens): + + def url_check(msg): matches = re.findall("(https?://[^\s]+)", msg) for i in range(len(matches)): url = matches[i] - webpage = urllib.request.urlopen(url) - content_type = webpage.info().get_content_type() + try: + webpage = urllib.request.urlopen(url, timeout=15) + except urllib.error.HTTPError as error: + print("TROUBLE FOLLOWING URL: " + str(error)) + continue charset = webpage.info().get_content_charset() - if not charset or not content_type in ('text/html', 'text/xml', - 'application/xhtml+xml'): + if not charset: + charset="utf-8" + content_type = webpage.info().get_content_type() + if not content_type in ('text/html', 'text/xml', + 'application/xhtml+xml'): + print("TROUBLE INTERPRETING URL: bad content type " + + content_type) continue content = webpage.read().decode(charset) title = str(content).split('')[1].split('')[0] title = html.unescape(title) - io.send_line("PRIVMSG " - + target + " :page title for url: " + title) - if tokens[0] == "PING": - io.send_line("PONG " + tokens[1]) + io.send_line("PRIVMSG " + target + " :page title for url: " + + title) + + 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 != nickname: + target = receiver + msg = str.join(" ", tokens[3:])[1:] + url_check(msg) + + while 1: + line = io.recv_line() + if not line: + continue + tokens = line.split(" ") + if len(tokens) > 1: + if tokens[1] == "PRIVMSG": + act_on_privmsg(tokens) + if tokens[0] == "PING": + io.send_line("PONG " + tokens[1]) + +while 1: + try: + io = init_connection() + lineparser_loop() + except ExceptionForRestart: + io.socket.close() + continue