X-Git-Url: https://plomlompom.com/repos/?p=plomlombot-irc.git;a=blobdiff_plain;f=plomlombot.py;h=aa7061cac656f3f6b5f768e40787ccb6fbc475c4;hp=b7829d2b9992ec230d5602772b1959641a52d0fd;hb=42c69ab892b5a9d2dc2c68a059e7b506a00197a0;hpb=65f8d561ee89665bd62c134cdbd1cd978edcecdf diff --git a/plomlombot.py b/plomlombot.py index b7829d2..aa7061c 100755 --- a/plomlombot.py +++ b/plomlombot.py @@ -24,6 +24,12 @@ 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 @@ -123,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() @@ -177,9 +180,11 @@ 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][-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)) @@ -334,17 +339,22 @@ def handle_url(url, notice, show_url=False): return True try: - r = requests.get(url, timeout=15) + r = requests.get(url, timeout=5, stream=True) + r.raw.decode_content = True + text = r.raw.read(10000000+1) + if len(text) > 10000000: + raise ValueError('Too large a response') except (requests.exceptions.TooManyRedirects, requests.exceptions.ConnectionError, requests.exceptions.InvalidURL, UnicodeError, + ValueError, requests.exceptions.InvalidSchema) as error: notice("TROUBLE FOLLOWING URL: " + str(error)) return if mobile_twitter_hack(url): return - title = bs4.BeautifulSoup(r.text, "html5lib").title + title = bs4.BeautifulSoup(text, "html5lib").title if title and title.string: prefix = "PAGE TITLE: " if show_url: @@ -386,15 +396,13 @@ class Session: line = Line(":" + self.nickname + "!~" + self.username + "@localhost" + " " + line) now = datetime.datetime.utcnow() - logfile = open(self.rawlogdir + now.strftime("%Y-%m-%d") + ".txt", "a") form = "%Y-%m-%d %H:%M:%S UTC\t" - logfile.write(now.strftime(form) + " " + line.line + "\n") - logfile.close() + 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: - logfile = open(self.logdir + now.strftime("%Y-%m-%d") + ".txt", "a") - logfile.write(now.strftime(form) + " " + to_log + "\n") - logfile.close() + write_to_file(self.logdir + now.strftime("%Y-%m-%d") + ".txt", + "a", now.strftime(form) + " " + to_log + "\n") def handle_privmsg(line): @@ -415,10 +423,11 @@ class Session: 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() + 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):