aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2019-12-06 11:04:12 +0100
committerRemita Amine <remitamine@gmail.com>2019-12-06 11:04:12 +0100
commit4067a2327069c24915945fb5f5182e7fa987a57e (patch)
tree7fb541c1e9cbf7419b3811d34bf1a0a6e428a168
parent7d53fa475a97baf2a676d935847b3dc2af562a7c (diff)
downloadyoutube-dl-4067a2327069c24915945fb5f5182e7fa987a57e.tar.xz
[ufctv] add support for more domains and remove compatibility code(closes #23332)
-rw-r--r--youtube_dl/extractor/imggaming.py20
-rw-r--r--youtube_dl/extractor/ufctv.py6
2 files changed, 6 insertions, 20 deletions
diff --git a/youtube_dl/extractor/imggaming.py b/youtube_dl/extractor/imggaming.py
index 8bb5de463..10d26adab 100644
--- a/youtube_dl/extractor/imggaming.py
+++ b/youtube_dl/extractor/imggaming.py
@@ -17,19 +17,12 @@ from ..utils import (
class ImgGamingBaseIE(InfoExtractor):
_API_BASE = 'https://dce-frontoffice.imggaming.com/api/v2/'
_API_KEY = '857a1e5d-e35e-4fdf-805b-a87b6f8364bf'
- _DOMAIN = None
_HEADERS = None
- _LOGIN_REQUIRED = True
- _LOGIN_SUFFIX = ''
_MANIFEST_HEADERS = {'Accept-Encoding': 'identity'}
_REALM = None
- _TOKEN = None
- _VALID_URL_TEMPL = r'https?://%s/(?P<type>live|playlist|video)/(?P<id>\d+)(?:\?.*?\bplaylistId=(?P<playlist_id>\d+))?'
+ _VALID_URL_TEMPL = r'https?://(?P<domain>(?:(?:app|www)\.)?%s)/(?P<type>live|playlist|video)/(?P<id>\d+)(?:\?.*?\bplaylistId=(?P<playlist_id>\d+))?'
def _real_initialize(self):
- if not self._LOGIN_REQUIRED:
- return
-
self._HEADERS = {
'Realm': 'dce.' + self._REALM,
'x-api-key': self._API_KEY,
@@ -42,7 +35,7 @@ class ImgGamingBaseIE(InfoExtractor):
p_headers = self._HEADERS.copy()
p_headers['Content-Type'] = 'application/json'
self._HEADERS['Authorization'] = 'Bearer ' + self._download_json(
- self._API_BASE + 'login' + self._LOGIN_SUFFIX,
+ self._API_BASE + 'login',
None, 'Logging in', data=json.dumps({
'id': email,
'secret': password,
@@ -52,9 +45,6 @@ class ImgGamingBaseIE(InfoExtractor):
return self._download_json(
self._API_BASE + path + media_id, media_id, headers=self._HEADERS)
- def _extract_media_id(self, url, display_id):
- return display_id
-
def _extract_dve_api_url(self, media_id, media_type):
stream_path = 'stream'
if media_type == 'video':
@@ -72,8 +62,7 @@ class ImgGamingBaseIE(InfoExtractor):
raise
def _real_extract(self, url):
- media_type, display_id, playlist_id = re.match(self._VALID_URL, url).groups()
- media_id = self._extract_media_id(url, display_id)
+ domain, media_type, media_id, playlist_id = re.match(self._VALID_URL, url).groups()
if playlist_id:
if self._downloader.params.get('noplaylist'):
@@ -90,7 +79,7 @@ class ImgGamingBaseIE(InfoExtractor):
if not video_id:
continue
entries.append(self.url_result(
- 'https://%s/video/%s' % (self._DOMAIN, video_id),
+ 'https://%s/video/%s' % (domain, video_id),
self.ie_key(), video_id))
return self.playlist_result(
entries, media_id, playlist.get('title'),
@@ -133,7 +122,6 @@ class ImgGamingBaseIE(InfoExtractor):
return {
'id': media_id,
- 'display_id': display_id,
'title': title,
'formats': formats,
'thumbnail': video_data.get('thumbnailUrl'),
diff --git a/youtube_dl/extractor/ufctv.py b/youtube_dl/extractor/ufctv.py
index d07fa1280..665eb1cb7 100644
--- a/youtube_dl/extractor/ufctv.py
+++ b/youtube_dl/extractor/ufctv.py
@@ -5,14 +5,12 @@ from .imggaming import ImgGamingBaseIE
class UFCTVIE(ImgGamingBaseIE):
- _VALID_URL = ImgGamingBaseIE._VALID_URL_TEMPL % r'(?:www\.)?ufc\.tv'
+ _VALID_URL = ImgGamingBaseIE._VALID_URL_TEMPL % r'(?:ufc\.tv|(?:ufc)?fightpass\.com)'
_NETRC_MACHINE = 'ufctv'
- _DOMAIN = 'ufc.tv'
_REALM = 'ufc'
class UFCArabiaIE(ImgGamingBaseIE):
- _VALID_URL = ImgGamingBaseIE._VALID_URL_TEMPL % r'app\.ufcarabia\.com'
+ _VALID_URL = ImgGamingBaseIE._VALID_URL_TEMPL % r'ufcarabia\.(?:ae|com)'
_NETRC_MACHINE = 'ufcarabia'
- _DOMAIN = 'app.ufcarabia.com'
_REALM = 'admufc'