]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/tubitv.py
[extractor] Add `_perform_login` function (#2943)
[yt-dlp.git] / yt_dlp / extractor / tubitv.py
CommitLineData
5196b988
NJ
1# coding: utf-8
2from __future__ import unicode_literals
3
5196b988
NJ
4import re
5
6from .common import InfoExtractor
5196b988
NJ
7from ..utils import (
8 ExtractorError,
9 int_or_none,
b5be6dd5 10 js_to_json,
5c2266df 11 sanitized_Request,
6e6bc8da 12 urlencode_postdata,
5196b988
NJ
13)
14
15
16class TubiTvIE(InfoExtractor):
b5be6dd5
A
17 _VALID_URL = r'''(?x)
18 (?:
19 tubitv:|
20 https?://(?:www\.)?tubitv\.com/(?:video|movies|tv-shows)/
21 )
22 (?P<id>[0-9]+)'''
5196b988
NJ
23 _LOGIN_URL = 'http://tubitv.com/login'
24 _NETRC_MACHINE = 'tubitv'
68f17a9c 25 _GEO_COUNTRIES = ['US']
4fe4bda2 26 _TESTS = [{
9260cf1d 27 'url': 'http://tubitv.com/video/283829/the_comedian_at_the_friday',
f4dfa9a5 28 'md5': '43ac06be9326f41912dc64ccf7a80320',
5196b988 29 'info_dict': {
9260cf1d 30 'id': '283829',
5196b988 31 'ext': 'mp4',
9260cf1d 32 'title': 'The Comedian at The Friday',
33 'description': 'A stand up comedian is forced to look at the decisions in his life while on a one week trip to the west coast.',
f4dfa9a5 34 'uploader_id': 'bc168bee0d18dd1cb3b86c68706ab434',
5196b988 35 },
4fe4bda2
RA
36 }, {
37 'url': 'http://tubitv.com/tv-shows/321886/s01_e01_on_nom_stories',
38 'only_matching': True,
39 }, {
40 'url': 'http://tubitv.com/movies/383676/tracker',
41 'only_matching': True,
29f7c58a 42 }, {
43 'url': 'https://tubitv.com/movies/560057/penitentiary?start=true',
44 'info_dict': {
45 'id': '560057',
46 'ext': 'mp4',
47 'title': 'Penitentiary',
48 'description': 'md5:8d2fc793a93cc1575ff426fdcb8dd3f9',
49 'uploader_id': 'd8fed30d4f24fcb22ec294421b9defc2',
50 'release_year': 1979,
51 },
52 'params': {
53 'skip_download': True,
54 },
4fe4bda2 55 }]
5196b988 56
52efa4b3 57 def _perform_login(self, username, password):
5196b988
NJ
58 self.report_login()
59 form_data = {
60 'username': username,
61 'password': password,
62 }
6e6bc8da 63 payload = urlencode_postdata(form_data)
5c2266df 64 request = sanitized_Request(self._LOGIN_URL, payload)
5196b988
NJ
65 request.add_header('Content-Type', 'application/x-www-form-urlencoded')
66 login_page = self._download_webpage(
67 request, None, False, 'Wrong login info')
68 if not re.search(r'id="tubi-logout"', login_page):
69 raise ExtractorError(
70 'Login failed (invalid username/password)', expected=True)
71
5196b988
NJ
72 def _real_extract(self, url):
73 video_id = self._match_id(url)
9260cf1d 74 video_data = self._download_json(
75 'http://tubitv.com/oz/videos/%s/content' % video_id, video_id)
f4dfa9a5 76 title = video_data['title']
5196b988 77
cf9d6cfb 78 formats = []
79 url = video_data['url']
80 # URL can be sometimes empty. Does this only happen when there is DRM?
81 if url:
82 formats = self._extract_m3u8_formats(
83 self._proto_relative_url(url),
84 video_id, 'mp4', 'm3u8_native')
19dbaeec 85 self._sort_formats(formats)
5196b988 86
f4dfa9a5
RA
87 thumbnails = []
88 for thumbnail_url in video_data.get('thumbnails', []):
89 if not thumbnail_url:
90 continue
91 thumbnails.append({
92 'url': self._proto_relative_url(thumbnail_url),
93 })
94
9260cf1d 95 subtitles = {}
f4dfa9a5
RA
96 for sub in video_data.get('subtitles', []):
97 sub_url = sub.get('url')
9260cf1d 98 if not sub_url:
99 continue
f4dfa9a5
RA
100 subtitles.setdefault(sub.get('lang', 'English'), []).append({
101 'url': self._proto_relative_url(sub_url),
9260cf1d 102 })
103
febff4c1
B
104 season_number, episode_number, episode_title = self._search_regex(
105 r'^S(\d+):E(\d+) - (.+)', title, 'episode info', fatal=False, group=(1, 2, 3), default=(None, None, None))
106
5196b988
NJ
107 return {
108 'id': video_id,
109 'title': title,
110 'formats': formats,
9260cf1d 111 'subtitles': subtitles,
f4dfa9a5
RA
112 'thumbnails': thumbnails,
113 'description': video_data.get('description'),
114 'duration': int_or_none(video_data.get('duration')),
115 'uploader_id': video_data.get('publisher_id'),
29f7c58a 116 'release_year': int_or_none(video_data.get('year')),
febff4c1
B
117 'season_number': int_or_none(season_number),
118 'episode_number': int_or_none(episode_number),
119 'episode_title': episode_title
5196b988 120 }
b5be6dd5
A
121
122
123class TubiTvShowIE(InfoExtractor):
124 _VALID_URL = r'https?://(?:www\.)?tubitv\.com/series/[0-9]+/(?P<show_name>[^/?#]+)'
125 _TESTS = [{
126 'url': 'https://tubitv.com/series/3936/the-joy-of-painting-with-bob-ross?start=true',
127 'playlist_mincount': 390,
128 'info_dict': {
129 'id': 'the-joy-of-painting-with-bob-ross',
130 }
131 }]
132
133 def _entries(self, show_url, show_name):
134 show_webpage = self._download_webpage(show_url, show_name)
febff4c1 135
b5be6dd5 136 show_json = self._parse_json(self._search_regex(
febff4c1
B
137 r'window\.__data\s*=\s*({[^<]+});\s*</script>',
138 show_webpage, 'data'), show_name, transform_source=js_to_json)['video']
139
b5be6dd5
A
140 for episode_id in show_json['fullContentById'].keys():
141 yield self.url_result(
142 'tubitv:%s' % episode_id,
143 ie=TubiTvIE.ie_key(), video_id=episode_id)
144
145 def _real_extract(self, url):
5ad28e7f 146 show_name = self._match_valid_url(url).group('show_name')
b5be6dd5 147 return self.playlist_result(self._entries(url, show_name), playlist_id=show_name)