[iprima] Improve geo restriction detection and disable geo bypass
authorSergey M․ <dstftw@gmail.com>
Mon, 20 Feb 2017 16:17:19 +0000 (23:17 +0700)
committerSergey M․ <dstftw@gmail.com>
Mon, 20 Feb 2017 16:17:19 +0000 (23:17 +0700)
youtube_dl/extractor/iprima.py

index 7afa2def0db5815b906955a438b1e2aa32b9f095..a29e6a5badd2ef0403a2b8b4afe1c1ef2f926d4c 100644 (file)
@@ -13,6 +13,7 @@ from ..utils import (
 
 class IPrimaIE(InfoExtractor):
     _VALID_URL = r'https?://play\.iprima\.cz/(?:.+/)?(?P<id>[^?#]+)'
+    _GEO_BYPASS = False
 
     _TESTS = [{
         'url': 'http://play.iprima.cz/gondici-s-r-o-33',
@@ -28,6 +29,10 @@ class IPrimaIE(InfoExtractor):
     }, {
         'url': 'http://play.iprima.cz/particka/particka-92',
         'only_matching': True,
+    }, {
+        # geo restricted
+        'url': 'http://play.iprima.cz/closer-nove-pripady/closer-nove-pripady-iv-1',
+        'only_matching': True,
     }]
 
     def _real_extract(self, url):
@@ -83,7 +88,7 @@ class IPrimaIE(InfoExtractor):
                 extract_formats(src)
 
         if not formats and '>GEO_IP_NOT_ALLOWED<' in playerpage:
-            self.raise_geo_restricted()
+            self.raise_geo_restricted(countries=['CZ'])
 
         self._sort_formats(formats)