Skip to content

Commit

Permalink
Handle removed content
Browse files Browse the repository at this point in the history
  • Loading branch information
ringus1 committed Jan 11, 2024
1 parent 4f58aab commit 6be151f
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions yt_dlp/extractor/facebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -434,12 +434,12 @@ def _extract_from_url(self, url, video_id):
webpage = self._download_webpage(
url.replace('://m.facebook.com/', '://www.facebook.com/'), video_id)

sjs_data = [self._parse_json(j, video_id, fatal=False) for j in re.findall(
r'data-sjs>({.*?ScheduledServerJS.*?})</script>', webpage)]
if (self.get_param("username") and self.get_param("password")) or self.get_param("cookiefile"):
if 'We\'ve suspended your account' in webpage:
raise ExtractorError('Login account is suspended.', expected=True)

sjs_data = [self._parse_json(j, video_id, fatal=False) for j in re.findall(
r'data-sjs>({.*?ScheduledServerJS.*?})</script>', webpage)]
userinfo = get_first(sjs_data, ('require', ..., ..., ..., "__bbox", "define", lambda _, v: 'CurrentUserInitialData' in v, lambda _, v: 'ACCOUNT_ID' in v))
try:
user_id = int(userinfo['ACCOUNT_ID'])
Expand All @@ -448,6 +448,10 @@ def _extract_from_url(self, url, video_id):
if user_id == 0:
raise ExtractorError('Failed to login with provided data.', expected=True)

if props := get_first(sjs_data, ('require', ..., ..., ..., '__bbox', 'require', ..., ..., ..., 'rootView', 'props'), expected_type=dict, default={}):
if props.get('title') == 'This content isn\'t available at the moment':
raise ExtractorError('Content removed. Facebook said: "%s"' % props.get('body', ''), expected=True)

def extract_metadata(webpage):
post_data = [self._parse_json(j, video_id, fatal=False) for j in re.findall(
r'data-sjs>({.*?ScheduledServerJS.*?})</script>', webpage)]
Expand Down

0 comments on commit 6be151f

Please sign in to comment.