]> jfr.im git - erebus.git/blobdiff - modules/urls.py
make url titles be sent back on one line
[erebus.git] / modules / urls.py
index 4c4bf6b54799926a80c0cd825c9c79983036ba3d..72bdb99c8eeb88a2cdb79194dd6f37b772910f18 100644 (file)
@@ -1,4 +1,5 @@
 # Erebus IRC bot - Author: Erebus Team
+# vim: fileencoding=utf-8
 # URL Checker
 # This file is released into the public domain; see http://unlicense.org/
 
@@ -20,8 +21,21 @@ modstart = lib.modstart
 modstop = lib.modstop
 
 # module code
-import re, urllib2, urlparse, json, HTMLParser
-from BeautifulSoup import BeautifulSoup
+import sys
+if sys.version_info.major < 3:
+       import urllib2
+       import urlparse
+       import HTMLParser
+       from BeautifulSoup import BeautifulSoup
+       import re
+else:
+       import urllib.request as urllib2
+       import urllib.parse as urlparse
+       import html.parser as HTMLParser
+       from bs4 import BeautifulSoup
+       import re
+
+import re, json
 
 html_parser = HTMLParser.HTMLParser()
 
@@ -85,14 +99,15 @@ def privmsg_hook(bot, textline):
        except IndexError:
                line = ''
 
+       responses = []
        for match in url_regex.findall(line):
                if match:
-                       response = goturl(match)
-                       if response is not None:
-                               bot.msg(chan, response)
+                       responses.append(goturl(match))
+       if len(responses) > 0:
+               bot.msg(chan, ' | '.join(responses), True)
 
 def unescape(line):
-       return html_parser.unescape(line)
+       return re.sub('\s+', ' ', html_parser.unescape(line))
 
 def gotspotify(type, track):
        url = 'http://ws.spotify.com/lookup/1/?uri=spotify:%s:%s' % (type, track)
@@ -151,7 +166,9 @@ def goturl(url):
        request = urllib2.Request(url)
        opener = urllib2.build_opener(SmartRedirectHandler())
        try:
-               soup = BeautifulSoup(opener.open(request, timeout=2))
+               soup = BeautifulSoup(opener.open(request, timeout=0.5))
                return unescape('Title: %s' % (soup.title.string))
-       except:
-               return None
+       except urllib2.HTTPError as e:
+               return 'Error: %s %s' % (e.code, e.reason)
+       except Exception as e:
+               return 'Error: %r' % (e.message)