aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/roosterteeth.py
blob: 4053747d3a994ccbea5165b7746775ebe5b97e60 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
# coding: utf-8
from __future__ import unicode_literals

from .common import InfoExtractor
from ..utils import (
    ExtractorError,
    urlencode_postdata,
)


class RoosterTeethIE(InfoExtractor):
    _VALID_URL = r'https?://(?:.+?\.)?roosterteeth\.com/episode/(?P<id>[^/?#&]+)'
    _LOGIN_URL = 'https://roosterteeth.com/login'
    _NETRC_MACHINE = 'roosterteeth'
    _TESTS = [{
        'url': 'http://roosterteeth.com/episode/million-dollars-but-season-2-million-dollars-but-the-game-announcement',
        'info_dict': {
            'id': '26576',
            'ext': 'mp4',
            'title': 'Million Dollars, But... The Game Announcement',
            'thumbnail': 're:^https?://.*\.png$',
            'description': 'Introducing Million Dollars, But... The Game! Available for pre-order now at www.MDBGame.com ',
            'creator': 'Rooster Teeth',
            'series': 'Million Dollars, But...',
            'episode': 'Million Dollars, But... The Game Announcement',
            'episode_id': '26576',
        },
        'params': {
            'skip_download': True,  # m3u8 downloads
        },
    }, {
        'url': 'http://achievementhunter.roosterteeth.com/episode/off-topic-the-achievement-hunter-podcast-2016-i-didn-t-think-it-would-pass-31',
        'only_matching': True,
    }, {
        'url': 'http://funhaus.roosterteeth.com/episode/funhaus-shorts-2016-austin-sucks-funhaus-shorts',
        'only_matching': True,
    }, {
        'url': 'http://screwattack.roosterteeth.com/episode/death-battle-season-3-mewtwo-vs-shadow',
        'only_matching': True,
    }, {
        'url': 'http://theknow.roosterteeth.com/episode/the-know-game-news-season-1-boring-steam-sales-are-better',
        'only_matching': True,
    }]

    def _login(self):
        (username, password) = self._get_login_info()
        if username is None or password is None:
            return False

        # token is required to authenticate request
        login_page = self._download_webpage(self._LOGIN_URL, None, 'Getting login token', 'Unable to get login token')

        login_form = self._hidden_inputs(login_page)
        login_form.update({
            'username': username,
            'password': password,
        })
        login_payload = urlencode_postdata(login_form)

        # required for proper responses
        login_headers = {
            'Referer': self._LOGIN_URL,
        }

        login_request = self._download_webpage(
            self._LOGIN_URL, None,
            note='Logging in as %s' % username,
            data=login_payload,
            headers=login_headers)

        if 'Authentication failed' in login_request:
            raise ExtractorError(
                'Login failed (invalid username/password)', expected=True)

    def _real_initialize(self):
        self._login()

    def _real_extract(self, url):
        match_id = self._match_id(url)
        webpage = self._download_webpage(url, match_id)

        episode_id = self._html_search_regex(r"commentControls\('#comment-([0-9]+)'\)", webpage, 'episode id', match_id, False)

        self.report_extraction(episode_id)

        title = self._html_search_regex(r'<title>([^<]+)</title>', webpage, 'episode title', self._og_search_title(webpage), False)
        thumbnail = self._og_search_thumbnail(webpage)
        description = self._og_search_description(webpage)
        creator = self._html_search_regex(r'<h3>Latest (.+) Gear</h3>', webpage, 'site', 'Rooster Teeth', False)
        series = self._html_search_regex(r'<h2>More ([^<]+)</h2>', webpage, 'series', fatal=False)
        episode = self._html_search_regex(r'<title>([^<]+)</title>', webpage, 'episode title', fatal=False)

        if '<div class="non-sponsor">' in webpage:
            self.raise_login_required('%s is only available for FIRST members' % title)

        if '<div class="golive-gate">' in webpage:
            self.raise_login_required('%s is not available yet' % title)

        formats = self._extract_m3u8_formats(self._html_search_regex(r"file: '(.+?)m3u8'", webpage, 'm3u8 url') + 'm3u8', episode_id, ext='mp4')
        self._sort_formats(formats)

        return {
            'id': episode_id,
            'title': title,
            'formats': formats,
            'thumbnail': thumbnail,
            'description': description,
            'creator': creator,
            'series': series,
            'episode': episode,
            'episode_id': episode_id,
        }