2 from __future__ import unicode_literals
6 from .common import InfoExtractor
17 class HostingBulkIE(InfoExtractor):
19 https?://(?:www\.)?hostingbulk\.com/
20 (?:embed-)?(?P<id>[A-Za-z0-9]{12})(?:-\d+x\d+)?\.html'''
21 _FILE_DELETED_REGEX = r'<b>File Not Found</b>'
23 'url': 'http://hostingbulk.com/n0ulw1hv20fm.html',
24 'md5': '6c8653c8ecf7ebfa83b76e24b7b2fe3f',
28 'title': 'md5:5afeba33f48ec87219c269e054afd622',
30 'thumbnail': 're:^http://.*\.jpg$',
34 def _real_extract(self, url):
35 video_id = self._match_id(url)
36 url = 'http://hostingbulk.com/{0:}.html'.format(video_id)
38 # Custom request with cookie to set language to English, so our file
39 # deleted regex would work.
40 request = compat_urllib_request.Request(
41 url, headers={'Cookie': 'lang=english'})
42 webpage = self._download_webpage(request, video_id)
44 if re.search(self._FILE_DELETED_REGEX, webpage) is not None:
45 raise ExtractorError('Video %s does not exist' % video_id,
48 title = self._html_search_regex(r'<h3>(.*?)</h3>', webpage, 'title')
49 filesize = int_or_none(
51 r'<small>\((\d+)\sbytes?\)</small>',
57 thumbnail = self._search_regex(
58 r'<img src="([^"]+)".+?class="pic"',
59 webpage, 'thumbnail', fatal=False)
61 fields = self._hidden_inputs(webpage)
63 request = compat_urllib_request.Request(url, urlencode_postdata(fields))
64 request.add_header('Content-type', 'application/x-www-form-urlencoded')
65 response = self._request_webpage(request, video_id,
66 'Submiting download request')
67 video_url = response.geturl()
78 'thumbnail': thumbnail,