You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

242 lines
8.5 KiB

11 years ago
11 years ago
10 years ago
10 years ago
  1. from __future__ import unicode_literals
  2. import re
  3. import json
  4. from .common import InfoExtractor
  5. from ..compat import (
  6. compat_str,
  7. compat_urllib_parse,
  8. compat_urllib_request,
  9. )
  10. from ..utils import (
  11. ExtractorError,
  12. clean_html,
  13. int_or_none,
  14. )
  15. class LyndaBaseIE(InfoExtractor):
  16. _LOGIN_URL = 'https://www.lynda.com/login/login.aspx'
  17. _ACCOUNT_CREDENTIALS_HINT = 'Use --username and --password options to provide lynda.com account credentials.'
  18. _NETRC_MACHINE = 'lynda'
  19. def _real_initialize(self):
  20. self._login()
  21. def _login(self):
  22. (username, password) = self._get_login_info()
  23. if username is None:
  24. return
  25. login_form = {
  26. 'username': username.encode('utf-8'),
  27. 'password': password.encode('utf-8'),
  28. 'remember': 'false',
  29. 'stayPut': 'false'
  30. }
  31. request = compat_urllib_request.Request(
  32. self._LOGIN_URL, compat_urllib_parse.urlencode(login_form).encode('utf-8'))
  33. login_page = self._download_webpage(
  34. request, None, 'Logging in as %s' % username)
  35. # Not (yet) logged in
  36. m = re.search(r'loginResultJson\s*=\s*\'(?P<json>[^\']+)\';', login_page)
  37. if m is not None:
  38. response = m.group('json')
  39. response_json = json.loads(response)
  40. state = response_json['state']
  41. if state == 'notlogged':
  42. raise ExtractorError(
  43. 'Unable to login, incorrect username and/or password',
  44. expected=True)
  45. # This is when we get popup:
  46. # > You're already logged in to lynda.com on two devices.
  47. # > If you log in here, we'll log you out of another device.
  48. # So, we need to confirm this.
  49. if state == 'conflicted':
  50. confirm_form = {
  51. 'username': '',
  52. 'password': '',
  53. 'resolve': 'true',
  54. 'remember': 'false',
  55. 'stayPut': 'false',
  56. }
  57. request = compat_urllib_request.Request(
  58. self._LOGIN_URL, compat_urllib_parse.urlencode(confirm_form).encode('utf-8'))
  59. login_page = self._download_webpage(
  60. request, None,
  61. 'Confirming log in and log out from another device')
  62. if all(not re.search(p, login_page) for p in ('isLoggedIn\s*:\s*true', r'logout\.aspx', r'>Log out<')):
  63. if 'login error' in login_page:
  64. mobj = re.search(
  65. r'(?s)<h1[^>]+class="topmost">(?P<title>[^<]+)</h1>\s*<div>(?P<description>.+?)</div>',
  66. login_page)
  67. if mobj:
  68. raise ExtractorError(
  69. 'lynda returned error: %s - %s'
  70. % (mobj.group('title'), clean_html(mobj.group('description'))),
  71. expected=True)
  72. raise ExtractorError('Unable to log in')
  73. class LyndaIE(LyndaBaseIE):
  74. IE_NAME = 'lynda'
  75. IE_DESC = 'lynda.com videos'
  76. _VALID_URL = r'https?://www\.lynda\.com/(?:[^/]+/[^/]+/\d+|player/embed)/(?P<id>\d+)'
  77. _NETRC_MACHINE = 'lynda'
  78. _TIMECODE_REGEX = r'\[(?P<timecode>\d+:\d+:\d+[\.,]\d+)\]'
  79. _TESTS = [{
  80. 'url': 'http://www.lynda.com/Bootstrap-tutorials/Using-exercise-files/110885/114408-4.html',
  81. 'md5': 'ecfc6862da89489161fb9cd5f5a6fac1',
  82. 'info_dict': {
  83. 'id': '114408',
  84. 'ext': 'mp4',
  85. 'title': 'Using the exercise files',
  86. 'duration': 68
  87. }
  88. }, {
  89. 'url': 'https://www.lynda.com/player/embed/133770?tr=foo=1;bar=g;fizz=rt&fs=0',
  90. 'only_matching': True,
  91. }]
  92. def _real_extract(self, url):
  93. video_id = self._match_id(url)
  94. page = self._download_webpage(
  95. 'http://www.lynda.com/ajax/player?videoId=%s&type=video' % video_id,
  96. video_id, 'Downloading video JSON')
  97. video_json = json.loads(page)
  98. if 'Status' in video_json:
  99. raise ExtractorError(
  100. 'lynda returned error: %s' % video_json['Message'], expected=True)
  101. if video_json['HasAccess'] is False:
  102. self.raise_login_required('Video %s is only available for members' % video_id)
  103. video_id = compat_str(video_json['ID'])
  104. duration = video_json['DurationInSeconds']
  105. title = video_json['Title']
  106. formats = []
  107. fmts = video_json.get('Formats')
  108. if fmts:
  109. formats.extend([
  110. {
  111. 'url': fmt['Url'],
  112. 'ext': fmt['Extension'],
  113. 'width': fmt['Width'],
  114. 'height': fmt['Height'],
  115. 'filesize': fmt['FileSize'],
  116. 'format_id': str(fmt['Resolution'])
  117. } for fmt in fmts])
  118. prioritized_streams = video_json.get('PrioritizedStreams')
  119. if prioritized_streams:
  120. formats.extend([
  121. {
  122. 'url': video_url,
  123. 'width': int_or_none(format_id),
  124. 'format_id': format_id,
  125. } for format_id, video_url in prioritized_streams['0'].items()
  126. ])
  127. self._check_formats(formats, video_id)
  128. self._sort_formats(formats)
  129. subtitles = self.extract_subtitles(video_id, page)
  130. return {
  131. 'id': video_id,
  132. 'title': title,
  133. 'duration': duration,
  134. 'subtitles': subtitles,
  135. 'formats': formats
  136. }
  137. def _fix_subtitles(self, subs):
  138. srt = ''
  139. seq_counter = 0
  140. for pos in range(0, len(subs) - 1):
  141. seq_current = subs[pos]
  142. m_current = re.match(self._TIMECODE_REGEX, seq_current['Timecode'])
  143. if m_current is None:
  144. continue
  145. seq_next = subs[pos + 1]
  146. m_next = re.match(self._TIMECODE_REGEX, seq_next['Timecode'])
  147. if m_next is None:
  148. continue
  149. appear_time = m_current.group('timecode')
  150. disappear_time = m_next.group('timecode')
  151. text = seq_current['Caption'].strip()
  152. if text:
  153. seq_counter += 1
  154. srt += '%s\r\n%s --> %s\r\n%s\r\n\r\n' % (seq_counter, appear_time, disappear_time, text)
  155. if srt:
  156. return srt
  157. def _get_subtitles(self, video_id, webpage):
  158. url = 'http://www.lynda.com/ajax/player?videoId=%s&type=transcript' % video_id
  159. subs = self._download_json(url, None, False)
  160. if subs:
  161. return {'en': [{'ext': 'srt', 'data': self._fix_subtitles(subs)}]}
  162. else:
  163. return {}
  164. class LyndaCourseIE(LyndaBaseIE):
  165. IE_NAME = 'lynda:course'
  166. IE_DESC = 'lynda.com online courses'
  167. # Course link equals to welcome/introduction video link of same course
  168. # We will recognize it as course link
  169. _VALID_URL = r'https?://(?:www|m)\.lynda\.com/(?P<coursepath>[^/]+/[^/]+/(?P<courseid>\d+))-\d\.html'
  170. def _real_extract(self, url):
  171. mobj = re.match(self._VALID_URL, url)
  172. course_path = mobj.group('coursepath')
  173. course_id = mobj.group('courseid')
  174. page = self._download_webpage(
  175. 'http://www.lynda.com/ajax/player?courseId=%s&type=course' % course_id,
  176. course_id, 'Downloading course JSON')
  177. course_json = json.loads(page)
  178. if 'Status' in course_json and course_json['Status'] == 'NotFound':
  179. raise ExtractorError(
  180. 'Course %s does not exist' % course_id, expected=True)
  181. unaccessible_videos = 0
  182. videos = []
  183. # Might want to extract videos right here from video['Formats'] as it seems 'Formats' is not provided
  184. # by single video API anymore
  185. for chapter in course_json['Chapters']:
  186. for video in chapter['Videos']:
  187. if video['HasAccess'] is False:
  188. unaccessible_videos += 1
  189. continue
  190. videos.append(video['ID'])
  191. if unaccessible_videos > 0:
  192. self._downloader.report_warning(
  193. '%s videos are only available for members (or paid members) and will not be downloaded. '
  194. % unaccessible_videos + self._ACCOUNT_CREDENTIALS_HINT)
  195. entries = [
  196. self.url_result(
  197. 'http://www.lynda.com/%s/%s-4.html' % (course_path, video_id),
  198. 'Lynda')
  199. for video_id in videos]
  200. course_title = course_json['Title']
  201. return self.playlist_result(entries, course_id, course_title)