2014-03-04 02:36:54 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2013-06-23 18:59:45 +00:00
|
|
|
import json
|
|
|
|
import re
|
|
|
|
import socket
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
from ..utils import (
|
|
|
|
compat_http_client,
|
|
|
|
compat_str,
|
|
|
|
compat_urllib_error,
|
|
|
|
compat_urllib_parse,
|
|
|
|
compat_urllib_request,
|
2014-03-07 14:25:33 +00:00
|
|
|
urlencode_postdata,
|
2013-06-23 18:59:45 +00:00
|
|
|
|
|
|
|
ExtractorError,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class FacebookIE(InfoExtractor):
|
2014-01-21 17:10:14 +00:00
|
|
|
_VALID_URL = r'''(?x)
|
2014-03-09 17:42:44 +00:00
|
|
|
https?://(?:\w+\.)?facebook\.com/
|
2014-08-10 09:55:24 +00:00
|
|
|
(?:[^#]*?\#!/)?
|
2014-01-21 17:10:14 +00:00
|
|
|
(?:video/video\.php|photo\.php|video/embed)\?(?:.*?)
|
|
|
|
(?:v|video_id)=(?P<id>[0-9]+)
|
|
|
|
(?:.*)'''
|
2013-10-27 11:07:58 +00: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 18:59:45 +00:00
|
|
|
_NETRC_MACHINE = 'facebook'
|
2014-03-04 02:36:54 +00:00
|
|
|
IE_NAME = 'facebook'
|
2013-06-27 18:46:46 +00:00
|
|
|
_TEST = {
|
2014-03-04 02:36:54 +00:00
|
|
|
'url': 'https://www.facebook.com/photo.php?v=120708114770723',
|
|
|
|
'md5': '48975a41ccc4b7a581abd68651c1a5a8',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '120708114770723',
|
|
|
|
'ext': 'mp4',
|
2014-03-04 02:49:12 +00:00
|
|
|
'duration': 279,
|
2014-03-09 17:42:44 +00:00
|
|
|
'title': 'PEOPLE ARE AWESOME 2013',
|
2013-06-27 18:46:46 +00:00
|
|
|
}
|
|
|
|
}
|
2013-06-23 18:59:45 +00:00
|
|
|
|
2013-10-27 11:07:58 +00:00
|
|
|
def _login(self):
|
|
|
|
(useremail, password) = self._get_login_info()
|
2013-06-23 18:59:45 +00:00
|
|
|
if useremail is None:
|
|
|
|
return
|
|
|
|
|
2013-10-27 11:07:58 +00:00
|
|
|
login_page_req = compat_urllib_request.Request(self._LOGIN_URL)
|
|
|
|
login_page_req.add_header('Cookie', 'locale=en_US')
|
2014-03-07 14:25:33 +00:00
|
|
|
login_page = self._download_webpage(login_page_req, None,
|
|
|
|
note='Downloading login page',
|
2014-03-04 02:36:54 +00:00
|
|
|
errnote='Unable to download login page')
|
2014-03-04 02:39:04 +00:00
|
|
|
lsd = self._search_regex(
|
2014-03-04 02:39:45 +00:00
|
|
|
r'<input type="hidden" name="lsd" value="([^"]*)"',
|
2014-03-04 02:39:04 +00:00
|
|
|
login_page, 'lsd')
|
2014-03-04 02:36:54 +00:00
|
|
|
lgnrnd = self._search_regex(r'name="lgnrnd" value="([^"]*?)"', login_page, 'lgnrnd')
|
2013-10-27 11:07:58 +00:00
|
|
|
|
2013-06-23 18:59:45 +00:00
|
|
|
login_form = {
|
|
|
|
'email': useremail,
|
|
|
|
'pass': password,
|
2013-10-27 11:07:58 +00:00
|
|
|
'lsd': lsd,
|
|
|
|
'lgnrnd': lgnrnd,
|
|
|
|
'next': 'http://facebook.com/home.php',
|
|
|
|
'default_persistent': '0',
|
|
|
|
'legacy_return': '1',
|
|
|
|
'timezone': '-60',
|
|
|
|
'trynum': '1',
|
2013-06-23 18:59:45 +00:00
|
|
|
}
|
2014-03-07 14:25:33 +00:00
|
|
|
request = compat_urllib_request.Request(self._LOGIN_URL, urlencode_postdata(login_form))
|
2013-10-27 11:07:58 +00:00
|
|
|
request.add_header('Content-Type', 'application/x-www-form-urlencoded')
|
2013-06-23 18:59:45 +00:00
|
|
|
try:
|
2014-03-07 14:25:33 +00:00
|
|
|
login_results = self._download_webpage(request, None,
|
|
|
|
note='Logging in', errnote='unable to fetch login page')
|
2013-06-23 18:59:45 +00:00
|
|
|
if re.search(r'<form(.*)name="login"(.*)</form>', login_results) is not None:
|
2014-03-04 02:36:54 +00: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 18:59:45 +00:00
|
|
|
return
|
2013-10-27 11:07:58 +00:00
|
|
|
|
|
|
|
check_form = {
|
2014-03-07 14:25:33 +00:00
|
|
|
'fb_dtsg': self._search_regex(r'name="fb_dtsg" value="(.+?)"', login_results, 'fb_dtsg'),
|
2014-04-21 13:56:09 +00:00
|
|
|
'h': self._search_regex(r'name="h" value="(\w*?)"', login_results, 'h'),
|
2013-10-27 11:07:58 +00:00
|
|
|
'name_action_selected': 'dont_save',
|
|
|
|
}
|
2014-03-07 14:25:33 +00:00
|
|
|
check_req = compat_urllib_request.Request(self._CHECKPOINT_URL, urlencode_postdata(check_form))
|
2013-10-27 11:07:58 +00:00
|
|
|
check_req.add_header('Content-Type', 'application/x-www-form-urlencoded')
|
2014-03-07 14:25:33 +00:00
|
|
|
check_response = self._download_webpage(check_req, None,
|
|
|
|
note='Confirming login')
|
2013-10-27 11:07:58 +00:00
|
|
|
if re.search(r'id="checkpointSubmitButton"', check_response) is not None:
|
2014-03-04 02:36:54 +00:00
|
|
|
self._downloader.report_warning('Unable to confirm login, you have to login in your brower and authorize the login.')
|
2013-06-23 18:59:45 +00:00
|
|
|
except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
|
2014-03-04 02:36:54 +00:00
|
|
|
self._downloader.report_warning('unable to log in: %s' % compat_str(err))
|
2013-06-23 18:59:45 +00:00
|
|
|
return
|
|
|
|
|
2013-10-27 11:07:58 +00:00
|
|
|
def _real_initialize(self):
|
|
|
|
self._login()
|
|
|
|
|
2013-06-23 18:59:45 +00:00
|
|
|
def _real_extract(self, url):
|
|
|
|
mobj = re.match(self._VALID_URL, url)
|
2014-01-21 17:10:14 +00:00
|
|
|
video_id = mobj.group('id')
|
2013-06-23 18:59:45 +00: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 11:09:46 +00:00
|
|
|
m_msg = re.search(r'class="[^"]*uiInterstitialContent[^"]*"><div>(.*?)</div>', webpage)
|
|
|
|
if m_msg is not None:
|
2013-10-27 11:13:55 +00:00
|
|
|
raise ExtractorError(
|
2014-03-04 02:36:54 +00:00
|
|
|
'The video is not available, Facebook said: "%s"' % m_msg.group(1),
|
2013-10-27 11:13:55 +00:00
|
|
|
expected=True)
|
2013-10-27 11:09:46 +00:00
|
|
|
else:
|
2014-03-04 02:36:54 +00:00
|
|
|
raise ExtractorError('Cannot parse data')
|
2013-06-23 18:59:45 +00:00
|
|
|
data = dict(json.loads(m.group(1)))
|
|
|
|
params_raw = compat_urllib_parse.unquote(data['params'])
|
|
|
|
params = json.loads(params_raw)
|
|
|
|
video_data = params['video_data'][0]
|
|
|
|
video_url = video_data.get('hd_src')
|
|
|
|
if not video_url:
|
|
|
|
video_url = video_data['sd_src']
|
|
|
|
if not video_url:
|
2014-03-04 02:36:54 +00:00
|
|
|
raise ExtractorError('Cannot find video URL')
|
2013-06-23 18:59:45 +00:00
|
|
|
|
2013-09-23 09:24:10 +00:00
|
|
|
video_title = self._html_search_regex(
|
2014-03-04 02:36:54 +00:00
|
|
|
r'<h2 class="uiHeaderTitle">([^<]*)</h2>', webpage, 'title')
|
2013-06-23 18:59:45 +00:00
|
|
|
|
2014-03-09 17:42:44 +00:00
|
|
|
return {
|
2013-06-23 18:59:45 +00:00
|
|
|
'id': video_id,
|
|
|
|
'title': video_title,
|
|
|
|
'url': video_url,
|
2014-03-09 17:42:44 +00:00
|
|
|
'duration': int(video_data['video_duration']),
|
|
|
|
'thumbnail': video_data['thumbnail_src'],
|
2013-06-23 18:59:45 +00:00
|
|
|
}
|