First :D
This commit is contained in:
commit
37588421f3
100 changed files with 22673 additions and 0 deletions
90
plugins/youtube.py
Normal file
90
plugins/youtube.py
Normal file
|
@ -0,0 +1,90 @@
|
|||
import locale
|
||||
import re
|
||||
import time
|
||||
|
||||
from util import hook, http
|
||||
|
||||
|
||||
locale.setlocale(locale.LC_ALL, '')
|
||||
|
||||
youtube_re = (r'(?:youtube.*?(?:v=|/v/)|youtu\.be/|yooouuutuuube.*?id=)'
|
||||
'([-_a-z0-9]+)', 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'
|
||||
video_url = "http://youtube.com/watch?v=%s"
|
||||
|
||||
|
||||
def get_video_description(vid_id):
|
||||
j = http.get_json(url % vid_id)
|
||||
|
||||
if j.get('error'):
|
||||
return
|
||||
|
||||
j = j['data']
|
||||
out = {}
|
||||
out["title"] = '%s' % j['title']
|
||||
|
||||
if not j.get('duration'):
|
||||
return out
|
||||
|
||||
length = j['duration']
|
||||
ti = ""
|
||||
if length / 3600: # > 1 hour
|
||||
ti += '%dh ' % (length / 3600)
|
||||
if length / 60:
|
||||
ti += '%dm ' % (length / 60 % 60)
|
||||
out["length"] = ti
|
||||
#out += "%ds\x02" % (length % 60)
|
||||
|
||||
if 'ratingCount' in j and 'likeCount' in j:
|
||||
out["likes"] = int(j['likeCount'])
|
||||
out["dislikes"] = int(j['ratingCount']) - int(j['likeCount'])
|
||||
|
||||
if 'rating' in j:
|
||||
out["rating"] = (j['rating'])
|
||||
|
||||
if 'viewCount' in j:
|
||||
out["views"] = j['viewCount']
|
||||
|
||||
upload_time = time.strptime(j['uploaded'], "%Y-%m-%dT%H:%M:%S.000Z")
|
||||
out["uploadtime"] = (j['uploader'])
|
||||
|
||||
|
||||
# title. uploader. length. upload date.
|
||||
give = '\x02' + j[u'title'] + '\x02'
|
||||
give += " - Length: " + GetInHMS(j['duration'])
|
||||
give += " - "+ j[u'uploaded'][:10] + " by " + j[u'uploader']
|
||||
return give
|
||||
|
||||
def GetInHMS(seconds):
|
||||
hours = seconds / 3600
|
||||
seconds -= 3600*hours
|
||||
minutes = seconds / 60
|
||||
seconds -= 60*minutes
|
||||
if hours == 0:
|
||||
return "%02d:%02d" % (minutes, seconds)
|
||||
return "%02d:%02d:%02d" % (hours, minutes, seconds)
|
||||
|
||||
|
||||
@hook.regex(*youtube_re)
|
||||
def youtube_url(match):
|
||||
return get_video_description(match.group(1))
|
||||
|
||||
@hook.command('y')
|
||||
@hook.command
|
||||
def youtube(inp):
|
||||
'.youtube <query> -- returns the first YouTube search result for <query>'
|
||||
|
||||
j = http.get_json(search_api_url, q=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
|
Reference in a new issue