1 from __future__ import unicode_literals
5 from .common import InfoExtractor
13 class UdemyIE(InfoExtractor):
15 _VALID_URL = r'https?://www\.udemy\.com/(?:[^#]+#/lecture/|lecture/view/?\?lectureId=)(?P<id>\d+)'
16 _LOGIN_URL = 'https://www.udemy.com/join/login-submit/'
17 _NETRC_MACHINE = 'udemy'
20 'url': 'https://www.udemy.com/java-tutorial/#/lecture/172757',
21 'md5': '98eda5b657e752cf945d8445e261b5c5',
25 'title': 'Introduction and Installation',
26 'description': 'md5:c0d51f6f21ef4ec65f091055a5eef876',
29 'skip': 'Requires udemy account credentials',
32 def _handle_error(self, response):
33 if not isinstance(response, dict):
35 error = response.get('error')
37 error_str = 'Udemy returned error #%s: %s' % (error.get('code'), error.get('message'))
38 error_data = error.get('data')
40 error_str += ' - %s' % error_data.get('formErrors')
41 raise ExtractorError(error_str, expected=True)
43 def _download_json(self, url, video_id, note='Downloading JSON metadata'):
44 response = super(UdemyIE, self)._download_json(url, video_id, note)
45 self._handle_error(response)
48 def _download_json_cookies(self, url, video_id, note):
50 'X-Udemy-Snail-Case': 'true',
51 'X-Requested-With': 'XMLHttpRequest',
53 for cookie in self._downloader.cookiejar:
54 if cookie.name == 'client_id':
55 headers['X-Udemy-Client-Id'] = cookie.value
56 elif cookie.name == 'access_token':
57 headers['X-Udemy-Bearer-Token'] = cookie.value
58 request = compat_urllib_request.Request(url, headers=headers)
59 return self._download_json(request, video_id, note)
61 def _real_initialize(self):
65 (username, password) = self._get_login_info()
68 'Udemy account is required, use --username and --password options to provide account credentials.',
71 login_popup = self._download_webpage(
72 'https://www.udemy.com/join/login-popup?displayType=ajax&showSkipButton=1', None,
73 'Downloading login popup')
75 if login_popup == '<div class="run-command close-popup redirect" data-url="https://www.udemy.com/"></div>':
78 csrf = self._html_search_regex(
79 r'<input type="hidden" name="csrf" value="(.+?)"',
80 login_popup, 'csrf token')
86 'displayType': 'json',
89 request = compat_urllib_request.Request(
90 self._LOGIN_URL, compat_urllib_parse.urlencode(login_form))
91 response = self._download_json(
92 request, None, 'Logging in as %s' % username)
94 if 'returnUrl' not in response:
95 raise ExtractorError('Unable to log in')
99 def _real_extract(self, url):
100 mobj = re.match(self._VALID_URL, url)
101 lecture_id = mobj.group('id')
103 lecture = self._download_json_cookies(
104 'https://www.udemy.com/api-1.1/lectures/%s' % lecture_id,
105 lecture_id, 'Downloading lecture JSON')
107 asset_type = lecture.get('assetType') or lecture.get('asset_type')
108 if asset_type != 'Video':
109 raise ExtractorError(
110 'Lecture %s is not a video' % lecture_id, expected=True)
112 asset = lecture['asset']
114 stream_url = asset.get('streamUrl') or asset.get('stream_url')
115 mobj = re.search(r'(https?://www\.youtube\.com/watch\?v=.*)', stream_url)
117 return self.url_result(mobj.group(1), 'Youtube')
119 video_id = asset['id']
120 thumbnail = asset.get('thumbnailUrl') or asset.get('thumbnail_url')
121 duration = asset['data']['duration']
123 download_url = asset.get('downloadUrl') or asset.get('download_url')
125 video = download_url.get('Video') or download_url.get('video')
126 video_480p = download_url.get('Video480p') or download_url.get('video_480p')
130 'url': video_480p[0],
139 title = lecture['title']
140 description = lecture['description']
145 'description': description,
146 'thumbnail': thumbnail,
147 'duration': duration,
152 class UdemyCourseIE(UdemyIE):
153 IE_NAME = 'udemy:course'
154 _VALID_URL = r'https?://www\.udemy\.com/(?P<coursepath>[\da-z-]+)'
155 _SUCCESSFULLY_ENROLLED = '>You have enrolled in this course!<'
156 _ALREADY_ENROLLED = '>You are already taking this course.<'
160 def suitable(cls, url):
161 return False if UdemyIE.suitable(url) else super(UdemyCourseIE, cls).suitable(url)
163 def _real_extract(self, url):
164 mobj = re.match(self._VALID_URL, url)
165 course_path = mobj.group('coursepath')
167 response = self._download_json_cookies(
168 'https://www.udemy.com/api-1.1/courses/%s' % course_path,
169 course_path, 'Downloading course JSON')
171 course_id = int(response['id'])
172 course_title = response['title']
174 webpage = self._download_webpage(
175 'https://www.udemy.com/course/subscribe/?courseId=%s' % course_id,
176 course_id, 'Enrolling in the course')
178 if self._SUCCESSFULLY_ENROLLED in webpage:
179 self.to_screen('%s: Successfully enrolled in' % course_id)
180 elif self._ALREADY_ENROLLED in webpage:
181 self.to_screen('%s: Already enrolled in' % course_id)
183 response = self._download_json_cookies(
184 'https://www.udemy.com/api-1.1/courses/%s/curriculum' % course_id,
185 course_id, 'Downloading course curriculum')
189 'https://www.udemy.com/%s/#/lecture/%s' % (course_path, asset['id']), 'Udemy')
190 for asset in response if asset.get('assetType') or asset.get('asset_type') == 'Video'
193 return self.playlist_result(entries, course_id, course_title)