[toggle] Style
[youtube-dl] / youtube_dl / extractor / togglesg.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import json
5
6 from .common import InfoExtractor
7 from ..utils import (
8     determine_ext,
9     ExtractorError,
10     int_or_none,
11     parse_iso8601,
12     sanitized_Request,
13 )
14
15
16 class ToggleSgIE(InfoExtractor):
17     IE_NAME = 'togglesg'
18     _VALID_URL = r'https?://video\.toggle\.sg/(?:en|zh)/(?:series|clips|movies)/.+?/(?P<id>[0-9]+)'
19     _TESTS = [{
20         'url': 'http://video.toggle.sg/en/series/lion-moms-tif/trailers/lion-moms-premier/343115',
21         'info_dict': {
22             'id': '343115',
23             'ext': 'mp4',
24             'title': 'Lion Moms Premiere',
25             'description': 'md5:aea1149404bff4d7f7b6da11fafd8e6b',
26             'upload_date': '20150910',
27             'timestamp': 1441858274,
28         },
29         'params': {
30             'skip_download': 'm3u8 download',
31         }
32     }, {
33         'note': 'DRM-protected video',
34         'url': 'http://video.toggle.sg/en/movies/dug-s-special-mission/341413',
35         'info_dict': {
36             'id': '341413',
37             'ext': 'wvm',
38             'title': 'Dug\'s Special Mission',
39             'description': 'md5:e86c6f4458214905c1772398fabc93e0',
40             'upload_date': '20150827',
41             'timestamp': 1440644006,
42         },
43         'params': {
44             'skip_download': 'DRM-protected wvm download',
45         }
46     }, {
47         'note': 'm3u8 links are geo-restricted, but Android/mp4 is okay',
48         'url': 'http://video.toggle.sg/en/series/28th-sea-games-5-show/ep11/332861',
49         'info_dict': {
50             'id': '332861',
51             'ext': 'mp4',
52             'title': '28th SEA Games (5 Show) -  Episode  11',
53             'description': 'md5:3cd4f5f56c7c3b1340c50a863f896faa',
54             'upload_date': '20150605',
55             'timestamp': 1433480166,
56         },
57         'params': {
58             'skip_download': 'DRM-protected wvm download',
59         },
60         'skip': 'm3u8 links are geo-restricted'
61     }, {
62         'url': 'http://video.toggle.sg/en/clips/seraph-sun-aloysius-will-suddenly-sing-some-old-songs-in-high-pitch-on-set/343331',
63         'only_matching': True,
64     }, {
65         'url': 'http://video.toggle.sg/zh/series/zero-calling-s2-hd/ep13/336367',
66         'only_matching': True,
67     }, {
68         'url': 'http://video.toggle.sg/en/series/vetri-s2/webisodes/jeeva-is-an-orphan-vetri-s2-webisode-7/342302',
69         'only_matching': True,
70     }, {
71         'url': 'http://video.toggle.sg/en/movies/seven-days/321936',
72         'only_matching': True,
73     }]
74
75     _FORMAT_PREFERENCES = {
76         'wvm-STBMain': -10,
77         'wvm-iPadMain': -20,
78         'wvm-iPhoneMain': -30,
79         'wvm-Android': -40,
80     }
81     _API_USER = 'tvpapi_147'
82     _API_PASS = '11111'
83
84     def _real_extract(self, url):
85         video_id = self._match_id(url)
86
87         webpage = self._download_webpage(url, video_id, note='Downloading video page')
88
89         api_user = self._search_regex(
90             r'apiUser:\s*"([^"]+)"', webpage, 'apiUser', default=self._API_USER)
91         api_pass = self._search_regex(
92             r'apiPass:\s*"([^"]+)"', webpage, 'apiPass', default=self._API_PASS)
93
94         params = {
95             'initObj': {
96                 'Locale': {
97                     'LocaleLanguage': '',
98                     'LocaleCountry': '',
99                     'LocaleDevice': '',
100                     'LocaleUserState': 0
101                 },
102                 'Platform': 0,
103                 'SiteGuid': 0,
104                 'DomainID': '0',
105                 'UDID': '',
106                 'ApiUser': api_user,
107                 'ApiPass': api_pass
108             },
109             'MediaID': video_id,
110             'mediaType': 0,
111         }
112
113         req = sanitized_Request(
114             'http://tvpapi.as.tvinci.com/v2_9/gateways/jsonpostgw.aspx?m=GetMediaInfo',
115             json.dumps(params).encode('utf-8'))
116         info = self._download_json(req, video_id, 'Downloading video info json')
117
118         title = info['MediaName']
119         duration = int_or_none(info.get('Duration'))
120         thumbnail = info.get('PicURL')
121         description = info.get('Description')
122         created_at = parse_iso8601(info.get('CreationDate') or None)
123         formats = []
124
125         for video_file in info.get('Files', []):
126             ext = determine_ext(video_file['URL'])
127             vid_format = video_file['Format'].replace(' ', '')
128             # if geo-restricted, m3u8 is inaccessible, but mp4 is okay
129             if ext == 'm3u8':
130                 m3u8_formats = self._extract_m3u8_formats(
131                     video_file['URL'], video_id, ext='mp4', m3u8_id=vid_format,
132                     note='Downloading %s m3u8 information' % vid_format,
133                     errnote='Failed to download %s m3u8 information' % vid_format,
134                     fatal=False
135                 )
136                 if m3u8_formats:
137                     formats.extend(m3u8_formats)
138             if ext in ['mp4', 'wvm']:
139                 # wvm are drm-protected files
140                 formats.append({
141                     'ext': ext,
142                     'url': video_file['URL'],
143                     'format_id': vid_format,
144                     'preference': self._FORMAT_PREFERENCES.get(ext + '-' + vid_format) or -1,
145                     'format_note': 'DRM-protected video' if ext == 'wvm' else None
146                 })
147
148         if not formats:
149             # Most likely because geo-blocked
150             raise ExtractorError('No downloadable videos found', expected=True)
151
152         self._sort_formats(formats)
153
154         return {
155             'id': video_id,
156             'title': title,
157             'description': description,
158             'duration': duration,
159             'timestamp': created_at,
160             'thumbnail': thumbnail,
161             'formats': formats,
162         }