[facebook] Fix for m.facebook.com URLs
[youtube-dl] / youtube_dl / extractor / facebook.py
1 from __future__ import unicode_literals
2
3 import json
4 import re
5 import socket
6
7 from .common import InfoExtractor
8 from ..compat import (
9     compat_etree_fromstring,
10     compat_http_client,
11     compat_urllib_error,
12     compat_urllib_parse_unquote,
13     compat_urllib_parse_unquote_plus,
14 )
15 from ..utils import (
16     error_to_compat_str,
17     ExtractorError,
18     limit_length,
19     sanitized_Request,
20     urlencode_postdata,
21     get_element_by_id,
22     clean_html,
23 )
24
25
26 class FacebookIE(InfoExtractor):
27     _VALID_URL = r'''(?x)
28                 (?:
29                     https?://
30                         (?:\w+\.)?facebook\.com/
31                         (?:[^#]*?\#!/)?
32                         (?:
33                             (?:
34                                 video/video\.php|
35                                 photo\.php|
36                                 video\.php|
37                                 video/embed|
38                                 story\.php
39                             )\?(?:.*?)(?:v|video_id|story_fbid)=|
40                             [^/]+/videos/(?:[^/]+/)?|
41                             [^/]+/posts/
42                         )|
43                     facebook:
44                 )
45                 (?P<id>[0-9]+)
46                 '''
47     _LOGIN_URL = 'https://www.facebook.com/login.php?next=http%3A%2F%2Ffacebook.com%2Fhome.php&login_attempt=1'
48     _CHECKPOINT_URL = 'https://www.facebook.com/checkpoint/?next=http%3A%2F%2Ffacebook.com%2Fhome.php&_fb_noscript=1'
49     _NETRC_MACHINE = 'facebook'
50     IE_NAME = 'facebook'
51
52     _CHROME_USER_AGENT = 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/48.0.2564.97 Safari/537.36'
53
54     _VIDEO_PAGE_TEMPLATE = 'https://www.facebook.com/video/video.php?v=%s'
55
56     _TESTS = [{
57         'url': 'https://www.facebook.com/video.php?v=637842556329505&fref=nf',
58         'md5': '6a40d33c0eccbb1af76cf0485a052659',
59         'info_dict': {
60             'id': '637842556329505',
61             'ext': 'mp4',
62             'title': 're:Did you know Kei Nishikori is the first Asian man to ever reach a Grand Slam',
63             'uploader': 'Tennis on Facebook',
64         }
65     }, {
66         'note': 'Video without discernible title',
67         'url': 'https://www.facebook.com/video.php?v=274175099429670',
68         'info_dict': {
69             'id': '274175099429670',
70             'ext': 'mp4',
71             'title': 'Facebook video #274175099429670',
72             'uploader': 'Asif Nawab Butt',
73         },
74         'expected_warnings': [
75             'title'
76         ]
77     }, {
78         'note': 'Video with DASH manifest',
79         'url': 'https://www.facebook.com/video.php?v=957955867617029',
80         'md5': '54706e4db4f5ad58fbad82dde1f1213f',
81         'info_dict': {
82             'id': '957955867617029',
83             'ext': 'mp4',
84             'title': 'When you post epic content on instagram.com/433 8 million followers, this is ...',
85             'uploader': 'Demy de Zeeuw',
86         },
87     }, {
88         'url': 'https://www.facebook.com/maxlayn/posts/10153807558977570',
89         'md5': '037b1fa7f3c2d02b7a0d7bc16031ecc6',
90         'info_dict': {
91             'id': '544765982287235',
92             'ext': 'mp4',
93             'title': '"What are you doing running in the snow?"',
94             'uploader': 'FailArmy',
95         }
96     }, {
97         'url': 'https://m.facebook.com/story.php?story_fbid=1035862816472149&id=116132035111903',
98         'md5': '1deb90b6ac27f7efcf6d747c8a27f5e3',
99         'info_dict': {
100             'id': '1035862816472149',
101             'ext': 'mp4',
102             'title': 'What the Flock Is Going On In New Zealand  Credit: ViralHog',
103             'uploader': 'S. Saint',
104         },
105     }, {
106         'url': 'https://www.facebook.com/video.php?v=10204634152394104',
107         'only_matching': True,
108     }, {
109         'url': 'https://www.facebook.com/amogood/videos/1618742068337349/?fref=nf',
110         'only_matching': True,
111     }, {
112         'url': 'https://www.facebook.com/ChristyClarkForBC/videos/vb.22819070941/10153870694020942/?type=2&theater',
113         'only_matching': True,
114     }, {
115         'url': 'facebook:544765982287235',
116         'only_matching': True,
117     }]
118
119     def _login(self):
120         (useremail, password) = self._get_login_info()
121         if useremail is None:
122             return
123
124         login_page_req = sanitized_Request(self._LOGIN_URL)
125         self._set_cookie('facebook.com', 'locale', 'en_US')
126         login_page = self._download_webpage(login_page_req, None,
127                                             note='Downloading login page',
128                                             errnote='Unable to download login page')
129         lsd = self._search_regex(
130             r'<input type="hidden" name="lsd" value="([^"]*)"',
131             login_page, 'lsd')
132         lgnrnd = self._search_regex(r'name="lgnrnd" value="([^"]*?)"', login_page, 'lgnrnd')
133
134         login_form = {
135             'email': useremail,
136             'pass': password,
137             'lsd': lsd,
138             'lgnrnd': lgnrnd,
139             'next': 'http://facebook.com/home.php',
140             'default_persistent': '0',
141             'legacy_return': '1',
142             'timezone': '-60',
143             'trynum': '1',
144         }
145         request = sanitized_Request(self._LOGIN_URL, urlencode_postdata(login_form))
146         request.add_header('Content-Type', 'application/x-www-form-urlencoded')
147         try:
148             login_results = self._download_webpage(request, None,
149                                                    note='Logging in', errnote='unable to fetch login page')
150             if re.search(r'<form(.*)name="login"(.*)</form>', login_results) is not None:
151                 error = self._html_search_regex(
152                     r'(?s)<div[^>]+class=(["\']).*?login_error_box.*?\1[^>]*><div[^>]*>.*?</div><div[^>]*>(?P<error>.+?)</div>',
153                     login_results, 'login error', default=None, group='error')
154                 if error:
155                     raise ExtractorError('Unable to login: %s' % error, expected=True)
156                 self._downloader.report_warning('unable to log in: bad username/password, or exceeded login rate limit (~3/min). Check credentials or wait.')
157                 return
158
159             fb_dtsg = self._search_regex(
160                 r'name="fb_dtsg" value="(.+?)"', login_results, 'fb_dtsg', default=None)
161             h = self._search_regex(
162                 r'name="h"\s+(?:\w+="[^"]+"\s+)*?value="([^"]+)"', login_results, 'h', default=None)
163
164             if not fb_dtsg or not h:
165                 return
166
167             check_form = {
168                 'fb_dtsg': fb_dtsg,
169                 'h': h,
170                 'name_action_selected': 'dont_save',
171             }
172             check_req = sanitized_Request(self._CHECKPOINT_URL, urlencode_postdata(check_form))
173             check_req.add_header('Content-Type', 'application/x-www-form-urlencoded')
174             check_response = self._download_webpage(check_req, None,
175                                                     note='Confirming login')
176             if re.search(r'id="checkpointSubmitButton"', check_response) is not None:
177                 self._downloader.report_warning('Unable to confirm login, you have to login in your browser and authorize the login.')
178         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
179             self._downloader.report_warning('unable to log in: %s' % error_to_compat_str(err))
180             return
181
182     def _real_initialize(self):
183         self._login()
184
185     def _extract_from_url(self, url, video_id, fatal_if_no_video=True):
186         req = sanitized_Request(url)
187         req.add_header('User-Agent', self._CHROME_USER_AGENT)
188         webpage = self._download_webpage(req, video_id)
189
190         video_data = None
191
192         BEFORE = '{swf.addParam(param[0], param[1]);});\n'
193         AFTER = '.forEach(function(variable) {swf.addVariable(variable[0], variable[1]);});'
194         m = re.search(re.escape(BEFORE) + '(.*?)' + re.escape(AFTER), webpage)
195         if m:
196             data = dict(json.loads(m.group(1)))
197             params_raw = compat_urllib_parse_unquote(data['params'])
198             video_data = json.loads(params_raw)['video_data']
199
200         def video_data_list2dict(video_data):
201             ret = {}
202             for item in video_data:
203                 format_id = item['stream_type']
204                 ret.setdefault(format_id, []).append(item)
205             return ret
206
207         if not video_data:
208             server_js_data = self._parse_json(self._search_regex(
209                 r'handleServerJS\(({.+})\);', webpage, 'server js data', default='{}'), video_id)
210             for item in server_js_data.get('instances', []):
211                 if item[1][0] == 'VideoConfig':
212                     video_data = video_data_list2dict(item[2][0]['videoData'])
213                     break
214
215         if not video_data:
216             if not fatal_if_no_video:
217                 return webpage, False
218             m_msg = re.search(r'class="[^"]*uiInterstitialContent[^"]*"><div>(.*?)</div>', webpage)
219             if m_msg is not None:
220                 raise ExtractorError(
221                     'The video is not available, Facebook said: "%s"' % m_msg.group(1),
222                     expected=True)
223             else:
224                 raise ExtractorError('Cannot parse data')
225
226         formats = []
227         for format_id, f in video_data.items():
228             if not f or not isinstance(f, list):
229                 continue
230             for quality in ('sd', 'hd'):
231                 for src_type in ('src', 'src_no_ratelimit'):
232                     src = f[0].get('%s_%s' % (quality, src_type))
233                     if src:
234                         preference = -10 if format_id == 'progressive' else 0
235                         if quality == 'hd':
236                             preference += 5
237                         formats.append({
238                             'format_id': '%s_%s_%s' % (format_id, quality, src_type),
239                             'url': src,
240                             'preference': preference,
241                         })
242             dash_manifest = f[0].get('dash_manifest')
243             if dash_manifest:
244                 formats.extend(self._parse_mpd_formats(
245                     compat_etree_fromstring(compat_urllib_parse_unquote_plus(dash_manifest))))
246         if not formats:
247             raise ExtractorError('Cannot find video formats')
248
249         self._sort_formats(formats)
250
251         video_title = self._html_search_regex(
252             r'<h2\s+[^>]*class="uiHeaderTitle"[^>]*>([^<]*)</h2>', webpage, 'title',
253             default=None)
254         if not video_title:
255             video_title = self._html_search_regex(
256                 r'(?s)<span class="fbPhotosPhotoCaption".*?id="fbPhotoPageCaption"><span class="hasCaption">(.*?)</span>',
257                 webpage, 'alternative title', default=None)
258             video_title = limit_length(video_title, 80)
259         if not video_title:
260             video_title = 'Facebook video #%s' % video_id
261         uploader = clean_html(get_element_by_id('fbPhotoPageAuthorName', webpage))
262
263         info_dict = {
264             'id': video_id,
265             'title': video_title,
266             'formats': formats,
267             'uploader': uploader,
268         }
269
270         return webpage, info_dict
271
272     def _real_extract(self, url):
273         video_id = self._match_id(url)
274
275         real_url = self._VIDEO_PAGE_TEMPLATE % video_id if url.startswith('facebook:') else url
276         webpage, info_dict = self._extract_from_url(real_url, video_id, fatal_if_no_video=False)
277
278         if info_dict:
279             return info_dict
280
281         if '/posts/' in url:
282             entries = [
283                 self.url_result('facebook:%s' % video_id, FacebookIE.ie_key())
284                 for video_id in self._parse_json(
285                     self._search_regex(
286                         r'(["\'])video_ids\1\s*:\s*(?P<ids>\[.+?\])',
287                         webpage, 'video ids', group='ids'),
288                     video_id)]
289
290             return self.playlist_result(entries, video_id)
291         else:
292             _, info_dict = self._extract_from_url(
293                 self._VIDEO_PAGE_TEMPLATE % video_id,
294                 video_id, fatal_if_no_video=True)
295             return info_dict