2 from __future__
import unicode_literals
7 from .common
import InfoExtractor
20 class SafariBaseIE(InfoExtractor
):
21 _LOGIN_URL
= 'https://learning.oreilly.com/accounts/login/'
22 _NETRC_MACHINE
= 'safari'
24 _API_BASE
= 'https://learning.oreilly.com/api/v1'
29 def _real_initialize(self
):
33 username
, password
= self
._get
_login
_info
()
37 _
, urlh
= self
._download
_webpage
_handle
(
38 'https://learning.oreilly.com/accounts/login-check/', None,
39 'Downloading login page')
42 return 'learning.oreilly.com/home/' in compat_str(urlh
.geturl())
48 redirect_url
= compat_str(urlh
.geturl())
49 parsed_url
= compat_urlparse
.urlparse(redirect_url
)
50 qs
= compat_parse_qs(parsed_url
.query
)
51 next_uri
= compat_urlparse
.urljoin(
52 'https://api.oreilly.com', qs
['next'][0])
54 auth
, urlh
= self
._download
_json
_handle
(
55 'https://www.oreilly.com/member/auth/login/', None, 'Logging in',
59 'redirect_uri': next_uri
,
60 }).encode(), headers
={
61 'Content-Type': 'application/json',
62 'Referer': redirect_url
,
63 }, expected_status
=400)
65 credentials
= auth
.get('credentials')
66 if (not auth
.get('logged_in') and not auth
.get('redirect_uri')
69 'Unable to login: %s' % credentials
, expected
=True)
71 # oreilly serves two same instances of the following cookies
72 # in Set-Cookie header and expects first one to be actually set
73 for cookie
in ('groot_sessionid', 'orm-jwt', 'orm-rt'):
74 self
._apply
_first
_set
_cookie
_header
(urlh
, cookie
)
76 _
, urlh
= self
._download
_webpage
_handle
(
77 auth
.get('redirect_uri') or next_uri
, None, 'Completing login',)
83 raise ExtractorError('Unable to log in')
86 class SafariIE(SafariBaseIE
):
88 IE_DESC
= 'safaribooksonline.com online video'
91 (?:www\.)?(?:safaribooksonline|(?:learning\.)?oreilly)\.com/
93 library/view/[^/]+/(?P<course_id>[^/]+)/(?P<part>[^/?\#&]+)\.html|
94 videos/[^/]+/[^/]+/(?P<reference_id>[^-]+-[^/?\#&]+)
99 'url': 'https://www.safaribooksonline.com/library/view/hadoop-fundamentals-livelessons/9780133392838/part00.html',
100 'md5': 'dcc5a425e79f2564148652616af1f2a3',
104 'title': 'Introduction to Hadoop Fundamentals LiveLessons',
105 'timestamp': 1437758058,
106 'upload_date': '20150724',
107 'uploader_id': 'stork',
110 # non-digits in course id
111 'url': 'https://www.safaribooksonline.com/library/view/create-a-nodejs/100000006A0210/part00.html',
112 'only_matching': True,
114 'url': 'https://www.safaribooksonline.com/library/view/learning-path-red/9780134664057/RHCE_Introduction.html',
115 'only_matching': True,
117 'url': 'https://www.safaribooksonline.com/videos/python-programming-language/9780134217314/9780134217314-PYMC_13_00',
118 'only_matching': True,
120 'url': 'https://learning.oreilly.com/videos/hadoop-fundamentals-livelessons/9780133392838/9780133392838-00_SeriesIntro',
121 'only_matching': True,
123 'url': 'https://www.oreilly.com/library/view/hadoop-fundamentals-livelessons/9780133392838/00_SeriesIntro.html',
124 'only_matching': True,
127 _PARTNER_ID
= '1926081'
128 _UICONF_ID
= '29375172'
130 def _real_extract(self
, url
):
131 mobj
= re
.match(self
._VALID
_URL
, url
)
133 reference_id
= mobj
.group('reference_id')
135 video_id
= reference_id
136 partner_id
= self
._PARTNER
_ID
137 ui_id
= self
._UICONF
_ID
139 video_id
= '%s-%s' % (mobj
.group('course_id'), mobj
.group('part'))
141 webpage
, urlh
= self
._download
_webpage
_handle
(url
, video_id
)
143 mobj
= re
.match(self
._VALID
_URL
, urlh
.geturl())
144 reference_id
= mobj
.group('reference_id')
146 reference_id
= self
._search
_regex
(
147 r
'data-reference-id=(["\'])(?P
<id>(?
:(?
!\
1).)+)\
1',
148 webpage, 'kaltura reference
id', group='id')
149 partner_id = self._search_regex(
150 r'data
-partner
-id=(["\'])(?P<id>(?:(?!\1).)+)\1',
151 webpage, 'kaltura widget id', default=self._PARTNER_ID,
153 ui_id = self._search_regex(
154 r'data-ui-id=(["\'])(?P
<id>(?
:(?
!\
1).)+)\
1',
155 webpage, 'kaltura uiconf
id', default=self._UICONF_ID,
159 'wid
': '_
%s' % partner_id,
161 'flashvars
[referenceId
]': reference_id,
165 kaltura_session = self._download_json(
166 '%s/player
/kaltura_session
/?reference_id
=%s' % (self._API_BASE, reference_id),
167 video_id, 'Downloading kaltura session JSON
',
168 'Unable to download kaltura session JSON
', fatal=False,
169 headers={'Accept
': 'application
/json
'})
171 session = kaltura_session.get('session
')
173 query['flashvars
[ks
]'] = session
175 return self.url_result(update_url_query(
176 'https
://cdnapisec
.kaltura
.com
/html5
/html5lib
/v2
.37
.1/mwEmbedFrame
.php
', query),
180 class SafariApiIE(SafariBaseIE):
181 IE_NAME = 'safari
:api
'
182 _VALID_URL = r'https?
://(?
:www\
.)?
(?
:safaribooksonline|
(?
:learning\
.)?oreilly
)\
.com
/api
/v1
/book
/(?P
<course_id
>[^
/]+)/chapter(?
:-content
)?
/(?P
<part
>[^
/?
#&]+)\.html'
185 'url': 'https://www.safaribooksonline.com/api/v1/book/9780133392838/chapter/part00.html',
186 'only_matching': True,
188 'url': 'https://www.safaribooksonline.com/api/v1/book/9780134664057/chapter/RHCE_Introduction.html',
189 'only_matching': True,
192 def _real_extract(self
, url
):
193 mobj
= re
.match(self
._VALID
_URL
, url
)
194 part
= self
._download
_json
(
195 url
, '%s/%s' % (mobj
.group('course_id'), mobj
.group('part')),
196 'Downloading part JSON')
197 return self
.url_result(part
['web_url'], SafariIE
.ie_key())
200 class SafariCourseIE(SafariBaseIE
):
201 IE_NAME
= 'safari:course'
202 IE_DESC
= 'safaribooksonline.com online courses'
204 _VALID_URL
= r
'''(?x)
207 (?:www\.)?(?:safaribooksonline|(?:learning\.)?oreilly)\.com/
213 techbus\.safaribooksonline\.com
219 'url': 'https://www.safaribooksonline.com/library/view/hadoop-fundamentals-livelessons/9780133392838/',
221 'id': '9780133392838',
222 'title': 'Hadoop Fundamentals LiveLessons',
224 'playlist_count': 22,
225 'skip': 'Requires safaribooksonline account credentials',
227 'url': 'https://www.safaribooksonline.com/api/v1/book/9781449396459/?override_format=json',
228 'only_matching': True,
230 'url': 'http://techbus.safaribooksonline.com/9780134426365',
231 'only_matching': True,
233 'url': 'https://www.safaribooksonline.com/videos/python-programming-language/9780134217314',
234 'only_matching': True,
236 'url': 'https://learning.oreilly.com/videos/hadoop-fundamentals-livelessons/9780133392838',
237 'only_matching': True,
239 'url': 'https://www.oreilly.com/library/view/hadoop-fundamentals-livelessons/9780133392838/',
240 'only_matching': True,
244 def suitable(cls
, url
):
245 return (False if SafariIE
.suitable(url
) or SafariApiIE
.suitable(url
)
246 else super(SafariCourseIE
, cls
).suitable(url
))
248 def _real_extract(self
, url
):
249 course_id
= self
._match
_id
(url
)
251 course_json
= self
._download
_json
(
252 '%s/book/%s/?override_format=%s' % (self
._API
_BASE
, course_id
, self
._API
_FORMAT
),
253 course_id
, 'Downloading course JSON')
255 if 'chapters' not in course_json
:
256 raise ExtractorError(
257 'No chapters found for course %s' % course_id
, expected
=True)
260 self
.url_result(chapter
, SafariApiIE
.ie_key())
261 for chapter
in course_json
['chapters']]
263 course_title
= course_json
['title']
265 return self
.playlist_result(entries
, course_id
, course_title
)