83 lines
2.0 KiB
Python
83 lines
2.0 KiB
Python
import json
|
|
import locale
|
|
import re
|
|
import time
|
|
import urllib2
|
|
|
|
from util import hook
|
|
from urllib import quote_plus
|
|
|
|
|
|
locale.setlocale(locale.LC_ALL, '')
|
|
|
|
youtube_re = re.compile(r'(?:youtube.*?(?:v=|/v/)|youtu\.be/|yooouuutuuube.*?id=)([-_a-z0-9]+)', flags=re.I)
|
|
|
|
base_url = 'http://gdata.youtube.com/feeds/api/'
|
|
url = base_url + 'videos/%s?v=2&alt=jsonc'
|
|
search_api_url = base_url + 'videos?v=2&alt=jsonc&max-results=1&q=%s'
|
|
video_url = "http://youtube.com/watch?v=%s"
|
|
|
|
|
|
def get_video_description(vid_id):
|
|
j = json.load(urllib2.urlopen(url % vid_id))
|
|
|
|
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_url(inp):
|
|
m = youtube_re.search(inp)
|
|
if m:
|
|
return get_video_description(m.group(1))
|
|
|
|
|
|
@hook.command('y')
|
|
@hook.command
|
|
def youtube(inp):
|
|
'.youtube <query> -- returns the first YouTube search result for <query>'
|
|
if not inp:
|
|
return youtube.__doc__
|
|
|
|
inp = quote_plus(inp)
|
|
j = json.load(urllib2.urlopen(search_api_url % (inp)))
|
|
|
|
if 'error' in j:
|
|
return 'error performing search'
|
|
|
|
if j['data']['totalItems'] == 0:
|
|
return 'no results found'
|
|
|
|
vid_id = j['data']['items'][0]['id']
|
|
|
|
return get_video_description(vid_id) + " - " + video_url % vid_id
|