safari.py 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. # encoding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from .brightcove import BrightcoveLegacyIE
  6. from ..utils import (
  7. ExtractorError,
  8. sanitized_Request,
  9. smuggle_url,
  10. std_headers,
  11. urlencode_postdata,
  12. )
  13. class SafariBaseIE(InfoExtractor):
  14. _LOGIN_URL = 'https://www.safaribooksonline.com/accounts/login/'
  15. _SUCCESSFUL_LOGIN_REGEX = r'<a href="/accounts/logout/"[^>]*>Sign Out</a>'
  16. _NETRC_MACHINE = 'safari'
  17. _API_BASE = 'https://www.safaribooksonline.com/api/v1/book'
  18. _API_FORMAT = 'json'
  19. LOGGED_IN = False
  20. def _real_initialize(self):
  21. # We only need to log in once for courses or individual videos
  22. if not self.LOGGED_IN:
  23. self._login()
  24. SafariBaseIE.LOGGED_IN = True
  25. def _login(self):
  26. (username, password) = self._get_login_info()
  27. if username is None:
  28. self.raise_login_required('safaribooksonline.com account is required')
  29. headers = std_headers
  30. if 'Referer' not in headers:
  31. headers['Referer'] = self._LOGIN_URL
  32. login_page = self._download_webpage(
  33. self._LOGIN_URL, None,
  34. 'Downloading login form')
  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 as %s' % username)
  49. if re.search(self._SUCCESSFUL_LOGIN_REGEX, login_page) is None:
  50. raise ExtractorError(
  51. 'Login failed; make sure your credentials are correct and try again.',
  52. expected=True)
  53. self.to_screen('Login successful')
  54. class SafariIE(SafariBaseIE):
  55. IE_NAME = 'safari'
  56. IE_DESC = 'safaribooksonline.com online video'
  57. _VALID_URL = r'''(?x)https?://
  58. (?:www\.)?safaribooksonline\.com/
  59. (?:
  60. library/view/[^/]+|
  61. api/v1/book
  62. )/
  63. (?P<course_id>[^/]+)/
  64. (?:chapter(?:-content)?/)?
  65. (?P<part>part\d+)\.html
  66. '''
  67. _TESTS = [{
  68. 'url': 'https://www.safaribooksonline.com/library/view/hadoop-fundamentals-livelessons/9780133392838/part00.html',
  69. 'md5': '5b0c4cc1b3c1ba15dda7344085aa5592',
  70. 'info_dict': {
  71. 'id': '2842601850001',
  72. 'ext': 'mp4',
  73. 'title': 'Introduction',
  74. },
  75. 'skip': 'Requires safaribooksonline account credentials',
  76. }, {
  77. 'url': 'https://www.safaribooksonline.com/api/v1/book/9780133392838/chapter/part00.html',
  78. 'only_matching': True,
  79. }, {
  80. # non-digits in course id
  81. 'url': 'https://www.safaribooksonline.com/library/view/create-a-nodejs/100000006A0210/part00.html',
  82. 'only_matching': True,
  83. }]
  84. def _real_extract(self, url):
  85. mobj = re.match(self._VALID_URL, url)
  86. course_id = mobj.group('course_id')
  87. part = mobj.group('part')
  88. webpage = self._download_webpage(
  89. '%s/%s/chapter-content/%s.html' % (self._API_BASE, course_id, part),
  90. part)
  91. bc_url = BrightcoveLegacyIE._extract_brightcove_url(webpage)
  92. if not bc_url:
  93. raise ExtractorError('Could not extract Brightcove URL from %s' % url, expected=True)
  94. return self.url_result(smuggle_url(bc_url, {'Referer': url}), 'BrightcoveLegacy')
  95. class SafariCourseIE(SafariBaseIE):
  96. IE_NAME = 'safari:course'
  97. IE_DESC = 'safaribooksonline.com online courses'
  98. _VALID_URL = r'https?://(?:www\.)?safaribooksonline\.com/(?:library/view/[^/]+|api/v1/book)/(?P<id>[^/]+)/?(?:[#?]|$)'
  99. _TESTS = [{
  100. 'url': 'https://www.safaribooksonline.com/library/view/hadoop-fundamentals-livelessons/9780133392838/',
  101. 'info_dict': {
  102. 'id': '9780133392838',
  103. 'title': 'Hadoop Fundamentals LiveLessons',
  104. },
  105. 'playlist_count': 22,
  106. 'skip': 'Requires safaribooksonline account credentials',
  107. }, {
  108. 'url': 'https://www.safaribooksonline.com/api/v1/book/9781449396459/?override_format=json',
  109. 'only_matching': True,
  110. }]
  111. def _real_extract(self, url):
  112. course_id = self._match_id(url)
  113. course_json = self._download_json(
  114. '%s/%s/?override_format=%s' % (self._API_BASE, course_id, self._API_FORMAT),
  115. course_id, 'Downloading course JSON')
  116. if 'chapters' not in course_json:
  117. raise ExtractorError(
  118. 'No chapters found for course %s' % course_id, expected=True)
  119. entries = [
  120. self.url_result(chapter, 'Safari')
  121. for chapter in course_json['chapters']]
  122. course_title = course_json['title']
  123. return self.playlist_result(entries, course_id, course_title)