mirror of
				https://gitlab.com/ytdl-org/youtube-dl.git
				synced 2025-11-04 08:57:08 -05:00 
			
		
		
		
	[go90] detect geo restriction error and pass geo verification headers(closes #16874)
This commit is contained in:
		@@ -4,6 +4,7 @@ from __future__ import unicode_literals
 | 
				
			|||||||
import re
 | 
					import re
 | 
				
			||||||
 | 
					
 | 
				
			||||||
from .common import InfoExtractor
 | 
					from .common import InfoExtractor
 | 
				
			||||||
 | 
					from ..compat import compat_HTTPError
 | 
				
			||||||
from ..utils import (
 | 
					from ..utils import (
 | 
				
			||||||
    determine_ext,
 | 
					    determine_ext,
 | 
				
			||||||
    ExtractorError,
 | 
					    ExtractorError,
 | 
				
			||||||
@@ -28,14 +29,27 @@ class Go90IE(InfoExtractor):
 | 
				
			|||||||
            'age_limit': 14,
 | 
					            'age_limit': 14,
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					    _GEO_BYPASS = False
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def _real_extract(self, url):
 | 
					    def _real_extract(self, url):
 | 
				
			||||||
        video_id = self._match_id(url)
 | 
					        video_id = self._match_id(url)
 | 
				
			||||||
        video_data = self._download_json(
 | 
					
 | 
				
			||||||
            'https://www.go90.com/api/view/items/' + video_id,
 | 
					        try:
 | 
				
			||||||
            video_id, headers={
 | 
					            headers = self.geo_verification_headers()
 | 
				
			||||||
 | 
					            headers.update({
 | 
				
			||||||
                'Content-Type': 'application/json; charset=utf-8',
 | 
					                'Content-Type': 'application/json; charset=utf-8',
 | 
				
			||||||
            }, data=b'{"client":"web","device_type":"pc"}')
 | 
					            })
 | 
				
			||||||
 | 
					            video_data = self._download_json(
 | 
				
			||||||
 | 
					                'https://www.go90.com/api/view/items/' + video_id, video_id,
 | 
				
			||||||
 | 
					                headers=headers, data=b'{"client":"web","device_type":"pc"}')
 | 
				
			||||||
 | 
					        except ExtractorError as e:
 | 
				
			||||||
 | 
					            if isinstance(e.cause, compat_HTTPError) and e.cause.code == 400:
 | 
				
			||||||
 | 
					                message = self._parse_json(e.cause.read().decode(), None)['error']['message']
 | 
				
			||||||
 | 
					                if 'region unavailable' in message:
 | 
				
			||||||
 | 
					                    self.raise_geo_restricted(countries=['US'])
 | 
				
			||||||
 | 
					                raise ExtractorError(message, expected=True)
 | 
				
			||||||
 | 
					            raise
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        if video_data.get('requires_drm'):
 | 
					        if video_data.get('requires_drm'):
 | 
				
			||||||
            raise ExtractorError('This video is DRM protected.', expected=True)
 | 
					            raise ExtractorError('This video is DRM protected.', expected=True)
 | 
				
			||||||
        main_video_asset = video_data['main_video_asset']
 | 
					        main_video_asset = video_data['main_video_asset']
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user