4 from .common
import InfoExtractor
14 class AluraIE(InfoExtractor
):
15 _VALID_URL
= r
'https?://(?:cursos\.)?alura\.com\.br/course/(?P<course_name>[^/]+)/task/(?P<id>\d+)'
16 _LOGIN_URL
= 'https://cursos.alura.com.br/loginForm?urlAfterLogin=/loginForm'
17 _VIDEO_URL
= 'https://cursos.alura.com.br/course/%s/task/%s/video'
18 _NETRC_MACHINE
= 'alura'
20 'url': 'https://cursos.alura.com.br/course/clojure-mutabilidade-com-atoms-e-refs/task/60095',
24 'title': 'ReferĂȘncias, ref-set e alter',
26 'skip': 'Requires alura account credentials'},
29 'url': 'https://cursos.alura.com.br/course/clojure-mutabilidade-com-atoms-e-refs/task/60098',
30 'only_matching': True},
32 'url': 'https://cursos.alura.com.br/course/fundamentos-market-digital/task/55219',
33 'only_matching': True},
36 def _real_extract(self
, url
):
38 course
, video_id
= self
._match
_valid
_url
(url
).group('course_name', 'id')
39 video_url
= self
._VIDEO
_URL
% (course
, video_id
)
41 video_dict
= self
._download
_json
(video_url
, video_id
, 'Searching for videos')
44 webpage
= self
._download
_webpage
(url
, video_id
)
45 video_title
= clean_html(self
._search
_regex
(
46 r
'<span[^>]+class=(["\'])task
-body
-header
-title
-text\
1[^
>]*>(?P
<title
>[^
<]+)',
47 webpage, 'title
', group='title
'))
50 for video_obj in video_dict:
51 video_url_m3u8 = video_obj.get('mp4
')
52 video_format = self._extract_m3u8_formats(
53 video_url_m3u8, None, 'mp4
', entry_protocol='m3u8_native
',
54 m3u8_id='hls
', fatal=False)
55 for f in video_format:
56 m = re.search(r'^
[\w \W
]*-(?P
<res
>\w
*).mp4
[\W \w
]*', f['url
'])
58 if not f.get('height
'):
59 f['height
'] = int('720' if m.group('res
') == 'hd
' else '480')
60 formats.extend(video_format)
68 def _perform_login(self, username, password):
70 login_page = self._download_webpage(
71 self._LOGIN_URL, None, 'Downloading login popup
')
73 def is_logged(webpage):
74 return any(re.search(p, webpage) for p in (
75 r'href
=[\"|
\']?
/signout
[\"|
\']',
79 if is_logged(login_page):
82 login_form = self._hidden_inputs(login_page)
89 post_url = self._search_regex(
90 r'<form
[^
>]+class=["|\']signin-form["|
\'] action
=["|\'](?P<url>.+?)["|
\']', login_page,
91 'post url
', default=self._LOGIN_URL, group='url
')
93 if not post_url.startswith('http
'):
94 post_url = urllib.parse.urljoin(self._LOGIN_URL, post_url)
96 response = self._download_webpage(
97 post_url, None, 'Logging
in',
98 data=urlencode_postdata(login_form),
99 headers={'Content
-Type
': 'application
/x
-www
-form
-urlencoded
'})
101 if not is_logged(response):
102 error = self._html_search_regex(
103 r'(?s
)<p
[^
>]+class="alert-message[^"]*">(.+?)</p>',
104 response, 'error message', default=None)
106 raise ExtractorError(f'Unable to login: {error}', expected=True)
107 raise ExtractorError('Unable to log in')
110 class AluraCourseIE(AluraIE): # XXX: Do not subclass from concrete IE
112 _VALID_URL = r'https?://(?:cursos\.)?alura\.com\.br/course/(?P<id>[^/]+)'
113 _LOGIN_URL = 'https://cursos.alura.com.br/loginForm?urlAfterLogin=/loginForm'
114 _NETRC_MACHINE = 'aluracourse'
116 'url': 'https://cursos.alura.com.br/course/clojure-mutabilidade-com-atoms-e-refs',
117 'only_matching': True,
121 def suitable(cls, url):
122 return False if AluraIE.suitable(url) else super().suitable(url)
124 def _real_extract(self, url):
126 course_path = self._match_id(url)
127 webpage = self._download_webpage(url, course_path)
129 course_title = self._search_regex(
130 r'<h1.*?>(.*?)<strong>(?P<course_title>.*?)</strong></h[0-9]>', webpage,
131 'course title', default=course_path, group='course_title')
135 for path in re.findall(r'<a\b(?=[^>]* class="[^
"]*(?<=[" ])courseSectionList
-section
[" ])(?=[^>]* href="([^
"]*))', webpage):
136 page_url = urljoin(url, path)
137 section_path = self._download_webpage(page_url, course_path)
138 for path_video in re.findall(r'<a\b(?=[^>]* class="[^
"]*(?<=[" ])task
-menu
-nav
-item
-link
-VIDEO
[" ])(?=[^>]* href="([^
"]*))', section_path):
139 chapter = clean_html(
141 r'<h3[^>]+class=(["\'])task
-menu
-section
-title
-text\
1[^
>]*>(?P
<chapter
>[^
<]+)',
146 chapter_number = int_or_none(
148 r'<span
[^
>]+class=(["\'])task-menu-section-title-number[^>]*>(.*?)<strong>(?P<chapter_number>[^<]+)</strong>',
151 group='chapter_number'))
152 video_url = urljoin(url, path_video)
155 '_type': 'url_transparent',
156 'id': self._match_id(video_url),
158 'id_key': self.ie_key(),
160 'chapter_number': chapter_number,
162 entries.append(entry)
163 return self.playlist_result(entries, course_path, course_title)