[gdcvault] Remove dead code
[youtube-dl] / youtube_dl / extractor / gdcvault.py
1 from __future__ import unicode_literals
2
3 import re
4
5 from .common import InfoExtractor
6 from ..compat import (
7     compat_urllib_parse,
8     compat_urllib_request,
9 )
10 from ..utils import remove_end
11
12
13 class GDCVaultIE(InfoExtractor):
14     _VALID_URL = r'https?://(?:www\.)?gdcvault\.com/play/(?P<id>\d+)/(?P<name>(\w|-)+)'
15     _TESTS = [
16         {
17             'url': 'http://www.gdcvault.com/play/1019721/Doki-Doki-Universe-Sweet-Simple',
18             'md5': '7ce8388f544c88b7ac11c7ab1b593704',
19             'info_dict': {
20                 'id': '1019721',
21                 'ext': 'mp4',
22                 'title': 'Doki-Doki Universe: Sweet, Simple and Genuine (GDC Next 10)'
23             }
24         },
25         {
26             'url': 'http://www.gdcvault.com/play/1015683/Embracing-the-Dark-Art-of',
27             'info_dict': {
28                 'id': '1015683',
29                 'ext': 'flv',
30                 'title': 'Embracing the Dark Art of Mathematical Modeling in AI'
31             },
32             'params': {
33                 'skip_download': True,  # Requires rtmpdump
34             }
35         },
36         {
37             'url': 'http://www.gdcvault.com/play/1015301/Thexder-Meets-Windows-95-or',
38             'md5': 'a5eb77996ef82118afbbe8e48731b98e',
39             'info_dict': {
40                 'id': '1015301',
41                 'ext': 'flv',
42                 'title': 'Thexder Meets Windows 95, or Writing Great Games in the Windows 95 Environment',
43             },
44             'skip': 'Requires login',
45         }
46     ]
47
48     def _parse_mp4(self, xml_description):
49         video_formats = []
50         mp4_video = xml_description.find('./metadata/mp4video')
51         if mp4_video is None:
52             return None
53
54         mobj = re.match(r'(?P<root>https?://.*?/).*', mp4_video.text)
55         video_root = mobj.group('root')
56         formats = xml_description.findall('./metadata/MBRVideos/MBRVideo')
57         for format in formats:
58             mobj = re.match(r'mp4\:(?P<path>.*)', format.find('streamName').text)
59             url = video_root + mobj.group('path')
60             vbr = format.find('bitrate').text
61             video_formats.append({
62                 'url': url,
63                 'vbr': int(vbr),
64             })
65         return video_formats
66
67     def _parse_flv(self, xml_description):
68         video_formats = []
69         slide_video_path = xml_description.find('./metadata/slideVideo').text
70         video_formats.append({
71             'url': 'rtmp://%s/ondemand?ovpfv=1.1' % 'fms.digitallyspeaking.com/cfx/st',
72             'play_path': remove_end(slide_video_path, '.flv'),
73             'ext': 'flv',
74             'format_note': 'slide deck video',
75             'quality': -2,
76             'preference': -2,
77             'format_id': 'slides',
78         })
79         speaker_video_path = xml_description.find('./metadata/speakerVideo').text
80         video_formats.append({
81             'url': 'rtmp://%s/ondemand?ovpfv=1.1' % 'fms.digitallyspeaking.com/cfx/st',
82             'play_path': remove_end(speaker_video_path, '.flv'),
83             'ext': 'flv',
84             'format_note': 'speaker video',
85             'quality': -1,
86             'preference': -1,
87             'format_id': 'speaker',
88         })
89         return video_formats
90
91     def _login(self, webpage_url, video_id):
92         (username, password) = self._get_login_info()
93         if username is None or password is None:
94             self.report_warning('It looks like ' + webpage_url + ' requires a login. Try specifying a username and password and try again.')
95             return None
96
97         mobj = re.match(r'(?P<root_url>https?://.*?/).*', webpage_url)
98         login_url = mobj.group('root_url') + 'api/login.php'
99         logout_url = mobj.group('root_url') + 'logout'
100
101         login_form = {
102             'email': username,
103             'password': password,
104         }
105
106         request = compat_urllib_request.Request(login_url, compat_urllib_parse.urlencode(login_form))
107         request.add_header('Content-Type', 'application/x-www-form-urlencoded')
108         self._download_webpage(request, video_id, 'Logging in')
109         start_page = self._download_webpage(webpage_url, video_id, 'Getting authenticated video page')
110         self._download_webpage(logout_url, video_id, 'Logging out')
111
112         return start_page
113
114     def _real_extract(self, url):
115         mobj = re.match(self._VALID_URL, url)
116
117         video_id = mobj.group('id')
118         webpage_url = 'http://www.gdcvault.com/play/' + video_id
119         start_page = self._download_webpage(webpage_url, video_id)
120
121         direct_url = self._search_regex(
122             r's1\.addVariable\("file",\s*encodeURIComponent\("(/[^"]+)"\)\);',
123             start_page, 'url', default=None)
124         if direct_url:
125             video_url = 'http://www.gdcvault.com/' + direct_url
126             title = self._html_search_regex(
127                 r'<td><strong>Session Name</strong></td>\s*<td>(.*?)</td>',
128                 start_page, 'title')
129
130             return {
131                 'id': video_id,
132                 'url': video_url,
133                 'ext': 'flv',
134                 'title': title,
135             }
136
137         xml_root = self._html_search_regex(
138             r'<iframe src="(?P<xml_root>.*?)player.html.*?".*?</iframe>',
139             start_page, 'xml root', default=None)
140         if xml_root is None:
141             # Probably need to authenticate
142             login_res = self._login(webpage_url, video_id)
143             if login_res is None:
144                 self.report_warning('Could not login.')
145             else:
146                 start_page = login_res
147                 # Grab the url from the authenticated page
148                 xml_root = self._html_search_regex(
149                     r'<iframe src="(.*?)player.html.*?".*?</iframe>',
150                     start_page, 'xml root')
151
152         xml_name = self._html_search_regex(
153             r'<iframe src=".*?\?xml=(.+?\.xml).*?".*?</iframe>',
154             start_page, 'xml filename', default=None)
155         if xml_name is None:
156             # Fallback to the older format
157             xml_name = self._html_search_regex(r'<iframe src=".*?\?xmlURL=xml/(?P<xml_file>.+?\.xml).*?".*?</iframe>', start_page, 'xml filename')
158
159         xml_decription_url = xml_root + 'xml/' + xml_name
160         xml_description = self._download_xml(xml_decription_url, video_id)
161
162         video_title = xml_description.find('./metadata/title').text
163         video_formats = self._parse_mp4(xml_description)
164         if video_formats is None:
165             video_formats = self._parse_flv(xml_description)
166
167         return {
168             'id': video_id,
169             'title': video_title,
170             'formats': video_formats,
171         }