[xfileshare] Skip an invalid test
[youtube-dl] / youtube_dl / extractor / xfileshare.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 import re
5
6 from .common import InfoExtractor
7 from ..utils import (
8     ExtractorError,
9     int_or_none,
10     sanitized_Request,
11     urlencode_postdata,
12 )
13
14
15 class XFileShareIE(InfoExtractor):
16     _SITES = (
17         ('daclips.in', 'DaClips'),
18         ('filehoot.com', 'FileHoot'),
19         ('gorillavid.in', 'GorillaVid'),
20         ('movpod.in', 'MovPod'),
21         ('powerwatch.pw', 'PowerWatch'),
22         ('rapidvideo.ws', 'Rapidvideo.ws'),
23         ('thevideobee.to', 'TheVideoBee'),
24         ('vidto.me', 'Vidto'),
25         ('streamin.to', 'Streamin.To'),
26     )
27
28     IE_DESC = 'XFileShare based sites: %s' % ', '.join(list(zip(*_SITES))[1])
29     _VALID_URL = (r'https?://(?P<host>(?:www\.)?(?:%s))/(?:embed-)?(?P<id>[0-9a-zA-Z]+)'
30                   % '|'.join(re.escape(site) for site in list(zip(*_SITES))[0]))
31
32     _FILE_NOT_FOUND_REGEX = r'>(?:404 - )?File Not Found<'
33
34     _TESTS = [{
35         'url': 'http://gorillavid.in/06y9juieqpmi',
36         'md5': '5ae4a3580620380619678ee4875893ba',
37         'info_dict': {
38             'id': '06y9juieqpmi',
39             'ext': 'flv',
40             'title': 'Rebecca Black My Moment Official Music Video Reaction-6GK87Rc8bzQ',
41             'thumbnail': 're:http://.*\.jpg',
42         },
43     }, {
44         'url': 'http://gorillavid.in/embed-z08zf8le23c6-960x480.html',
45         'only_matching': True,
46     }, {
47         'url': 'http://daclips.in/3rso4kdn6f9m',
48         'md5': '1ad8fd39bb976eeb66004d3a4895f106',
49         'info_dict': {
50             'id': '3rso4kdn6f9m',
51             'ext': 'mp4',
52             'title': 'Micro Pig piglets ready on 16th July 2009-bG0PdrCdxUc',
53             'thumbnail': 're:http://.*\.jpg',
54         }
55     }, {
56         'url': 'http://movpod.in/0wguyyxi1yca',
57         'only_matching': True,
58     }, {
59         'url': 'http://filehoot.com/3ivfabn7573c.html',
60         'info_dict': {
61             'id': '3ivfabn7573c',
62             'ext': 'mp4',
63             'title': 'youtube-dl test video \'äBaW_jenozKc.mp4.mp4',
64             'thumbnail': 're:http://.*\.jpg',
65         },
66         'skip': 'Video removed',
67     }, {
68         'url': 'http://vidto.me/ku5glz52nqe1.html',
69         'info_dict': {
70             'id': 'ku5glz52nqe1',
71             'ext': 'mp4',
72             'title': 'test'
73         }
74     }, {
75         'url': 'http://powerwatch.pw/duecjibvicbu',
76         'info_dict': {
77             'id': 'duecjibvicbu',
78             'ext': 'mp4',
79             'title': 'Big Buck Bunny trailer',
80         },
81     }]
82
83     def _real_extract(self, url):
84         mobj = re.match(self._VALID_URL, url)
85         video_id = mobj.group('id')
86
87         url = 'http://%s/%s' % (mobj.group('host'), video_id)
88         webpage = self._download_webpage(url, video_id)
89
90         if re.search(self._FILE_NOT_FOUND_REGEX, webpage) is not None:
91             raise ExtractorError('Video %s does not exist' % video_id, expected=True)
92
93         fields = self._hidden_inputs(webpage)
94
95         if fields['op'] == 'download1':
96             countdown = int_or_none(self._search_regex(
97                 r'<span id="countdown_str">(?:[Ww]ait)?\s*<span id="cxc">(\d+)</span>\s*(?:seconds?)?</span>',
98                 webpage, 'countdown', default=None))
99             if countdown:
100                 self._sleep(countdown, video_id)
101
102             post = urlencode_postdata(fields)
103
104             req = sanitized_Request(url, post)
105             req.add_header('Content-type', 'application/x-www-form-urlencoded')
106
107             webpage = self._download_webpage(req, video_id, 'Downloading video page')
108
109         title = (self._search_regex(
110             [r'style="z-index: [0-9]+;">([^<]+)</span>',
111              r'<td nowrap>([^<]+)</td>',
112              r'h4-fine[^>]*>([^<]+)<',
113              r'>Watch (.+) ',
114              r'<h2 class="video-page-head">([^<]+)</h2>'],
115             webpage, 'title', default=None) or self._og_search_title(webpage)).strip()
116         video_url = self._search_regex(
117             [r'file\s*:\s*["\'](http[^"\']+)["\'],',
118              r'file_link\s*=\s*\'(https?:\/\/[0-9a-zA-z.\/\-_]+)'],
119             webpage, 'file url')
120         thumbnail = self._search_regex(
121             r'image\s*:\s*["\'](http[^"\']+)["\'],', webpage, 'thumbnail', default=None)
122
123         formats = [{
124             'format_id': 'sd',
125             'url': video_url,
126             'quality': 1,
127         }]
128
129         return {
130             'id': video_id,
131             'title': title,
132             'thumbnail': thumbnail,
133             'formats': formats,
134         }