mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 09:47:07 -05:00 
			
		
		
		
	compat_urllib_request.Request [downloader/dash] Use sanitized_Request [downloader/http] Use sanitized_Request [atresplayer] Use sanitized_Request [bambuser] Use sanitized_Request [bliptv] Use sanitized_Request [brightcove] Use sanitized_Request [cbs] Use sanitized_Request [ceskatelevize] Use sanitized_Request [collegerama] Use sanitized_Request [extractor/common] Use sanitized_Request [crunchyroll] Use sanitized_Request [dailymotion] Use sanitized_Request [dcn] Use sanitized_Request [dramafever] Use sanitized_Request [dumpert] Use sanitized_Request [eitb] Use sanitized_Request [escapist] Use sanitized_Request [everyonesmixtape] Use sanitized_Request [extremetube] Use sanitized_Request [facebook] Use sanitized_Request [fc2] Use sanitized_Request [flickr] Use sanitized_Request [4tube] Use sanitized_Request [gdcvault] Use sanitized_Request [extractor/generic] Use sanitized_Request [hearthisat] Use sanitized_Request [hotnewhiphop] Use sanitized_Request [hypem] Use sanitized_Request [iprima] Use sanitized_Request [ivi] Use sanitized_Request [keezmovies] Use sanitized_Request [letv] Use sanitized_Request [lynda] Use sanitized_Request [metacafe] Use sanitized_Request [minhateca] Use sanitized_Request [miomio] Use sanitized_Request [meovideo] Use sanitized_Request [mofosex] Use sanitized_Request [moniker] Use sanitized_Request [mooshare] Use sanitized_Request [movieclips] Use sanitized_Request [mtv] Use sanitized_Request [myvideo] Use sanitized_Request [neteasemusic] Use sanitized_Request [nfb] Use sanitized_Request [niconico] Use sanitized_Request [noco] Use sanitized_Request [nosvideo] Use sanitized_Request [novamov] Use sanitized_Request [nowness] Use sanitized_Request [nuvid] Use sanitized_Request [played] Use sanitized_Request [pluralsight] Use sanitized_Request [pornhub] Use sanitized_Request [pornotube] Use sanitized_Request [primesharetv] Use sanitized_Request [promptfile] Use sanitized_Request [qqmusic] Use sanitized_Request [rtve] Use sanitized_Request [safari] Use sanitized_Request [sandia] Use sanitized_Request [shared] Use sanitized_Request [sharesix] Use sanitized_Request [sina] Use sanitized_Request [smotri] Use sanitized_Request [sohu] Use sanitized_Request [spankwire] Use sanitized_Request [sportdeutschland] Use sanitized_Request [streamcloud] Use sanitized_Request [streamcz] Use sanitized_Request [tapely] Use sanitized_Request [tube8] Use sanitized_Request [tubitv] Use sanitized_Request [twitch] Use sanitized_Request [twitter] Use sanitized_Request [udemy] Use sanitized_Request [vbox7] Use sanitized_Request [veoh] Use sanitized_Request [vessel] Use sanitized_Request [vevo] Use sanitized_Request [viddler] Use sanitized_Request [videomega] Use sanitized_Request [viewvster] Use sanitized_Request [viki] Use sanitized_Request [vk] Use sanitized_Request [vodlocker] Use sanitized_Request [voicerepublic] Use sanitized_Request [wistia] Use sanitized_Request [xfileshare] Use sanitized_Request [xtube] Use sanitized_Request [xvideos] Use sanitized_Request [yandexmusic] Use sanitized_Request [youku] Use sanitized_Request [youporn] Use sanitized_Request [youtube] Use sanitized_Request [patreon] Use sanitized_Request [extractor/common] Remove unused import [nfb] PEP 8
		
			
				
	
	
		
			157 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			157 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# encoding: utf-8
 | 
						|
from __future__ import unicode_literals
 | 
						|
 | 
						|
import re
 | 
						|
 | 
						|
from .common import InfoExtractor
 | 
						|
from .brightcove import BrightcoveLegacyIE
 | 
						|
 | 
						|
from ..compat import compat_urllib_parse
 | 
						|
