2014-03-03 21:36:54 -05:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-06-23 14:59:45 -04:00
|
|
|
import json
|
|
|
|
import re
|
|
|
|
import socket
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2014-11-02 05:23:40 -05:00
|
|
|
from ..compat import (
|
2013-06-23 14:59:45 -04:00
|
|
|
compat_http_client,
|
|
|
|
compat_urllib_error,
|
2015-07-17 13:37:56 -04:00
|
|
|
compat_urllib_parse_unquote,
|
2014-11-02 05:23:40 -05:00
|
|
|
)
|
|
|
|
from ..utils import (
|
2015-12-19 20:00:39 -05:00
|
|
|
error_to_compat_str,
|
2013-06-23 14:59:45 -04:00
|
|
|
ExtractorError,
|
2014-09-15 09:10:24 -04:00
|
|
|
limit_length,
|
2015-11-21 11:18:17 -05:00
|
|
|
sanitized_Request,
|
2014-12-10 09:18:34 -05:00
|
|
|
urlencode_postdata,
|
2015-08-02 17:52:12 -04:00
|
|
|
get_element_by_id,
|
|
|
|
clean_html,
|
2013-06-23 14:59:45 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class FacebookIE(InfoExtractor):
|
2014-01-21 12:10:14 -05:00
|
|
|
_VALID_URL = r'''(?x)
|
2014-03-09 13:42:44 -04:00
|
|
|
https?://(?:\w+\.)?facebook\.com/
|
2014-08-10 05:55:24 -04:00
|
|
|
(?:[^#]*?\#!/)?
|
2015-04-16 12:08:52 -04:00
|
|
|
(?:
|
|
|
|
(?:video/video\.php|photo\.php|video\.php|video/embed)\?(?:.*?)
|
|
|
|
(?:v|video_id)=|
|
2015-04-18 04:08:24 -04:00
|
|
|
[^/]+/videos/(?:[^/]+/)?
|
2015-04-16 12:08:52 -04:00
|
|
|
)
|
|
|
|
(?P<id>[0-9]+)
|
2014-01-21 12:10:14 -05:00
|
|
|
(?:.*)'''
|
2013-10-27 07:07:58 -04:00
|
|
|
_LOGIN_URL = 'https://www.facebook.com/login.php?next=http%3A%2F%2Ffacebook.com%2Fhome.php&login_attempt=1'
|
|
|
|
_CHECKPOINT_URL = 'https://www.facebook.com/checkpoint/?next=http%3A%2F%2Ffacebook.com%2Fhome.php&_fb_noscript=1'
|
2013-06-23 14:59:45 -04:00
|
|
|
_NETRC_MACHINE = 'facebook'
|
2014-03-03 21:36:54 -05:00
|
|
|
IE_NAME = 'facebook'
|
2014-08-27 05:08:47 -04:00
|
|
|
_TESTS = [{
|
2014-09-13 03:01:57 -04:00
|
|
|
'url': 'https://www.facebook.com/video.php?v=637842556329505&fref=nf',
|
|
|
|
'md5': '6a40d33c0eccbb1af76cf0485a052659',
|
2014-03-03 21:36:54 -05:00
|
|
|
'info_dict': {
|
2014-09-13 03:01:57 -04:00
|
|
|
'id': '637842556329505',
|
2014-03-03 21:36:54 -05:00
|
|
|
'ext': 'mp4',
|
2014-09-28 23:19:56 -04:00
|
|
|
'title': 're:Did you know Kei Nishikori is the first Asian man to ever reach a Grand Slam',
|
2015-08-02 19:09:21 -04:00
|
|
|
'uploader': 'Tennis on Facebook',
|
2013-06-27 14:46:46 -04:00
|
|
|
}
|
2014-09-15 09:10:24 -04:00
|
|
|
}, {
|
|
|
|
'note': 'Video without discernible title',
|
|
|
|
'url': 'https://www.facebook.com/video.php?v=274175099429670',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '274175099429670',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Facebook video #274175099429670',
|
2015-08-02 19:09:21 -04:00
|
|
|
'uploader': 'Asif Nawab Butt',
|
2015-05-26 01:37:15 -04:00
|
|
|
},
|
|
|
|
'expected_warnings': [
|
|
|
|
'title'
|
|
|
|
]
|
2014-08-27 05:08:47 -04:00
|
|
|
}, {
|
|
|
|
'url': 'https://www.facebook.com/video.php?v=10204634152394104',
|
|
|
|
'only_matching': True,
|
2015-04-16 12:08:52 -04:00
|
|
|
}, {
|
|
|
|
'url': 'https://www.facebook.com/amogood/videos/1618742068337349/?fref=nf',
|
|
|
|
'only_matching': True,
|
2015-04-18 04:08:24 -04:00
|
|
|
}, {
|
|
|
|
'url': 'https://www.facebook.com/ChristyClarkForBC/videos/vb.22819070941/10153870694020942/?type=2&theater',
|
|
|
|
'only_matching': True,
|
2014-08-27 05:08:47 -04:00
|
|
|
}]
|
2013-06-23 14:59:45 -04:00
|
|
|
|
2013-10-27 07:07:58 -04:00
|
|
|
def _login(self):
|
|
|
|
(useremail, password) = self._get_login_info()
|
2013-06-23 14:59:45 -04:00
|
|
|
if useremail is None:
|
|
|
|
return
|
|
|
|
|
2015-11-21 11:18:17 -05:00
|
|
|
login_page_req = sanitized_Request(self._LOGIN_URL)
|
2015-12-28 10:37:02 -05:00
|
|
|
self._set_cookie('facebook.com', 'locale', 'en_US')
|
2014-03-07 09:25:33 -05:00
|
|
|
login_page = self._download_webpage(login_page_req, None,
|
2014-11-23 15:39:15 -05:00
|
|
|
note='Downloading login page',
|
|
|
|
errnote='Unable to download login page')
|
2014-03-03 21:39:04 -05:00
|
|
|
lsd = self._search_regex(
|
2014-03-03 21:39:45 -05:00
|
|
|
r'<input type="hidden" name="lsd" value="([^"]*)"',
|
2014-03-03 21:39:04 -05:00
|
|
|
login_page, 'lsd')
|
2014-03-03 21:36:54 -05:00
|
|
|
lgnrnd = self._search_regex(r'name="lgnrnd" value="([^"]*?)"', login_page, 'lgnrnd')
|
2013-10-27 07:07:58 -04:00
|
|
|
|
2013-06-23 14:59:45 -04:00
|
|
|
login_form = {
|
|
|
|
'email': useremail,
|
|
|
|
'pass': password,
|
2013-10-27 07:07:58 -04:00
|
|
|
'lsd': lsd,
|
|
|
|
'lgnrnd': lgnrnd,
|
|
|
|
'next': 'http://facebook.com/home.php',
|
|
|
|
'default_persistent': '0',
|
|
|
|
'legacy_return': '1',
|
|
|
|
'timezone': '-60',
|
|
|
|
'trynum': '1',
|
2014-11-23 16:21:46 -05:00
|
|
|
}
|
2015-11-21 11:18:17 -05:00
|
|
|
request = sanitized_Request(self._LOGIN_URL, urlencode_postdata(login_form))
|
2013-10-27 07:07:58 -04:00
|
|
|
request.add_header('Content-Type', 'application/x-www-form-urlencoded')
|
2013-06-23 14:59:45 -04:00
|
|
|
try:
|
2014-03-07 09:25:33 -05:00
|
|
|
login_results = self._download_webpage(request, None,
|
2014-11-23 15:39:15 -05:00
|
|
|
note='Logging in', errnote='unable to fetch login page')
|
2013-06-23 14:59:45 -04:00
|
|
|
if re.search(r'<form(.*)name="login"(.*)</form>', login_results) is not None:
|
2015-12-28 10:20:09 -05:00
|
|
|
error = self._html_search_regex(
|
|
|
|
r'(?s)<div[^>]+class=(["\']).*?login_error_box.*?\1[^>]*><div[^>]*>.*?</div><div[^>]*>(?P<error>.+?)</div>',
|
|
|
|
login_results, 'login error', default=None, group='error')
|
|
|
|
if error:
|
|
|
|
raise ExtractorError('Unable to login: %s' % error, expected=True)
|
2014-03-03 21:36:54 -05:00
|
|
|
self._downloader.report_warning('unable to log in: bad username/password, or exceded login rate limit (~3/min). Check credentials or wait.')
|
2013-06-23 14:59:45 -04:00
|
|
|
return
|
2013-10-27 07:07:58 -04:00
|
|
|
|
2015-12-28 10:37:02 -05:00
|
|
|
fb_dtsg = self._search_regex(
|
|
|
|
r'name="fb_dtsg" value="(.+?)"', login_results, 'fb_dtsg', default=None)
|
|
|
|
h = self._search_regex(
|
|
|
|
r'name="h"\s+(?:\w+="[^"]+"\s+)*?value="([^"]+)"', login_results, 'h', default=None)
|
|
|
|
|
|
|
|
if not fb_dtsg or not h:
|
|
|
|
return
|
|
|
|
|
2013-10-27 07:07:58 -04:00
|
|
|
check_form = {
|
2015-12-28 10:37:02 -05:00
|
|
|
'fb_dtsg': fb_dtsg,
|
|
|
|
'h': h,
|
2013-10-27 07:07:58 -04:00
|
|
|
'name_action_selected': 'dont_save',
|
|
|
|
}
|
2015-11-21 11:18:17 -05:00
|
|
|
check_req = sanitized_Request(self._CHECKPOINT_URL, urlencode_postdata(check_form))
|
2013-10-27 07:07:58 -04:00
|
|
|
check_req.add_header('Content-Type', 'application/x-www-form-urlencoded')
|
2014-03-07 09:25:33 -05:00
|
|
|
check_response = self._download_webpage(check_req, None,
|
2014-11-23 15:39:15 -05:00
|
|
|
note='Confirming login')
|
2013-10-27 07:07:58 -04:00
|
|
|
if re.search(r'id="checkpointSubmitButton"', check_response) is not None:
|
2014-03-03 21:36:54 -05:00
|
|
|
self._downloader.report_warning('Unable to confirm login, you have to login in your brower and authorize the login.')
|
2013-06-23 14:59:45 -04:00
|
|
|
except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
|
2015-12-19 20:00:39 -05:00
|
|
|
self._downloader.report_warning('unable to log in: %s' % error_to_compat_str(err))
|
2013-06-23 14:59:45 -04:00
|
|
|
return
|
|
|
|
|
2013-10-27 07:07:58 -04:00
|
|
|
def _real_initialize(self):
|
|
|
|
self._login()
|
|
|
|
|
2013-06-23 14:59:45 -04:00
|
|
|
def _real_extract(self, url):
|
2014-12-10 09:18:34 -05:00
|
|
|
video_id = self._match_id(url)
|
2013-06-23 14:59:45 -04:00
|
|
|
url = 'https://www.facebook.com/video/video.php?v=%s' % video_id
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
|
|
|
|
BEFORE = '{swf.addParam(param[0], param[1]);});\n'
|
|
|
|
AFTER = '.forEach(function(variable) {swf.addVariable(variable[0], variable[1]);});'
|
|
|
|
m = re.search(re.escape(BEFORE) + '(.*?)' + re.escape(AFTER), webpage)
|
|
|
|
if not m:
|
2013-10-27 07:09:46 -04:00
|
|
|
m_msg = re.search(r'class="[^"]*uiInterstitialContent[^"]*"><div>(.*?)</div>', webpage)
|
|
|
|
if m_msg is not None:
|
2013-10-27 07:13:55 -04:00
|
|
|
raise ExtractorError(
|
2014-03-03 21:36:54 -05:00
|
|
|
'The video is not available, Facebook said: "%s"' % m_msg.group(1),
|
2013-10-27 07:13:55 -04:00
|
|
|
expected=True)
|
2013-10-27 07:09:46 -04:00
|
|
|
else:
|
2014-03-03 21:36:54 -05:00
|
|
|
raise ExtractorError('Cannot parse data')
|
2013-06-23 14:59:45 -04:00
|
|
|
data = dict(json.loads(m.group(1)))
|
2015-07-17 13:37:56 -04:00
|
|
|
params_raw = compat_urllib_parse_unquote(data['params'])
|
2013-06-23 14:59:45 -04:00
|
|
|
params = json.loads(params_raw)
|
2015-02-23 12:54:15 -05:00
|
|
|
|
|
|
|
formats = []
|
2015-10-21 11:35:57 -04:00
|
|
|
for format_id, f in params['video_data'].items():
|
|
|
|
if not f or not isinstance(f, list):
|
|
|
|
continue
|
|
|
|
for quality in ('sd', 'hd'):
|
|
|
|
for src_type in ('src', 'src_no_ratelimit'):
|
|
|
|
src = f[0].get('%s_%s' % (quality, src_type))
|
|
|
|
if src:
|
|
|
|
formats.append({
|
|
|
|
'format_id': '%s_%s_%s' % (format_id, quality, src_type),
|
|
|
|
'url': src,
|
|
|
|
'preference': -10 if format_id == 'progressive' else 0,
|
|
|
|
})
|
2015-02-23 12:54:15 -05:00
|
|
|
if not formats:
|
|
|
|
raise ExtractorError('Cannot find video formats')
|
2013-06-23 14:59:45 -04:00
|
|
|
|
2013-09-23 05:24:10 -04:00
|
|
|
video_title = self._html_search_regex(
|
2015-05-27 11:25:07 -04:00
|
|
|
r'<h2\s+[^>]*class="uiHeaderTitle"[^>]*>([^<]*)</h2>', webpage, 'title',
|
2015-05-26 01:37:15 -04:00
|
|
|
default=None)
|
2014-09-13 03:01:57 -04:00
|
|
|
if not video_title:
|
|
|
|
video_title = self._html_search_regex(
|
|
|
|
r'(?s)<span class="fbPhotosPhotoCaption".*?id="fbPhotoPageCaption"><span class="hasCaption">(.*?)</span>',
|
2015-11-30 09:10:09 -05:00
|
|
|
webpage, 'alternative title', default=None)
|
2014-09-15 09:10:24 -04:00
|
|
|
video_title = limit_length(video_title, 80)
|
2014-09-13 03:01:57 -04:00
|
|
|
if not video_title:
|
|
|
|
video_title = 'Facebook video #%s' % video_id
|
2015-08-02 17:52:12 -04:00
|
|
|
uploader = clean_html(get_element_by_id('fbPhotoPageAuthorName', webpage))
|
2013-06-23 14:59:45 -04:00
|
|
|
|
2014-03-09 13:42:44 -04:00
|
|
|
return {
|
2013-06-23 14:59:45 -04:00
|
|
|
'id': video_id,
|
|
|
|
'title': video_title,
|
2015-02-23 12:54:15 -05:00
|
|
|
'formats': formats,
|
2015-08-02 17:52:12 -04:00
|
|
|
'uploader': uploader,
|
2013-06-23 14:59:45 -04:00
|
|
|
}
|