Skip to content

Commit

Permalink
[brightcove] Pass embed page as referrer (closes #15486)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstftw committed Feb 4, 2018
1 parent b91a7a4 commit 8d14fa1
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 4 deletions.
13 changes: 10 additions & 3 deletions youtube_dl/extractor/brightcove.py
Original file line number Diff line number Diff line change
Expand Up @@ -690,10 +690,17 @@ def _real_extract(self, url):
webpage, 'policy key', group='pk')

api_url = 'https://edge.api.brightcove.com/playback/v1/accounts/%s/videos/%s' % (account_id, video_id)
try:
json_data = self._download_json(api_url, video_id, headers={
'Accept': 'application/json;pk=%s' % policy_key
headers = {
'Accept': 'application/json;pk=%s' % policy_key,
}
referrer = smuggled_data.get('referrer')
if referrer:
headers.update({
'Referer': referrer,
'Origin': re.search(r'https?://[^/]+', referrer).group(0),
})
try:
json_data = self._download_json(api_url, video_id, headers=headers)
except ExtractorError as e:
if isinstance(e.cause, compat_HTTPError) and e.cause.code == 403:
json_data = self._parse_json(e.cause.read().decode(), video_id)[0]
Expand Down
5 changes: 4 additions & 1 deletion youtube_dl/extractor/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -2280,7 +2280,10 @@ def _real_extract(self, url):
# Look for Brightcove New Studio embeds
bc_urls = BrightcoveNewIE._extract_urls(self, webpage)
if bc_urls:
return self.playlist_from_matches(bc_urls, video_id, video_title, ie='BrightcoveNew')
return self.playlist_from_matches(
bc_urls, video_id, video_title,
getter=lambda x: smuggle_url(x, {'referrer': url}),
ie='BrightcoveNew')

# Look for Nexx embeds
nexx_urls = NexxIE._extract_urls(webpage)
Expand Down

0 comments on commit 8d14fa1

Please sign in to comment.