[unauthorizedtv] Require cid in URL

This commit is contained in:
Kevin G 2019-06-09 03:17:44 -07:00
parent 8a05ffa9c0
commit efc73896df

View File

@ -9,7 +9,7 @@ from ..compat import (
class UnauthorizedTvIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?unauthorized\.tv/programs/(?P<id>.+)'
_VALID_URL = r'https?://(?:www\.)?unauthorized\.tv/programs/.*?cid=(?P<id>\d+)'
_TEST = {
'url': 'https://www.unauthorized.tv/programs/owens-shorts?cid=231148',
'md5': 'dd9a5b81b9704c68942c2584086dd73f',
@ -22,10 +22,8 @@ class UnauthorizedTvIE(InfoExtractor):
def _real_extract(self, url):
video_id = self._match_id(url)
cid = None
if "?cid=" in video_id:
cid = int(video_id[video_id.find('=') + 1:])
program = url[url.rfind("/")+1:url.find("?cid=")]
html = self._download_webpage(url, video_id)
@ -37,28 +35,14 @@ class UnauthorizedTvIE(InfoExtractor):
'X-CSRF-Token': csrf_token,
}
chaptersJson = self._download_json(
'https://www.unauthorized.tv/api/contents/%s' % video_id,
video_id,
headers=headers
)
chapters = '&ids[]='.join([compat_str(x) for x in chaptersJson['chapters']])
metadata = self._download_json(
'https://www.unauthorized.tv/api/chapters?ids[]=%s' % chapters,
'https://www.unauthorized.tv/api/chapters?ids[]=%s' % video_id,
video_id,
headers=headers
)
if cid is None:
video_title = metadata[0]['title']
video_url = metadata[0]['subject']['versions']['hls']
else:
for item in metadata:
if item["id"] == cid:
video_title = item['title']
video_url = item['subject']['versions']['hls']
return {
'id': video_id,