2014-07-11 21:42:42 +00:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import re
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2014-12-13 11:24:42 +00:00
|
|
|
from ..compat import (
|
2014-07-11 21:42:42 +00:00
|
|
|
compat_urllib_parse,
|
|
|
|
compat_urllib_request,
|
|
|
|
)
|
2014-12-13 11:24:42 +00:00
|
|
|
from ..utils import (
|
|
|
|
ExtractorError,
|
|
|
|
)
|
2014-07-11 21:42:42 +00:00
|
|
|
|
|
|
|
|
|
|
|
class FiredriveIE(InfoExtractor):
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?firedrive\.com/' + \
|
|
|
|
'(?:file|embed)/(?P<id>[0-9a-zA-Z]+)'
|
|
|
|
_FILE_DELETED_REGEX = r'<div class="removed_file_image">'
|
|
|
|
|
|
|
|
_TESTS = [{
|
|
|
|
'url': 'https://www.firedrive.com/file/FEB892FA160EBD01',
|
|
|
|
'md5': 'd5d4252f80ebeab4dc2d5ceaed1b7970',
|
|
|
|
'info_dict': {
|
|
|
|
'id': 'FEB892FA160EBD01',
|
|
|
|
'ext': 'flv',
|
|
|
|
'title': 'bbb_theora_486kbit.flv',
|
2014-07-12 12:27:14 +00:00
|
|
|
'thumbnail': 're:^http://.*\.jpg$',
|
2014-07-11 21:42:42 +00:00
|
|
|
},
|
|
|
|
}]
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
2014-12-13 11:24:42 +00:00
|
|
|
video_id = self._match_id(url)
|
2014-07-11 21:42:42 +00:00
|
|
|
url = 'http://firedrive.com/file/%s' % video_id
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
|
|
|
|
if re.search(self._FILE_DELETED_REGEX, webpage) is not None:
|
2014-07-12 12:27:14 +00:00
|
|
|
raise ExtractorError('Video %s does not exist' % video_id,
|
2014-07-11 21:42:42 +00:00
|
|
|
expected=True)
|
|
|
|
|
|
|
|
fields = dict(re.findall(r'''(?x)<input\s+
|
|
|
|
type="hidden"\s+
|
|
|
|
name="([^"]+)"\s+
|
|
|
|
value="([^"]*)"
|
|
|
|
''', webpage))
|
|
|
|
|
|
|
|
post = compat_urllib_parse.urlencode(fields)
|
|
|
|
req = compat_urllib_request.Request(url, post)
|
|
|
|
req.add_header('Content-type', 'application/x-www-form-urlencoded')
|
|
|
|
|
|
|
|
# Apparently, this header is required for confirmation to work.
|
|
|
|
req.add_header('Host', 'www.firedrive.com')
|
|
|
|
|
|
|
|
webpage = self._download_webpage(req, video_id,
|
|
|
|
'Downloading video page')
|
|
|
|
|
|
|
|
title = self._search_regex(r'class="external_title_left">(.+)</div>',
|
|
|
|
webpage, 'title')
|
|
|
|
thumbnail = self._search_regex(r'image:\s?"(//[^\"]+)', webpage,
|
2014-07-12 12:27:14 +00:00
|
|
|
'thumbnail', fatal=False)
|
|
|
|
if thumbnail is not None:
|
|
|
|
thumbnail = 'http:' + thumbnail
|
|
|
|
|
2014-07-11 21:42:42 +00:00
|
|
|
ext = self._search_regex(r'type:\s?\'([^\']+)\',',
|
|
|
|
webpage, 'extension', fatal=False)
|
2014-07-12 12:27:14 +00:00
|
|
|
video_url = self._search_regex(
|
2014-08-05 23:26:42 +00:00
|
|
|
r'file:\s?loadURL\(\'(http[^\']+)\'\),', webpage, 'file url')
|
2014-07-11 21:42:42 +00:00
|
|
|
|
|
|
|
formats = [{
|
|
|
|
'format_id': 'sd',
|
2014-07-12 12:27:14 +00:00
|
|
|
'url': video_url,
|
|
|
|
'ext': ext,
|
2014-07-11 21:42:42 +00:00
|
|
|
}]
|
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'title': title,
|
2014-07-12 12:27:14 +00:00
|
|
|
'thumbnail': thumbnail,
|
2014-07-11 21:42:42 +00:00
|
|
|
'formats': formats,
|
|
|
|
}
|