aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-03-26 23:57:13 +0600
committerSergey M․ <dstftw@gmail.com>2015-03-26 23:57:13 +0600
commitac0df2350a5ff4fcedd7502df127300361595d7e (patch)
tree42a134bbeb1c90f215e2ffa0e98c8d64bb7a80d6 /youtube_dl
parent223b27f46cdf3cde9c9556dac19055ad5d8bff5f (diff)
parent32d687f55e103963a2cb8d8f3f88bb31b9cb8fb6 (diff)
downloadyoutube-dl-ac0df2350a5ff4fcedd7502df127300361595d7e.tar.xz
Merge branch 'master' of https://github.com/zx8/youtube-dl into zx8-master
Diffstat (limited to 'youtube_dl')
-rw-r--r--youtube_dl/extractor/__init__.py4
-rw-r--r--youtube_dl/extractor/safari.py144
2 files changed, 148 insertions, 0 deletions
diff --git a/youtube_dl/extractor/__init__.py b/youtube_dl/extractor/__init__.py
index 053eb32ae..d56eb6448 100644
--- a/youtube_dl/extractor/__init__.py
+++ b/youtube_dl/extractor/__init__.py
@@ -420,6 +420,10 @@ from .rutube import (
)
from .rutv import RUTVIE
from .sandia import SandiaIE
+from .safari import (
+ SafariIE,
+ SafariCourseIE,
+)
from .sapo import SapoIE
from .savefrom import SaveFromIE
from .sbs import SBSIE
diff --git a/youtube_dl/extractor/safari.py b/youtube_dl/extractor/safari.py
new file mode 100644
index 000000000..3e494b960
--- /dev/null
+++ b/youtube_dl/extractor/safari.py
@@ -0,0 +1,144 @@
+# encoding: utf-8
+from __future__ import unicode_literals
+
+import re
+import json
+
+from .common import InfoExtractor
+from .brightcove import BrightcoveIE
+
+from ..compat import (
+ compat_urllib_parse,
+ compat_urllib_request,
+)
+from ..utils import (
+ ExtractorError,
+ smuggle_url,
+ std_headers,
+)
+
+
+class SafariBaseIE(InfoExtractor):
+ _LOGIN_URL = 'https://www.safaribooksonline.com/accounts/login/'
+ _SUCCESSFUL_LOGIN_REGEX = r'<a href="/accounts/logout/"[^>]+>Sign Out</a>'
+ _ACCOUNT_CREDENTIALS_HINT = ('Use --username and --password options to '
+ 'supply credentials for safaribooksonline.com ')
+ _NETRC_MACHINE = 'safaribooksonline'
+
+ LOGGED_IN = False
+
+ def _real_initialize(self):
+ # We only need to log in once for courses or individual videos
+ if not SafariBaseIE.LOGGED_IN:
+ self._login()
+ SafariBaseIE.LOGGED_IN = True
+
+ def _login(self):
+ (username, password) = self._get_login_info()
+ if username is None:
+ raise ExtractorError(
+ self._ACCOUNT_CREDENTIALS_HINT,
+ expected=True)
+
+ headers = std_headers
+ if 'Referer' not in headers:
+ headers['Referer'] = self._LOGIN_URL
+
+ login_page = self._download_webpage(
+ self._LOGIN_URL, None,
+ 'Downloading login form')
+
+ csrf = self._html_search_regex(
+ r"<input +type='hidden' +name='csrfmiddlewaretoken' +value='([^']+)' +/>",
+ login_page, 'csrf token')
+
+ login_form = {
+ 'csrfmiddlewaretoken': csrf,
+ 'email': username,
+ 'password1': password,
+ 'login': 'Sign In',
+ 'next': '',
+ }
+
+ request = compat_urllib_request.Request(
+ self._LOGIN_URL, compat_urllib_parse.urlencode(login_form), headers=headers)
+ login_page = self._download_webpage(
+ request, None, 'Logging in as %s' % username)
+
+ if re.search(self._SUCCESSFUL_LOGIN_REGEX, login_page) is None:
+ raise ExtractorError('Login failed; make sure your credentials are correct and '
+ 'try again.', expected=True)
+
+ self.to_screen('Login successful')
+
+
+class SafariIE(SafariBaseIE):
+ IE_NAME = 'safari'
+ IE_DESC = 'safaribooksonline.com online video'
+ _VALID_URL = (r'https?://(?:www\.)?safaribooksonline\.com/library/view/[^/]+/'
+ '(?P<id>\d+)/(?P<part>part\d+)\.html')
+ _TEST = {
+ 'url': ('https://www.safaribooksonline.com/library/view/'
+ 'hadoop-fundamentals-livelessons/9780133392838/part00.html'),
+ 'md5': '5b0c4cc1b3c1ba15dda7344085aa5592',
+ 'info_dict': {
+ 'id': '9780133392838',
+ 'ext': 'mp4',
+ 'title': 'Introduction',
+ }
+ }
+
+ def _real_extract(self, url):
+ mobj = re.match(self._VALID_URL, url)
+ part = mobj.group('part')
+
+ webpage = self._download_webpage(url, part)
+ bc_url = BrightcoveIE._extract_brightcove_url(webpage)
+ if not bc_url:
+ raise ExtractorError('Could not extract Brightcove URL from %s' % url, expected=True)
+
+ return {
+ '_type': 'url',
+ 'url': smuggle_url(bc_url, {'Referer': url}),
+ 'ie_key': 'Brightcove'
+ }
+
+
+class SafariCourseIE(SafariBaseIE):
+ IE_NAME = 'safari:course'
+ IE_DESC = 'safaribooksonline.com online courses'
+
+ _VALID_URL = (r'https?://(?:www\.)?safaribooksonline\.com/library/view/'
+ '(?P<course_path>[^/]+)/(?P<id>\d+)/?$')
+
+ _API_BASE = 'https://www.safaribooksonline.com/api/v1/book'
+ _API_FORMAT = 'json'
+
+ def _real_extract(self, url):
+ mobj = re.match(self._VALID_URL, url)
+ course_path = mobj.group('course_path')
+ course_id = mobj.group('id')
+
+ webpage = self._download_webpage(
+ '%s/%s/?override_format=%s' % (self._API_BASE, course_id, self._API_FORMAT),
+ course_path, 'Downloading course JSON')
+
+ course_json = json.loads(webpage)
+
+ if 'chapters' not in course_json:
+ raise ExtractorError('No chapters found for course %s' % course_id, expected=True)
+
+ num_parts = len(course_json['chapters'])
+ parts = ['%02d' % part for part in range(num_parts)]
+
+ entries = [
+ self.url_result(
+ 'https://www.safaribooksonline.com/library/view/%s/%s/part%s.html' % (course_path,
+ course_id,
+ part_id),
+ 'Safari')
+ for part_id in parts]
+
+ course_title = course_json['title']
+
+ return self.playlist_result(entries, course_id, course_title)