from ..utils import (
 | 
						|
    ExtractorError,
 | 
						|
    sanitized_Request,
 | 
						|
    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>'
 | 
						|
    _NETRC_MACHINE = 'safari'
 | 
						|
 | 
						|
    _API_BASE = 'https://www.safaribooksonline.com/api/v1/book'
 | 
						|
    _API_FORMAT = 'json'
 | 
						|
 | 
						|
    LOGGED_IN = False
 | 
						|
 | 
						|
    def _real_initialize(self):
 | 
						|
        # We only need to log in once for courses or individual videos
 | 
						|
        if not self.LOGGED_IN:
 | 
						|
            self._login()
 | 
						|
            SafariBaseIE.LOGGED_IN = True
 | 
						|
 | 
						|
    def _login(self):
 | 
						|
        (username, password) = self._get_login_info()
 | 
						|
        if username is None:
 | 
						|
            self.raise_login_required('safaribooksonline.com account is required')
 | 
						|
 | 
						|
        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"name='csrfmiddlewaretoken'\s+value='([^']+)'",
 | 
						|
            login_page, 'csrf token')
 | 
						|
 | 
						|
        login_form = {
 | 
						|
            'csrfmiddlewaretoken': csrf,
 | 
						|
            'email': username,
 | 
						|
            'password1': password,
 | 
						|
            'login': 'Sign In',
 | 
						|
            'next': '',
 | 
						|
        }
 | 
						|
 | 
						|
        request = sanitized_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'''(?x)https?://
 | 
						|
                            (?:www\.)?safaribooksonline\.com/
 | 
						|
                                (?:
 | 
						|
                                    library/view/[^/]+|
 | 
						|
                                    api/v1/book
 | 
						|
                                )/
 | 
						|
                                (?P<course_id>[^/]+)/
 | 
						|
                                    (?:chapter(?:-content)?/)?
 | 
						|
                                (?P<part>part\d+)\.html
 | 
						|
    '''
 | 
						|
 | 
						|
    _TESTS = [{
 | 
						|
        'url': 'https://www.safaribooksonline.com/library/view/hadoop-fundamentals-livelessons/9780133392838/part00.html',
 | 
						|
        'md5': '5b0c4cc1b3c1ba15dda7344085aa5592',
 | 
						|
        'info_dict': {
 | 
						|
            'id': '2842601850001',
 | 
						|
            'ext': 'mp4',
 | 
						|
            'title': 'Introduction',
 | 
						|
        },
 | 
						|
        'skip': 'Requires safaribooksonline account credentials',
 | 
						|
    }, {
 | 
						|
        'url': 'https://www.safaribooksonline.com/api/v1/book/9780133392838/chapter/part00.html',
 | 
						|
        'only_matching': True,
 | 
						|
    }, {
 | 
						|
        # non-digits in course id
 | 
						|
        'url': 'https://www.safaribooksonline.com/library/view/create-a-nodejs/100000006A0210/part00.html',
 | 
						|
        'only_matching': True,
 | 
						|
    }]
 | 
						|
 | 
						|
    def _real_extract(self, url):
 | 
						|
        mobj = re.match(self._VALID_URL, url)
 | 
						|
        course_id = mobj.group('course_id')
 | 
						|
        part = mobj.group('part')
 | 
						|
 | 
						|
        webpage = self._download_webpage(
 | 
						|
            '%s/%s/chapter-content/%s.html' % (self._API_BASE, course_id, part),
 | 
						|
            part)
 | 
						|
 | 
						|
        bc_url = BrightcoveLegacyIE._extract_brightcove_url(webpage)
 | 
						|
        if not bc_url:
 | 
						|
            raise ExtractorError('Could not extract Brightcove URL from %s' % url, expected=True)
 | 
						|
 | 
						|
        return self.url_result(smuggle_url(bc_url, {'Referer': url}), 'BrightcoveLegacy')
 | 
						|
 | 
						|
 | 
						|
class SafariCourseIE(SafariBaseIE):
 | 
						|
    IE_NAME = 'safari:course'
 | 
						|
    IE_DESC = 'safaribooksonline.com online courses'
 | 
						|
 | 
						|
    _VALID_URL = r'https?://(?:www\.)?safaribooksonline\.com/(?:library/view/[^/]+|api/v1/book)/(?P<id>[^/]+)/?(?:[#?]|$)'
 | 
						|
 | 
						|
    _TESTS = [{
 | 
						|
        'url': 'https://www.safaribooksonline.com/library/view/hadoop-fundamentals-livelessons/9780133392838/',
 | 
						|
        'info_dict': {
 | 
						|
            'id': '9780133392838',
 | 
						|
            'title': 'Hadoop Fundamentals LiveLessons',
 | 
						|
        },
 | 
						|
        'playlist_count': 22,
 | 
						|
        'skip': 'Requires safaribooksonline account credentials',
 | 
						|
    }, {
 | 
						|
        'url': 'https://www.safaribooksonline.com/api/v1/book/9781449396459/?override_format=json',
 | 
						|
        'only_matching': True,
 | 
						|
    }]
 | 
						|
 | 
						|
    def _real_extract(self, url):
 | 
						|
        course_id = self._match_id(url)
 | 
						|
 | 
						|
        course_json = self._download_json(
 | 
						|
            '%s/%s/?override_format=%s' % (self._API_BASE, course_id, self._API_FORMAT),
 | 
						|
            course_id, 'Downloading course JSON')
 | 
						|
 | 
						|
        if 'chapters' not in course_json:
 | 
						|
            raise ExtractorError(
 | 
						|
                'No chapters found for course %s' % course_id, expected=True)
 | 
						|
 | 
						|
        entries = [
 | 
						|
            self.url_result(chapter, 'Safari')
 | 
						|
            for chapter in course_json['chapters']]
 | 
						|
 | 
						|
        course_title = course_json['title']
 | 
						|
 | 
						|
        return self.playlist_result(entries, course_id, course_title)
 |