]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/vodlocker.py
Use urlencode_postdata across the codebase
[yt-dlp.git] / youtube_dl / extractor / vodlocker.py
CommitLineData
537ba6f3 1# -*- coding: utf-8 -*-
2from __future__ import unicode_literals
3
537ba6f3 4from .common import InfoExtractor
af284305
S
5from ..utils import (
6 ExtractorError,
fbd90643 7 NO_DEFAULT,
af284305 8 sanitized_Request,
6e6bc8da 9 urlencode_postdata,
af284305 10)
537ba6f3 11
12
13class VodlockerIE(InfoExtractor):
fbd90643 14 _VALID_URL = r'https?://(?:www\.)?vodlocker\.(?:com|city)/(?:embed-)?(?P<id>[0-9a-zA-Z]+)(?:\..*?)?'
537ba6f3 15
16 _TESTS = [{
17 'url': 'http://vodlocker.com/e8wvyzz4sl42',
18 'md5': 'ce0c2d18fa0735f1bd91b69b0e54aacf',
19 'info_dict': {
20 'id': 'e8wvyzz4sl42',
21 'ext': 'mp4',
22 'title': 'Germany vs Brazil',
23 'thumbnail': 're:http://.*\.jpg',
24 },
25 }]
26
27 def _real_extract(self, url):
1cc79574 28 video_id = self._match_id(url)
537ba6f3 29 webpage = self._download_webpage(url, video_id)
30
af284305
S
31 if any(p in webpage for p in (
32 '>THIS FILE WAS DELETED<',
33 '>File Not Found<',
34 'The file you were looking for could not be found, sorry for any inconvenience.<')):
35 raise ExtractorError('Video %s does not exist' % video_id, expected=True)
36
f8da79f8 37 fields = self._hidden_inputs(webpage)
537ba6f3 38
39 if fields['op'] == 'download1':
4094b6e3 40 self._sleep(3, video_id) # they do detect when requests happen too fast!
6e6bc8da 41 post = urlencode_postdata(fields)
5c2266df 42 req = sanitized_Request(url, post)
537ba6f3 43 req.add_header('Content-type', 'application/x-www-form-urlencoded')
4094b6e3
PH
44 webpage = self._download_webpage(
45 req, video_id, 'Downloading video page')
537ba6f3 46
fbd90643
S
47 def extract_file_url(html, default=NO_DEFAULT):
48 return self._search_regex(
49 r'file:\s*"(http[^\"]+)",', html, 'file url', default=default)
50
51 video_url = extract_file_url(webpage, default=None)
52
53 if not video_url:
54 embed_url = self._search_regex(
55 r'<iframe[^>]+src=(["\'])(?P<url>(?:https?://)?vodlocker\.(?:com|city)/embed-.+?)\1',
56 webpage, 'embed url', group='url')
57 embed_webpage = self._download_webpage(
58 embed_url, video_id, 'Downloading embed webpage')
59 video_url = extract_file_url(embed_webpage)
60 thumbnail_webpage = embed_webpage
61 else:
62 thumbnail_webpage = webpage
63
4094b6e3 64 title = self._search_regex(
b7b04c92 65 r'id="file_title".*?>\s*(.*?)\s*<(?:br|span)', webpage, 'title')
4094b6e3 66 thumbnail = self._search_regex(
fbd90643 67 r'image:\s*"(http[^\"]+)",', thumbnail_webpage, 'thumbnail', fatal=False)
537ba6f3 68
69 formats = [{
70 'format_id': 'sd',
fbd90643 71 'url': video_url,
537ba6f3 72 }]
73
74 return {
75 'id': video_id,
76 'title': title,
77 'thumbnail': thumbnail,
78 'formats': formats,
79 }