safari.py 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from ..utils import (
  6. ExtractorError,
  7. sanitized_Request,
  8. std_headers,
  9. urlencode_postdata,
  10. update_url_query,
  11. )
  12. class SafariBaseIE(InfoExtractor):
  13. _LOGIN_URL = 'https://www.safaribooksonline.com/accounts/login/'
  14. _NETRC_MACHINE = 'safari'
  15. _API_BASE = 'https://www.safaribooksonline.com/api/v1'
  16. _API_FORMAT = 'json'
  17. LOGGED_IN = False
  18. def _real_initialize(self):
  19. self._login()
  20. def _login(self):
  21. username, password = self._get_login_info()
  22. if username is None:
  23. return
  24. headers = std_headers.copy()
  25. if 'Referer' not in headers:
  26. headers['Referer'] = self._LOGIN_URL
  27. login_page = self._download_webpage(
  28. self._LOGIN_URL, None, 'Downloading login form', headers=headers)
  29. def is_logged(webpage):
  30. return any(re.search(p, webpage) for p in (
  31. r'href=["\']/accounts/logout/', r'>Sign Out<'))
  32. if is_logged(login_page):
  33. self.LOGGED_IN = True
  34. return
  35. csrf = self._html_search_regex(
  36. r"name='csrfmiddlewaretoken'\s+value='([^']+)'",
  37. login_page, 'csrf token')
  38. login_form = {
  39. 'csrfmiddlewaretoken': csrf,
  40. 'email': username,
  41. 'password1': password,
  42. 'login': 'Sign In',
  43. 'next': '',
  44. }
  45. request = sanitized_Request(
  46. self._LOGIN_URL, urlencode_postdata(login_form), headers=headers)
  47. login_page = self._download_webpage(
  48. request, None, 'Logging in')
  49. if not is_logged(login_page):
  50. raise ExtractorError(
  51. 'Login failed; make sure your credentials are correct and try again.',
  52. expected=True)
  53. self.LOGGED_IN = True
  54. class SafariIE(SafariBaseIE):
  55. IE_NAME = 'safari'
  56. IE_DESC = 'safaribooksonline.com online video'
  57. _VALID_URL = r'https?://(?:www\.)?safaribooksonline\.com/library/view/[^/]+/(?P<course_id>[^/]+)/(?P<part>[^/?#&]+)\.html'
  58. _TESTS = [{
  59. 'url': 'https://www.safaribooksonline.com/library/view/hadoop-fundamentals-livelessons/9780133392838/part00.html',
  60. 'md5': 'dcc5a425e79f2564148652616af1f2a3',
  61. 'info_dict': {
  62. 'id': '0_qbqx90ic',
  63. 'ext': 'mp4',
  64. 'title': 'Introduction to Hadoop Fundamentals LiveLessons',
  65. 'timestamp': 1437758058,
  66. 'upload_date': '20150724',
  67. 'uploader_id': 'stork',
  68. },
  69. }, {
  70. # non-digits in course id
  71. 'url': 'https://www.safaribooksonline.com/library/view/create-a-nodejs/100000006A0210/part00.html',
  72. 'only_matching': True,
  73. }, {
  74. 'url': 'https://www.safaribooksonline.com/library/view/learning-path-red/9780134664057/RHCE_Introduction.html',
  75. 'only_matching': True,
  76. }]
  77. def _real_extract(self, url):
  78. mobj = re.match(self._VALID_URL, url)
  79. video_id = '%s/%s' % (mobj.group('course_id'), mobj.group('part'))
  80. webpage = self._download_webpage(url, video_id)
  81. reference_id = self._search_regex(
  82. r'data-reference-id=(["\'])(?P<id>(?:(?!\1).)+)\1',
  83. webpage, 'kaltura reference id', group='id')
  84. partner_id = self._search_regex(
  85. r'data-partner-id=(["\'])(?P<id>(?:(?!\1).)+)\1',
  86. webpage, 'kaltura widget id', group='id')
  87. ui_id = self._search_regex(
  88. r'data-ui-id=(["\'])(?P<id>(?:(?!\1).)+)\1',
  89. webpage, 'kaltura uiconf id', group='id')
  90. query = {
  91. 'wid': '_%s' % partner_id,
  92. 'uiconf_id': ui_id,
  93. 'flashvars[referenceId]': reference_id,
  94. }
  95. if self.LOGGED_IN:
  96. kaltura_session = self._download_json(
  97. '%s/player/kaltura_session/?reference_id=%s' % (self._API_BASE, reference_id),
  98. video_id, 'Downloading kaltura session JSON',
  99. 'Unable to download kaltura session JSON', fatal=False)
  100. if kaltura_session:
  101. session = kaltura_session.get('session')
  102. if session:
  103. query['flashvars[ks]'] = session
  104. return self.url_result(update_url_query(
  105. 'https://cdnapisec.kaltura.com/html5/html5lib/v2.37.1/mwEmbedFrame.php', query),
  106. 'Kaltura')
  107. class SafariApiIE(SafariBaseIE):
  108. IE_NAME = 'safari:api'
  109. _VALID_URL = r'https?://(?:www\.)?safaribooksonline\.com/api/v1/book/(?P<course_id>[^/]+)/chapter(?:-content)?/(?P<part>[^/?#&]+)\.html'
  110. _TESTS = [{
  111. 'url': 'https://www.safaribooksonline.com/api/v1/book/9780133392838/chapter/part00.html',
  112. 'only_matching': True,
  113. }, {
  114. 'url': 'https://www.safaribooksonline.com/api/v1/book/9780134664057/chapter/RHCE_Introduction.html',
  115. 'only_matching': True,
  116. }]
  117. def _real_extract(self, url):
  118. mobj = re.match(self._VALID_URL, url)
  119. part = self._download_json(
  120. url, '%s/%s' % (mobj.group('course_id'), mobj.group('part')),
  121. 'Downloading part JSON')
  122. return self.url_result(part['web_url'], SafariIE.ie_key())
  123. class SafariCourseIE(SafariBaseIE):
  124. IE_NAME = 'safari:course'
  125. IE_DESC = 'safaribooksonline.com online courses'
  126. _VALID_URL = r'''(?x)
  127. https?://
  128. (?:
  129. (?:www\.)?safaribooksonline\.com/(?:library/view/[^/]+|api/v1/book)|
  130. techbus\.safaribooksonline\.com
  131. )
  132. /(?P<id>[^/]+)/?(?:[#?]|$)
  133. '''
  134. _TESTS = [{
  135. 'url': 'https://www.safaribooksonline.com/library/view/hadoop-fundamentals-livelessons/9780133392838/',
  136. 'info_dict': {
  137. 'id': '9780133392838',
  138. 'title': 'Hadoop Fundamentals LiveLessons',
  139. },
  140. 'playlist_count': 22,
  141. 'skip': 'Requires safaribooksonline account credentials',
  142. }, {
  143. 'url': 'https://www.safaribooksonline.com/api/v1/book/9781449396459/?override_format=json',
  144. 'only_matching': True,
  145. }, {
  146. 'url': 'http://techbus.safaribooksonline.com/9780134426365',
  147. 'only_matching': True,
  148. }]
  149. def _real_extract(self, url):
  150. course_id = self._match_id(url)
  151. course_json = self._download_json(
  152. '%s/book/%s/?override_format=%s' % (self._API_BASE, course_id, self._API_FORMAT),
  153. course_id, 'Downloading course JSON')
  154. if 'chapters' not in course_json:
  155. raise ExtractorError(
  156. 'No chapters found for course %s' % course_id, expected=True)
  157. entries = [
  158. self.url_result(chapter, SafariApiIE.ie_key())
  159. for chapter in course_json['chapters']]
  160. course_title = course_json['title']
  161. return self.playlist_result(entries, course_id, course_title)