]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/shared.py
Add support for https for all extractors as preventive and future-proof measure
[yt-dlp.git] / youtube_dl / extractor / shared.py
CommitLineData
916c1452
S
1from __future__ import unicode_literals
2
916c1452
S
3import base64
4
5from .common import InfoExtractor
5c2266df 6from ..compat import compat_urllib_parse
916c1452
S
7from ..utils import (
8 ExtractorError,
916c1452 9 int_or_none,
5c2266df 10 sanitized_Request,
916c1452
S
11)
12
13
14class SharedIE(InfoExtractor):
70113c38 15 IE_DESC = 'shared.sx and vivo.sx'
5886b38d 16 _VALID_URL = r'https?://(?:shared|vivo)\.sx/(?P<id>[\da-z]{10})'
916c1452 17
f62e02c2 18 _TESTS = [{
916c1452 19 'url': 'http://shared.sx/0060718775',
32582633 20 'md5': '106fefed92a8a2adb8c98e6a0652f49b',
916c1452
S
21 'info_dict': {
22 'id': '0060718775',
23 'ext': 'mp4',
32582633 24 'title': 'Bmp4',
f11c3163 25 'filesize': 1720110,
916c1452 26 },
f62e02c2
S
27 }, {
28 'url': 'http://vivo.sx/d7ddda0e78',
29 'md5': '15b3af41be0b4fe01f4df075c2678b2c',
30 'info_dict': {
31 'id': 'd7ddda0e78',
32 'ext': 'mp4',
33 'title': 'Chicken',
34 'filesize': 528031,
35 },
36 }]
916c1452
S
37
38 def _real_extract(self, url):
1cc79574
PH
39 video_id = self._match_id(url)
40 webpage = self._download_webpage(url, video_id)
916c1452 41
1cc79574
PH
42 if '>File does not exist<' in webpage:
43 raise ExtractorError(
44 'Video %s does not exist' % video_id, expected=True)
916c1452 45
f8da79f8 46 download_form = self._hidden_inputs(webpage)
5c2266df 47 request = sanitized_Request(
1cc79574 48 url, compat_urllib_parse.urlencode(download_form))
916c1452
S
49 request.add_header('Content-Type', 'application/x-www-form-urlencoded')
50
1cc79574
PH
51 video_page = self._download_webpage(
52 request, video_id, 'Downloading video page')
916c1452 53
1cc79574
PH
54 video_url = self._html_search_regex(
55 r'data-url="([^"]+)"', video_page, 'video URL')
56 title = base64.b64decode(self._html_search_meta(
43150d7a 57 'full:title', webpage, 'title').encode('utf-8')).decode('utf-8')
1cc79574
PH
58 filesize = int_or_none(self._html_search_meta(
59 'full:size', webpage, 'file size', fatal=False))
916c1452 60 thumbnail = self._html_search_regex(
1cc79574 61 r'data-poster="([^"]+)"', video_page, 'thumbnail', default=None)
916c1452
S
62
63 return {
64 'id': video_id,
65 'url': video_url,
66 'ext': 'mp4',
67 'filesize': filesize,
68 'title': title,
69 'thumbnail': thumbnail,
5f6a1245 70 }