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.

243 lines
8.6 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. for prioritized_stream_id, prioritized_stream in prioritized_streams.items():
  121. formats.extend([
  122. {
  123. 'url': video_url,
  124. 'width': int_or_none(format_id),
  125. 'format_id': '%s-%s' % (prioritized_stream_id, format_id),
  126. } for format_id, video_url in prioritized_stream.items()
  127. ])
  128. self._check_formats(formats, video_id)
  129. self._sort_formats(formats)
  130. subtitles = self.extract_subtitles(video_id, page)
  131. return {
  132. 'id': video_id,
  133. 'title': title,
  134. 'duration': duration,
  135. 'subtitles': subtitles,
  136. 'formats': formats
  137. }
  138. def _fix_subtitles(self, subs):
  139. srt = ''
  140. seq_counter = 0
  141. for pos in range(0, len(subs) - 1):
  142. seq_current = subs[pos]
  143. m_current = re.match(self._TIMECODE_REGEX, seq_current['Timecode'])
  144. if m_current is None:
  145. continue
  146. seq_next = subs[pos + 1]
  147. m_next = re.match(self._TIMECODE_REGEX, seq_next['Timecode'])
  148. if m_next is None:
  149. continue
  150. appear_time = m_current.group('timecode')
  151. disappear_time = m_next.group('timecode')
  152. text = seq_current['Caption'].strip()
  153. if text:
  154. seq_counter += 1
  155. srt += '%s\r\n%s --> %s\r\n%s\r\n\r\n' % (seq_counter, appear_time, disappear_time, text)
  156. if srt:
  157. return srt
  158. def _get_subtitles(self, video_id, webpage):
  159. url = 'http://www.lynda.com/ajax/player?videoId=%s&type=transcript' % video_id
  160. subs = self._download_json(url, None, False)
  161. if subs:
  162. return {'en': [{'ext': 'srt', 'data': self._fix_subtitles(subs)}]}
  163. else:
  164. return {}
  165. class LyndaCourseIE(LyndaBaseIE):
  166. IE_NAME = 'lynda:course'
  167. IE_DESC = 'lynda.com online courses'
  168. # Course link equals to welcome/introduction video link of same course
  169. # We will recognize it as course link
  170. _VALID_URL = r'https?://(?:www|m)\.lynda\.com/(?P<coursepath>[^/]+/[^/]+/(?P<courseid>\d+))-\d\.html'
  171. def _real_extract(self, url):
  172. mobj = re.match(self._VALID_URL, url)
  173. course_path = mobj.group('coursepath')
  174. course_id = mobj.group('courseid')
  175. page = self._download_webpage(
  176. 'http://www.lynda.com/ajax/player?courseId=%s&type=course' % course_id,
  177. course_id, 'Downloading course JSON')
  178. course_json = json.loads(page)
  179. if 'Status' in course_json and course_json['Status'] == 'NotFound':
  180. raise ExtractorError(
  181. 'Course %s does not exist' % course_id, expected=True)
  182. unaccessible_videos = 0
  183. videos = []
  184. # Might want to extract videos right here from video['Formats'] as it seems 'Formats' is not provided
  185. # by single video API anymore
  186. for chapter in course_json['Chapters']:
  187. for video in chapter['Videos']:
  188. if video['HasAccess'] is False:
  189. unaccessible_videos += 1
  190. continue
  191. videos.append(video['ID'])
  192. if unaccessible_videos > 0:
  193. self._downloader.report_warning(
  194. '%s videos are only available for members (or paid members) and will not be downloaded. '
  195. % unaccessible_videos + self._ACCOUNT_CREDENTIALS_HINT)
  196. entries = [
  197. self.url_result(
  198. 'http://www.lynda.com/%s/%s-4.html' % (course_path, video_id),
  199. 'Lynda')
  200. for video_id in videos]
  201. course_title = course_json['Title']
  202. return self.playlist_result(entries, course_id, course_title)