1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
info = {
'author': 'Jon Bergli Heier',
'title': 'URL Titles',
'description': 'Fetches the title tags off of URLs.',
}
import re, urllib2, htmlentitydefs, gzip, cStringIO, spotimeta, time
from PIL import ImageFile
class Module:
re_http = re.compile(r'(http://[^\ ]+)')
re_spotify = re.compile(r'spotify:(?:track|artist|album):[\w]{22}')
re_title = re.compile(r'<title[^>]*?>(.*?)</title>', re.S | re.I)
metadata = spotimeta.Metadata(cache = {})
def __init__(self, bot):
self.irc = bot
self.irc.register_callback(self)
def spotify(self, s):
try:
data = self.metadata.lookup(s)
except:
return 'Failed to fetch metadata from spotify.'
if data['type'] == 'artist':
return 'Spotify artist: %s' % data['result']['name']
elif data['type'] == 'track':
return 'Spotify track: %s - %s (%s)' % (data['result']['artist']['name'], data['result']['name'], data['result']['album']['name'])
elif data['type'] == 'album':
return u'Spotify album: %s (%d) by %s' % (data['result']['name'], data['result']['released'],
', '.join([x['name'] for x in data['result']['artists']]))
def get_titles(self, s):
def parse_url(url):
s = url[7:].split('/', 1)[0:]
host = s[0]
path = '/' if len(s) == 1 else '/' + s[1]
return host, path
def unescape(text):
def fixup(m):
text = m.group(0)
if text[:2] == "&#":
# character reference
try:
if text[:3] == "&#x":
return unichr(int(text[3:-1], 16)).encode('utf-8')
else:
return unichr(int(text[2:-1])).encode('utf-8')
except ValueError:
pass
else:
# named entity
try:
text = unichr(htmlentitydefs.name2codepoint[text[1:-1]]).encode('utf-8')
except KeyError:
pass
return text # leave as is
return re.sub("&#?\w+;", fixup, text)
def format_text(s):
s = s.replace('\n', ' ').replace('\r', ' ').replace('\t', ' ')
while ' ' in s:
s = s.replace(' ', ' ')
s = unescape(s)
return s
m = self.re_http.findall(s)
titles = []
for url in m:
if 'open.spotify.com' in url:
titles.append(self.spotify(url).encode('utf8'))
continue
t = time.time()
try:
u = urllib2.urlopen(url)
except:
return
#enc = ct.split('encoding=')
#if len(enc) == 2:
#enc = enc[1]
#else:
#enc = None
if u.headers['content-type'].startswith('text/html'):
#s = u.read()
if 'content-encoding' in u.headers and u.headers['content-encoding'] == 'gzip':
s = cStringIO.StringIO(u.read())
s.seek(0)
s = gzip.GzipFile(fileobj = s).read()
m = self.re_title.search(s)
else:
s = ''
m = None
buf = u.read(1024)
while buf and time.time() - t < 5.0:
s += buf
m = self.re_title.search(s)
if m:
break
buf = u.read(1024)
if m:
titles.append(m.groups()[0])
elif u.headers['content-type'] in ('image/gif', 'image/png', 'image/jpeg'):
def pretty_size(size):
suffixes = (('B', 2**10), ('KiB', 2**20), ('MiB', 2**30), ('GiB', 2**40), ('TiB', 2**50))
for suf, lim in suffixes:
if size > lim:
continue
else:
return '%s %s' % (str(round(size/float(lim/2**10), 2)), suf)
p = ImageFile.Parser()
size = 0
while time.time() - t < 5.0:
s = u.read(1024)
size += len(s)
if not s:
break
p.feed(s)
try:
im = None
im = p.close()
titles.append('%s image: %dx%d (%s)' % ((im.format,) + tuple(im.size) + (pretty_size(size),)))
except:
pass
finally:
del im
u.close()
spotify_links = self.re_spotify.findall(s)
for sp in spotify_links:
titles.append(self.spotify(sp).encode('utf8'))
if len(titles) == 0:
return
elif len(titles) == 1:
s = format_text(titles[0])
else:
s = ''
for i in range(len(titles)):
s += '\002[%d]\002 %s ' % (i+1, format_text(titles[i]))
return s.strip()
def privmsg(self, nick, channel, msg):
titles = self.get_titles(msg)
if titles:
self.irc.msg(channel if not channel == self.irc.nickname else nick.split('!')[0], titles)
if __name__ == '__main__':
import sys
m = Module(None)
print m.get_titles(' '.join(sys.argv[1:]))
|