Actually add the extractor
[youtube-dl] / youtube_dl / extractor / viewster.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 from .common import InfoExtractor
5 from ..compat import (
6     compat_urllib_request,
7     compat_urllib_parse,
8 )
9 from ..utils import (
10     determine_ext,
11     int_or_none,
12     parse_iso8601,
13 )
14
15
16 class ViewsterIE(InfoExtractor):
17     _VALID_URL = r'http://(?:www\.)?viewster\.com/(?:serie|movie)/(?P<id>\d+-\d+-\d+)'
18     _TESTS = [{
19         # movie, Type=Movie
20         'url': 'http://www.viewster.com/movie/1140-11855-000/the-listening-project/',
21         'md5': '14d3cfffe66d57b41ae2d9c873416f01',
22         'info_dict': {
23             'id': '1140-11855-000',
24             'ext': 'flv',
25             'title': 'The listening Project',
26             'description': 'md5:bac720244afd1a8ea279864e67baa071',
27             'timestamp': 1214870400,
28             'upload_date': '20080701',
29             'duration': 4680,
30         },
31     }, {
32         # series episode, Type=Episode
33         'url': 'http://www.viewster.com/serie/1284-19427-001/the-world-and-a-wall/',
34         'md5': 'd5434c80fcfdb61651cc2199a88d6ba3',
35         'info_dict': {
36             'id': '1284-19427-001',
37             'ext': 'flv',
38             'title': 'The World and a Wall',
39             'description': 'md5:24814cf74d3453fdf5bfef9716d073e3',
40             'timestamp': 1428192000,
41             'upload_date': '20150405',
42             'duration': 1500,
43         },
44     }, {
45         # serie, Type=Serie
46         'url': 'http://www.viewster.com/serie/1303-19426-000/',
47         'info_dict': {
48             'id': '1303-19426-000',
49             'title': 'Is It Wrong to Try to Pick up Girls in a Dungeon?',
50             'description': 'md5:eeda9bef25b0d524b3a29a97804c2f11',
51         },
52         'playlist_count': 13,
53     }, {
54         # unfinished serie, no Type
55         'url': 'http://www.viewster.com/serie/1284-19427-000/baby-steps-season-2/',
56         'info_dict': {
57             'id': '1284-19427-000',
58             'title': 'Baby Steps—Season 2',
59             'description': 'md5:e7097a8fc97151e25f085c9eb7a1cdb1',
60         },
61         'playlist_mincount': 16,
62     }]
63
64     _ACCEPT_HEADER = 'application/json, text/javascript, */*; q=0.01'
65     _AUTH_TOKEN = '/YqhSYsx8EaU9Bsta3ojlA=='
66
67     def _download_json(self, url, video_id, note='Downloading JSON metadata', fatal=True):
68         request = compat_urllib_request.Request(url)
69         request.add_header('Accept', self._ACCEPT_HEADER)
70         request.add_header('Auth-token', self._AUTH_TOKEN)
71         return super(ViewsterIE, self)._download_json(request, video_id, note, fatal=fatal)
72
73     def _real_extract(self, url):
74         video_id = self._match_id(url)
75
76         info = self._download_json(
77             'https://public-api.viewster.com/search/%s' % video_id,
78             video_id, 'Downloading entry JSON')
79
80         entry_id = info.get('Id') or info['id']
81
82         # unfinished serie has no Type
83         if info.get('Type') in ['Serie', None]:
84             episodes = self._download_json(
85                 'https://public-api.viewster.com/series/%s/episodes' % entry_id,
86                 video_id, 'Downloading series JSON')
87             entries = [
88                 self.url_result(
89                     'http://www.viewster.com/movie/%s' % episode['OriginId'], 'Viewster')
90                 for episode in episodes]
91             title = (info.get('Title') or info['Synopsis']['Title']).strip()
92             description = info.get('Synopsis', {}).get('Detailed')
93             return self.playlist_result(entries, video_id, title, description)
94
95         formats = []
96         for media_type in ('application/f4m+xml', 'application/x-mpegURL'):
97             media = self._download_json(
98                 'https://public-api.viewster.com/movies/%s/video?mediaType=%s'
99                 % (entry_id, compat_urllib_parse.quote(media_type)),
100                 video_id, 'Downloading %s JSON' % media_type, fatal=False)
101             if not media:
102                 continue
103             video_url = media.get('Uri')
104             if not video_url:
105                 continue
106             ext = determine_ext(video_url)
107             if ext == 'f4m':
108                 video_url += '&' if '?' in video_url else '?'
109                 video_url += 'hdcore=3.2.0&plugin=flowplayer-3.2.0.1'
110                 formats.extend(self._extract_f4m_formats(
111                     video_url, video_id, f4m_id='hds'))
112             elif ext == 'm3u8':
113                 formats.extend(self._extract_m3u8_formats(
114                     video_url, video_id, 'mp4', m3u8_id='hls',
115                     fatal=False  # m3u8 sometimes fail
116                 ))
117             else:
118                 formats.append({
119                     'url': video_url,
120                 })
121         self._sort_formats(formats)
122
123         synopsis = info.get('Synopsis', {})
124         # Prefer title outside synopsis since it's less messy
125         title = (info.get('Title') or synopsis['Title']).strip()
126         description = synopsis.get('Detailed') or info.get('Synopsis', {}).get('Short')
127         duration = int_or_none(info.get('Duration'))
128         timestamp = parse_iso8601(info.get('ReleaseDate'))
129
130         return {
131             'id': video_id,
132             'title': title,
133             'description': description,
134             'timestamp': timestamp,
135             'duration': duration,
136             'formats': formats,
137         }