1
0
mirror of https://codeberg.org/polarisfm/youtube-dl synced 2024-11-24 01:14:32 +01:00
youtube-dl/youtube_dl/extractor/intldropout.py

109 lines
4.7 KiB
Python
Raw Normal View History

# coding: utf-8
from __future__ import unicode_literals
from .vimeo import VHXEmbedIE
from ..utils import (
ExtractorError,
sanitized_Request,
2019-02-20 18:58:00 +01:00
urlencode_postdata,
RegexNotFoundError
)
import re
# https://intl.dropout.tv/login
# GET
# authenticity_token
# https://intl.dropout.tv/login
# POST
# authenticity_token
# email
# password
# utf8 ✓
# https://embed.vhx.tv/videos/414462?api=1&autoplay=1&referrer=https%3A%2F%2Fintl.dropout.tv%2Fbrowse&playsinline=1&title=0&context=https%3A%2F%2Fintl.dropout.tv%2Fbrowse&back=Browse&color=feea3b&sharing=1&auth-user-token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjo1Mzk0NDEwLCJleHAiOjE1NDc0NzA1NDB9._y4H94pKyIOu_GT11qC2SeJnSou6EzN9jI1A-P3tbo8&live=0
# https://vhx-adaptive-hap.akamaized.net/-ctx--user_id,5394410--platform_id,27--video_id,414462--channel_id,55407--plan,standard-/vods3cf/0/amlst:c-55407/v-414462/2220471,2220472,2220473,2220474,2220475,2220476/playlist.m3u8?token=exp=1547481565~acl=/-ctx--user_id,5394410--platform_id,27--video_id,414462--channel_id,55407--plan,standard-/vods3cf/0/amlst:c-55407/v-414462/2220471,2220472,2220473,2220474,2220475,2220476/*~hmac=ceb8508146d2dec2b868db9ca304ec13d54502cca0a7d1cd0def7a85a9ef3962&
# https://api.vhx.tv/videos/414462/files?auth_user_token=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ1c2VyX2lkIjo1Mzk0NDEwLCJleHAiOjE1NDc0NzA1NDB9._y4H94pKyIOu_GT11qC2SeJnSou6EzN9jI1A-P3tbo8&_=1547463565300
class IntlDropoutIE(VHXEmbedIE):
2019-02-21 18:24:23 +01:00
IE_NAME = 'intldropout'
2019-02-20 18:58:00 +01:00
IE_DESC = 'International Dropout.tv'
2019-02-21 17:19:05 +01:00
_NETRC_MACHINE = 'intl.dropout.tv'
_LOGIN_URL = 'https://intl.dropout.tv/login'
_LOGOUT_URL = 'https://intl.dropout.tv/logout'
2019-02-20 18:58:00 +01:00
_VALID_URL = r'https://intl\.dropout\.tv/(?P<id>.+)'
_TEST = {
'url': 'https://intl.dropout.tv/um-actually/season:1/videos/c-3po-s-origins-hp-lovecraft-the-food-album-with-weird-al-yankovic',
2019-02-21 18:22:42 +01:00
'md5': 'e6cbf01c24ad9fb8281c23357416ec97',
'info_dict': {
2019-02-21 18:22:42 +01:00
'id': '397785',
'ext': 'mp4',
2019-02-21 18:22:42 +01:00
'title': "C-3PO's Origins, HP Lovecraft, the Food Album (with Weird Al Yankovic)",
'thumbnail': r're:^https?://.*\.jpg$',
2019-02-21 18:22:42 +01:00
'description': 'Caldwell Tanner, Siobhan Thompson, and Nate Dern inspect guns and review the Diagon Alley bar scene.',
'upload_date': '20181206',
'timestamp': 1544117975,
}
}
def _real_initialize(self):
self._login()
def _login(self):
email, password = self._get_login_info()
if email is None or password is None:
if self._downloader.params.get('cookiefile') is None:
raise ExtractorError('No login info available, needed for using %s.' % self.IE_NAME, expected=True)
return True
2019-02-20 18:58:00 +01:00
login_page = self._download_webpage(
self._LOGIN_URL, None,
note='Downloading login page',
2019-02-21 18:22:42 +01:00
errnote='unable to fetch login page', fatal=False,
expected_status=200
)
2019-02-20 18:58:00 +01:00
if login_page is False:
return
2019-02-20 18:58:00 +01:00
login_form = self._hidden_inputs(login_page)
login_form.update({
'passwordless': 0,
'email': email,
'password': password
})
2019-02-20 18:58:00 +01:00
request = sanitized_Request(
self._LOGIN_URL, urlencode_postdata(login_form))
request.add_header('Content-Type', 'application/x-www-form-urlencoded')
try:
2019-02-21 18:22:42 +01:00
self._download_webpage(request, None, 'Logging in', expected_status=302)
except Exception:
2019-02-21 18:22:42 +01:00
raise ExtractorError(
'Unable to login',
expected=True)
2019-02-20 18:58:00 +01:00
def _real_extract(self, url):
2019-02-20 18:58:00 +01:00
try:
2019-02-21 18:22:42 +01:00
webpage = self._download_webpage(url, None, expected_status=200)
except Exception:
raise ExtractorError(
'Unable to fetch page',
expected=True)
try:
video = self._html_search_regex(r'<iframe[^>]*"(?P<embed>https://embed.vhx.tv/videos/[0-9]+[^"]*)"[^>]*>', webpage, 'embed')
2019-02-20 18:58:00 +01:00
except RegexNotFoundError:
items = re.findall(r'<a href="(?P<url>https://intl.dropout.tv/videos/[^"]+)"', webpage)
playlist_id = self._search_regex(r'https://intl.dropout.tv/(?P<id>.+)', url, 'id')
playlist_title = self._html_search_regex(r'<h1 class="[^"]*collection-title[^"]*"[^>]*>(?P<title>[^<]+)<', webpage, 'title')
return self.playlist_from_matches(items, playlist_id=playlist_id, playlist_title=playlist_title)
2019-02-21 18:22:42 +01:00
video_id = self._search_regex(r'https://embed.vhx.tv/videos/(?P<id>[0-9]+)', video, 'id')
video_title = self._html_search_regex(r'<h1 class="[^"]*video-title[^"]*"[^>]*>(<strong>)?(?P<title>[^<]+)<', webpage, 'title')
return self.url_result(video, video_id=video_id, video_title=video_title)