]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/udemy.py
1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
15 class UdemyIE(InfoExtractor
):
17 _VALID_URL
= r
'https?://www\.udemy\.com/(?:[^#]+#/lecture/|lecture/view/?\?lectureId=)(?P<id>\d+)'
18 _LOGIN_URL
= 'https://www.udemy.com/join/login-popup/?displayType=ajax&showSkipButton=1'
19 _ORIGIN_URL
= 'https://www.udemy.com'
20 _NETRC_MACHINE
= 'udemy'
23 'url': 'https://www.udemy.com/java-tutorial/#/lecture/172757',
24 'md5': '98eda5b657e752cf945d8445e261b5c5',
28 'title': 'Introduction and Installation',
29 'description': 'md5:c0d51f6f21ef4ec65f091055a5eef876',
32 'skip': 'Requires udemy account credentials',
35 def _handle_error(self
, response
):
36 if not isinstance(response
, dict):
38 error
= response
.get('error')
40 error_str
= 'Udemy returned error #%s: %s' % (error
.get('code'), error
.get('message'))
41 error_data
= error
.get('data')
43 error_str
+= ' - %s' % error_data
.get('formErrors')
44 raise ExtractorError(error_str
, expected
=True)
46 def _download_json(self
, url_or_request
, video_id
, note
='Downloading JSON metadata'):
48 'X-Udemy-Snail-Case': 'true',
49 'X-Requested-With': 'XMLHttpRequest',
51 for cookie
in self
._downloader
.cookiejar
:
52 if cookie
.name
== 'client_id':
53 headers
['X-Udemy-Client-Id'] = cookie
.value
54 elif cookie
.name
== 'access_token':
55 headers
['X-Udemy-Bearer-Token'] = cookie
.value
57 if isinstance(url_or_request
, compat_urllib_request
.Request
):
58 for header
, value
in headers
.items():
59 url_or_request
.add_header(header
, value
)
61 url_or_request
= compat_urllib_request
.Request(url_or_request
, headers
=headers
)
63 response
= super(UdemyIE
, self
)._download
_json
(url_or_request
, video_id
, note
)
64 self
._handle
_error
(response
)
67 def _real_initialize(self
):
71 (username
, password
) = self
._get
_login
_info
()
73 self
.raise_login_required('Udemy account is required')
75 login_popup
= self
._download
_webpage
(
76 self
._LOGIN
_URL
, None, 'Downloading login popup')
78 def is_logged(webpage
):
79 return any(p
in webpage
for p
in ['href="https://www.udemy.com/user/logout/', '>Logout<'])
82 if is_logged(login_popup
):
85 login_form
= self
._form
_hidden
_inputs
('login-form', login_popup
)
88 'email': username
.encode('utf-8'),
89 'password': password
.encode('utf-8'),
92 request
= compat_urllib_request
.Request(
93 self
._LOGIN
_URL
, compat_urllib_parse
.urlencode(login_form
).encode('utf-8'))
94 request
.add_header('Referer', self
._ORIGIN
_URL
)
95 request
.add_header('Origin', self
._ORIGIN
_URL
)
97 response
= self
._download
_webpage
(
98 request
, None, 'Logging in as %s' % username
)
100 if not is_logged(response
):
101 error
= self
._html
_search
_regex
(
102 r
'(?s)<div[^>]+class="form-errors[^"]*">(.+?)</div>',
103 response
, 'error message', default
=None)
105 raise ExtractorError('Unable to login: %s' % error
, expected
=True)
106 raise ExtractorError('Unable to log in')
108 def _real_extract(self
, url
):
109 lecture_id
= self
._match
_id
(url
)
111 lecture
= self
._download
_json
(
112 'https://www.udemy.com/api-1.1/lectures/%s' % lecture_id
,
113 lecture_id
, 'Downloading lecture JSON')
115 asset_type
= lecture
.get('assetType') or lecture
.get('asset_type')
116 if asset_type
!= 'Video':
117 raise ExtractorError(
118 'Lecture %s is not a video' % lecture_id
, expected
=True)
120 asset
= lecture
['asset']
122 stream_url
= asset
.get('streamUrl') or asset
.get('stream_url')
123 mobj
= re
.search(r
'(https?://www\.youtube\.com/watch\?v=.*)', stream_url
)
125 return self
.url_result(mobj
.group(1), 'Youtube')
127 video_id
= asset
['id']
128 thumbnail
= asset
.get('thumbnailUrl') or asset
.get('thumbnail_url')
129 duration
= asset
['data']['duration']
131 download_url
= asset
.get('downloadUrl') or asset
.get('download_url')
133 video
= download_url
.get('Video') or download_url
.get('video')
134 video_480p
= download_url
.get('Video480p') or download_url
.get('video_480p')
138 'url': video_480p
[0],
147 title
= lecture
['title']
148 description
= lecture
['description']
153 'description': description
,
154 'thumbnail': thumbnail
,
155 'duration': duration
,
160 class UdemyCourseIE(UdemyIE
):
161 IE_NAME
= 'udemy:course'
162 _VALID_URL
= r
'https?://www\.udemy\.com/(?P<coursepath>[\da-z-]+)'
163 _SUCCESSFULLY_ENROLLED
= '>You have enrolled in this course!<'
164 _ALREADY_ENROLLED
= '>You are already taking this course.<'
168 def suitable(cls
, url
):
169 return False if UdemyIE
.suitable(url
) else super(UdemyCourseIE
, cls
).suitable(url
)
171 def _real_extract(self
, url
):
172 mobj
= re
.match(self
._VALID
_URL
, url
)
173 course_path
= mobj
.group('coursepath')
175 response
= self
._download
_json
(
176 'https://www.udemy.com/api-1.1/courses/%s' % course_path
,
177 course_path
, 'Downloading course JSON')
179 course_id
= int(response
['id'])
180 course_title
= response
['title']
182 webpage
= self
._download
_webpage
(
183 'https://www.udemy.com/course/subscribe/?courseId=%s' % course_id
,
184 course_id
, 'Enrolling in the course')
186 if self
._SUCCESSFULLY
_ENROLLED
in webpage
:
187 self
.to_screen('%s: Successfully enrolled in' % course_id
)
188 elif self
._ALREADY
_ENROLLED
in webpage
:
189 self
.to_screen('%s: Already enrolled in' % course_id
)
191 response
= self
._download
_json
(
192 'https://www.udemy.com/api-1.1/courses/%s/curriculum' % course_id
,
193 course_id
, 'Downloading course curriculum')
197 'https://www.udemy.com/%s/#/lecture/%s' % (course_path
, asset
['id']), 'Udemy')
198 for asset
in response
if asset
.get('assetType') or asset
.get('asset_type') == 'Video'
201 return self
.playlist_result(entries
, course_id
, course_title
)