Added youtube search plugin
This commit is contained in:
parent
d8343fcd6c
commit
08dfdb746d
|
@ -11,41 +11,46 @@ locale.setlocale(locale.LC_ALL, '')
|
||||||
youtube_re = re.compile(r'youtube.*?v=([-_a-z0-9]+)', flags=re.I)
|
youtube_re = re.compile(r'youtube.*?v=([-_a-z0-9]+)', flags=re.I)
|
||||||
url = 'http://gdata.youtube.com/feeds/api/videos/%s?v=2&alt=jsonc'
|
url = 'http://gdata.youtube.com/feeds/api/videos/%s?v=2&alt=jsonc'
|
||||||
|
|
||||||
#@hook.command(hook=r'(.*)', prefix=False)
|
def get_video_description(vid):
|
||||||
|
print vid
|
||||||
|
j = json.load(urllib2.urlopen(url % vid))
|
||||||
|
|
||||||
|
if j.get('error'):
|
||||||
|
return
|
||||||
|
|
||||||
|
j = j['data']
|
||||||
|
|
||||||
|
out = '\x02%s\x02' % j['title']
|
||||||
|
|
||||||
|
out += ' - length \x02'
|
||||||
|
length = j['duration']
|
||||||
|
if length / 3600: # > 1 hour
|
||||||
|
out += '%dh ' % (length / 3600)
|
||||||
|
if length / 60:
|
||||||
|
out += '%dm ' % (length / 60 % 60)
|
||||||
|
out += "%ds\x02" % (length % 60)
|
||||||
|
|
||||||
|
if 'rating' in j:
|
||||||
|
out += ' - rated \x02%.2f/5.0\x02 (%d)' % (j['rating'],
|
||||||
|
j['ratingCount'])
|
||||||
|
|
||||||
|
|
||||||
|
if 'viewCount' in j:
|
||||||
|
out += ' - \x02%s\x02 views' % locale.format('%d',
|
||||||
|
j['viewCount'], 1)
|
||||||
|
|
||||||
|
upload_time = time.strptime(j['uploaded'], "%Y-%m-%dT%H:%M:%S.000Z")
|
||||||
|
out += ' - \x02%s\x02 on \x02%s\x02' % (j['uploader'],
|
||||||
|
time.strftime("%Y.%m.%d", upload_time))
|
||||||
|
|
||||||
|
if 'contentRating' in j:
|
||||||
|
out += ' - \x034NSFW\x02'
|
||||||
|
|
||||||
|
return out
|
||||||
|
|
||||||
|
|
||||||
|
@hook.command(hook=r'(.*)', prefix=False)
|
||||||
def youtube(inp):
|
def youtube(inp):
|
||||||
m = youtube_re.search(inp)
|
m = youtube_re.search(inp)
|
||||||
if m:
|
if m:
|
||||||
j = json.load(urllib2.urlopen(url % m.group(1)))
|
return get_video_description(m.group(1))
|
||||||
|
|
||||||
if j.get('error'):
|
|
||||||
return
|
|
||||||
|
|
||||||
j = j['data']
|
|
||||||
|
|
||||||
out = '\x02%s\x02' % j['title']
|
|
||||||
|
|
||||||
out += ' - length \x02'
|
|
||||||
length = j['duration']
|
|
||||||
if length / 3600: # > 1 hour
|
|
||||||
out += '%dh ' % (length / 3600)
|
|
||||||
if length / 60:
|
|
||||||
out += '%dm ' % (length / 60 % 60)
|
|
||||||
out += "%ds\x02" % (length % 60)
|
|
||||||
|
|
||||||
if 'rating' in j:
|
|
||||||
out += ' - rated \x02%.2f/5.0\x02 (%d)' % (j['rating'],
|
|
||||||
j['ratingCount'])
|
|
||||||
|
|
||||||
|
|
||||||
if 'viewCount' in j:
|
|
||||||
out += ' - \x02%s\x02 views' % locale.format('%d',
|
|
||||||
j['viewCount'], 1)
|
|
||||||
|
|
||||||
upload_time = time.strptime(j['uploaded'], "%Y-%m-%dT%H:%M:%S.000Z")
|
|
||||||
out += ' - \x02%s\x02 on \x02%s\x02' % (j['uploader'],
|
|
||||||
time.strftime("%Y.%m.%d", upload_time))
|
|
||||||
|
|
||||||
if 'contentRating' in j:
|
|
||||||
out += ' - \x034NSFW\x02'
|
|
||||||
|
|
||||||
return out
|
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
import json
|
||||||
|
import locale
|
||||||
|
import re
|
||||||
|
import time
|
||||||
|
import urllib2
|
||||||
|
from urllib import quote_plus
|
||||||
|
|
||||||
|
from util import hook
|
||||||
|
from youtube import get_video_description
|
||||||
|
|
||||||
|
locale.setlocale(locale.LC_ALL, '')
|
||||||
|
|
||||||
|
url = "http://gdata.youtube.com/feeds/api/videos?q=%s&max-results=1&alt=json"
|
||||||
|
video_url = "http://youtube.com/watch?v=%s"
|
||||||
|
|
||||||
|
@hook.command
|
||||||
|
@hook.command('y')
|
||||||
|
def youtube(inp):
|
||||||
|
'.youtube <query> -- returns the first YouTube search result for <query>'
|
||||||
|
inp = quote_plus(inp)
|
||||||
|
j = json.load(urllib2.urlopen(url % (inp)))
|
||||||
|
if j.get('error'):
|
||||||
|
return
|
||||||
|
|
||||||
|
try:
|
||||||
|
vid = j['feed']['entry'][0]['id']['$t']
|
||||||
|
#youtube returns a gdata url for this some reason. The videoid has to be stripped out
|
||||||
|
vid = vid[vid.rfind('/')+1:]
|
||||||
|
return get_video_description(vid) + " " + video_url%vid
|
||||||
|
except:
|
||||||
|
return
|
Loading…
Reference in New Issue