]> Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/udemy.py
105826e9bb04d8b0e39e2126f637607cc8f6159b
[youtubedl] / youtube_dl / extractor / udemy.py
1 from __future__ import unicode_literals
2
3 import re
4
5 from .common import InfoExtractor
6 from ..compat import (
7 compat_HTTPError,
8 compat_kwargs,
9 compat_str,
10 compat_urllib_request,
11 compat_urlparse,
12 )
13 from ..utils import (
14 determine_ext,
15 extract_attributes,
16 ExtractorError,
17 float_or_none,
18 int_or_none,
19 js_to_json,
20 sanitized_Request,
21 try_get,
22 unescapeHTML,
23 url_or_none,
24 urlencode_postdata,
25 )
26
27
28 class UdemyIE(InfoExtractor):
29 IE_NAME = 'udemy'
30 _VALID_URL = r'''(?x)
31 https?://
32 www\.udemy\.com/
33 (?:
34 [^#]+\#/lecture/|
35 lecture/view/?\?lectureId=|
36 [^/]+/learn/v4/t/lecture/
37 )
38 (?P<id>\d+)
39 '''
40 _LOGIN_URL = 'https://www.udemy.com/join/login-popup/?displayType=ajax&showSkipButton=1'
41 _ORIGIN_URL = 'https://www.udemy.com'
42 _NETRC_MACHINE = 'udemy'
43
44 _TESTS = [{
45 'url': 'https://www.udemy.com/java-tutorial/#/lecture/172757',
46 'md5': '98eda5b657e752cf945d8445e261b5c5',
47 'info_dict': {
48 'id': '160614',
49 'ext': 'mp4',
50 'title': 'Introduction and Installation',
51 'description': 'md5:c0d51f6f21ef4ec65f091055a5eef876',
52 'duration': 579.29,
53 },
54 'skip': 'Requires udemy account credentials',
55 }, {
56 # new URL schema
57 'url': 'https://www.udemy.com/electric-bass-right-from-the-start/learn/v4/t/lecture/4580906',
58 'only_matching': True,
59 }, {
60 # no url in outputs format entry
61 'url': 'https://www.udemy.com/learn-web-development-complete-step-by-step-guide-to-success/learn/v4/t/lecture/4125812',
62 'only_matching': True,
63 }, {
64 # only outputs rendition
65 'url': 'https://www.udemy.com/how-you-can-help-your-local-community-5-amazing-examples/learn/v4/t/lecture/3225750?start=0',
66 'only_matching': True,
67 }]
68
69 def _extract_course_info(self, webpage, video_id):
70 course = self._parse_json(
71 unescapeHTML(self._search_regex(
72 r'ng-init=["\'].*\bcourse=({.+?})[;"\']',
73 webpage, 'course', default='{}')),
74 video_id, fatal=False) or {}
75 course_id = course.get('id') or self._search_regex(
76 r'data-course-id=["\'](\d+)', webpage, 'course id')
77 return course_id, course.get('title')
78
79 def _enroll_course(self, base_url, webpage, course_id):
80 def combine_url(base_url, url):
81 return compat_urlparse.urljoin(base_url, url) if not url.startswith('http') else url
82
83 checkout_url = unescapeHTML(self._search_regex(
84 r'href=(["\'])(?P<url>(?:https?://(?:www\.)?udemy\.com)?/(?:payment|cart)/checkout/.+?)\1',
85 webpage, 'checkout url', group='url', default=None))
86 if checkout_url:
87 raise ExtractorError(
88 'Course %s is not free. You have to pay for it before you can download. '
89 'Use this URL to confirm purchase: %s'
90 % (course_id, combine_url(base_url, checkout_url)),
91 expected=True)
92
93 enroll_url = unescapeHTML(self._search_regex(
94 r'href=(["\'])(?P<url>(?:https?://(?:www\.)?udemy\.com)?/course/subscribe/.+?)\1',
95 webpage, 'enroll url', group='url', default=None))
96 if enroll_url:
97 webpage = self._download_webpage(
98 combine_url(base_url, enroll_url),
99 course_id, 'Enrolling in the course',
100 headers={'Referer': base_url})
101 if '>You have enrolled in' in webpage:
102 self.to_screen('%s: Successfully enrolled in the course' % course_id)
103
104 def _download_lecture(self, course_id, lecture_id):
105 return self._download_json(
106 'https://www.udemy.com/api-2.0/users/me/subscribed-courses/%s/lectures/%s?'
107 % (course_id, lecture_id),
108 lecture_id, 'Downloading lecture JSON', query={
109 'fields[lecture]': 'title,description,view_html,asset',
110 'fields[asset]': 'asset_type,stream_url,thumbnail_url,download_urls,stream_urls,captions,data',
111 })
112
113 def _handle_error(self, response):
114 if not isinstance(response, dict):
115 return
116 error = response.get('error')
117 if error:
118 error_str = 'Udemy returned error #%s: %s' % (error.get('code'), error.get('message'))
119 error_data = error.get('data')
120 if error_data:
121 error_str += ' - %s' % error_data.get('formErrors')
122 raise ExtractorError(error_str, expected=True)
123
124 def _download_webpage_handle(self, *args, **kwargs):
125 headers = kwargs.get('headers', {}).copy()
126 headers['User-Agent'] = 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_5) AppleWebKit/603.2.4 (KHTML, like Gecko) Version/10.1.1 Safari/603.2.4'
127 kwargs['headers'] = headers
128 return super(UdemyIE, self)._download_webpage_handle(
129 *args, **compat_kwargs(kwargs))
130
131 def _download_json(self, url_or_request, *args, **kwargs):
132 headers = {
133 'X-Udemy-Snail-Case': 'true',
134 'X-Requested-With': 'XMLHttpRequest',
135 }
136 for cookie in self._downloader.cookiejar:
137 if cookie.name == 'client_id':
138 headers['X-Udemy-Client-Id'] = cookie.value
139 elif cookie.name == 'access_token':
140 headers['X-Udemy-Bearer-Token'] = cookie.value
141 headers['X-Udemy-Authorization'] = 'Bearer %s' % cookie.value
142
143 if isinstance(url_or_request, compat_urllib_request.Request):
144 for header, value in headers.items():
145 url_or_request.add_header(header, value)
146 else:
147 url_or_request = sanitized_Request(url_or_request, headers=headers)
148
149 response = super(UdemyIE, self)._download_json(url_or_request, *args, **kwargs)
150 self._handle_error(response)
151 return response
152
153 def _real_initialize(self):
154 self._login()
155
156 def _login(self):
157 username, password = self._get_login_info()
158 if username is None:
159 return
160
161 login_popup = self._download_webpage(
162 self._LOGIN_URL, None, 'Downloading login popup')
163
164 def is_logged(webpage):
165 return any(re.search(p, webpage) for p in (
166 r'href=["\'](?:https://www\.udemy\.com)?/user/logout/',
167 r'>Logout<'))
168
169 # already logged in
170 if is_logged(login_popup):
171 return
172
173 login_form = self._form_hidden_inputs('login-form', login_popup)
174
175 login_form.update({
176 'email': username,
177 'password': password,
178 })
179
180 response = self._download_webpage(
181 self._LOGIN_URL, None, 'Logging in',
182 data=urlencode_postdata(login_form),
183 headers={
184 'Referer': self._ORIGIN_URL,
185 'Origin': self._ORIGIN_URL,
186 })
187
188 if not is_logged(response):
189 error = self._html_search_regex(
190 r'(?s)<div[^>]+class="form-errors[^"]*">(.+?)</div>',
191 response, 'error message', default=None)
192 if error:
193 raise ExtractorError('Unable to login: %s' % error, expected=True)
194 raise ExtractorError('Unable to log in')
195
196 def _real_extract(self, url):
197 lecture_id = self._match_id(url)
198
199 webpage = self._download_webpage(url, lecture_id)
200
201 course_id, _ = self._extract_course_info(webpage, lecture_id)
202
203 try:
204 lecture = self._download_lecture(course_id, lecture_id)
205 except ExtractorError as e:
206 # Error could possibly mean we are not enrolled in the course
207 if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403:
208 self._enroll_course(url, webpage, course_id)
209 lecture = self._download_lecture(course_id, lecture_id)
210 else:
211 raise
212
213 title = lecture['title']
214 description = lecture.get('description')
215
216 asset = lecture['asset']
217
218 asset_type = asset.get('asset_type') or asset.get('assetType')
219 if asset_type != 'Video':
220 raise ExtractorError(
221 'Lecture %s is not a video' % lecture_id, expected=True)
222
223 stream_url = asset.get('stream_url') or asset.get('streamUrl')
224 if stream_url:
225 youtube_url = self._search_regex(
226 r'(https?://www\.youtube\.com/watch\?v=.*)', stream_url, 'youtube URL', default=None)
227 if youtube_url:
228 return self.url_result(youtube_url, 'Youtube')
229
230 video_id = compat_str(asset['id'])
231 thumbnail = asset.get('thumbnail_url') or asset.get('thumbnailUrl')
232 duration = float_or_none(asset.get('data', {}).get('duration'))
233
234 subtitles = {}
235 automatic_captions = {}
236
237 formats = []
238
239 def extract_output_format(src, f_id):
240 return {
241 'url': src.get('url'),
242 'format_id': '%sp' % (src.get('height') or f_id),
243 'width': int_or_none(src.get('width')),
244 'height': int_or_none(src.get('height')),
245 'vbr': int_or_none(src.get('video_bitrate_in_kbps')),
246 'vcodec': src.get('video_codec'),
247 'fps': int_or_none(src.get('frame_rate')),
248 'abr': int_or_none(src.get('audio_bitrate_in_kbps')),
249 'acodec': src.get('audio_codec'),
250 'asr': int_or_none(src.get('audio_sample_rate')),
251 'tbr': int_or_none(src.get('total_bitrate_in_kbps')),
252 'filesize': int_or_none(src.get('file_size_in_bytes')),
253 }
254
255 outputs = asset.get('data', {}).get('outputs')
256 if not isinstance(outputs, dict):
257 outputs = {}
258
259 def add_output_format_meta(f, key):
260 output = outputs.get(key)
261 if isinstance(output, dict):
262 output_format = extract_output_format(output, key)
263 output_format.update(f)
264 return output_format
265 return f
266
267 def extract_formats(source_list):
268 if not isinstance(source_list, list):
269 return
270 for source in source_list:
271 video_url = url_or_none(source.get('file') or source.get('src'))
272 if not video_url:
273 continue
274 if source.get('type') == 'application/x-mpegURL' or determine_ext(video_url) == 'm3u8':
275 formats.extend(self._extract_m3u8_formats(
276 video_url, video_id, 'mp4', entry_protocol='m3u8_native',
277 m3u8_id='hls', fatal=False))
278 continue
279 format_id = source.get('label')
280 f = {
281 'url': video_url,
282 'format_id': '%sp' % format_id,
283 'height': int_or_none(format_id),
284 }
285 if format_id:
286 # Some videos contain additional metadata (e.g.
287 # https://www.udemy.com/ios9-swift/learn/#/lecture/3383208)
288 f = add_output_format_meta(f, format_id)
289 formats.append(f)
290
291 def extract_subtitles(track_list):
292 if not isinstance(track_list, list):
293 return
294 for track in track_list:
295 if not isinstance(track, dict):
296 continue
297 if track.get('kind') != 'captions':
298 continue
299 src = url_or_none(track.get('src'))
300 if not src:
301 continue
302 lang = track.get('language') or track.get(
303 'srclang') or track.get('label')
304 sub_dict = automatic_captions if track.get(
305 'autogenerated') is True else subtitles
306 sub_dict.setdefault(lang, []).append({
307 'url': src,
308 })
309
310 for url_kind in ('download', 'stream'):
311 urls = asset.get('%s_urls' % url_kind)
312 if isinstance(urls, dict):
313 extract_formats(urls.get('Video'))
314
315 captions = asset.get('captions')
316 if isinstance(captions, list):
317 for cc in captions:
318 if not isinstance(cc, dict):
319 continue
320 cc_url = url_or_none(cc.get('url'))
321 if not cc_url:
322 continue
323 lang = try_get(cc, lambda x: x['locale']['locale'], compat_str)
324 sub_dict = (automatic_captions if cc.get('source') == 'auto'
325 else subtitles)
326 sub_dict.setdefault(lang or 'en', []).append({
327 'url': cc_url,
328 })
329
330 view_html = lecture.get('view_html')
331 if view_html:
332 view_html_urls = set()
333 for source in re.findall(r'<source[^>]+>', view_html):
334 attributes = extract_attributes(source)
335 src = attributes.get('src')
336 if not src:
337 continue
338 res = attributes.get('data-res')
339 height = int_or_none(res)
340 if src in view_html_urls:
341 continue
342 view_html_urls.add(src)
343 if attributes.get('type') == 'application/x-mpegURL' or determine_ext(src) == 'm3u8':
344 m3u8_formats = self._extract_m3u8_formats(
345 src, video_id, 'mp4', entry_protocol='m3u8_native',
346 m3u8_id='hls', fatal=False)
347 for f in m3u8_formats:
348 m = re.search(r'/hls_(?P<height>\d{3,4})_(?P<tbr>\d{2,})/', f['url'])
349 if m:
350 if not f.get('height'):
351 f['height'] = int(m.group('height'))
352 if not f.get('tbr'):
353 f['tbr'] = int(m.group('tbr'))
354 formats.extend(m3u8_formats)
355 else:
356 formats.append(add_output_format_meta({
357 'url': src,
358 'format_id': '%dp' % height if height else None,
359 'height': height,
360 }, res))
361
362 # react rendition since 2017.04.15 (see
363 # https://github.com/rg3/youtube-dl/issues/12744)
364 data = self._parse_json(
365 self._search_regex(
366 r'videojs-setup-data=(["\'])(?P<data>{.+?})\1', view_html,
367 'setup data', default='{}', group='data'), video_id,
368 transform_source=unescapeHTML, fatal=False)
369 if data and isinstance(data, dict):
370 extract_formats(data.get('sources'))
371 if not duration:
372 duration = int_or_none(data.get('duration'))
373 extract_subtitles(data.get('tracks'))
374
375 if not subtitles and not automatic_captions:
376 text_tracks = self._parse_json(
377 self._search_regex(
378 r'text-tracks=(["\'])(?P<data>\[.+?\])\1', view_html,
379 'text tracks', default='{}', group='data'), video_id,
380 transform_source=lambda s: js_to_json(unescapeHTML(s)),
381 fatal=False)
382 extract_subtitles(text_tracks)
383
384 if not formats and outputs:
385 for format_id, output in outputs.items():
386 f = extract_output_format(output, format_id)
387 if f.get('url'):
388 formats.append(f)
389
390 self._sort_formats(formats, field_preference=('height', 'width', 'tbr', 'format_id'))
391
392 return {
393 'id': video_id,
394 'title': title,
395 'description': description,
396 'thumbnail': thumbnail,
397 'duration': duration,
398 'formats': formats,
399 'subtitles': subtitles,
400 'automatic_captions': automatic_captions,
401 }
402
403
404 class UdemyCourseIE(UdemyIE):
405 IE_NAME = 'udemy:course'
406 _VALID_URL = r'https?://(?:www\.)?udemy\.com/(?P<id>[^/?#&]+)'
407 _TESTS = []
408
409 @classmethod
410 def suitable(cls, url):
411 return False if UdemyIE.suitable(url) else super(UdemyCourseIE, cls).suitable(url)
412
413 def _real_extract(self, url):
414 course_path = self._match_id(url)
415
416 webpage = self._download_webpage(url, course_path)
417
418 course_id, title = self._extract_course_info(webpage, course_path)
419
420 self._enroll_course(url, webpage, course_id)
421
422 response = self._download_json(
423 'https://www.udemy.com/api-2.0/courses/%s/cached-subscriber-curriculum-items' % course_id,
424 course_id, 'Downloading course curriculum', query={
425 'fields[chapter]': 'title,object_index',
426 'fields[lecture]': 'title,asset',
427 'page_size': '1000',
428 })
429
430 entries = []
431 chapter, chapter_number = [None] * 2
432 for entry in response['results']:
433 clazz = entry.get('_class')
434 if clazz == 'lecture':
435 asset = entry.get('asset')
436 if isinstance(asset, dict):
437 asset_type = asset.get('asset_type') or asset.get('assetType')
438 if asset_type != 'Video':
439 continue
440 lecture_id = entry.get('id')
441 if lecture_id:
442 entry = {
443 '_type': 'url_transparent',
444 'url': 'https://www.udemy.com/%s/learn/v4/t/lecture/%s' % (course_path, entry['id']),
445 'title': entry.get('title'),
446 'ie_key': UdemyIE.ie_key(),
447 }
448 if chapter_number:
449 entry['chapter_number'] = chapter_number
450 if chapter:
451 entry['chapter'] = chapter
452 entries.append(entry)
453 elif clazz == 'chapter':
454 chapter_number = entry.get('object_index')
455 chapter = entry.get('title')
456
457 return self.playlist_result(entries, course_id, title)