2016-03-09 20:55:27 +01:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2017-02-26 15:05:52 +01:00
|
|
|
import codecs
|
2016-03-09 20:55:27 +01:00
|
|
|
import re
|
2021-08-30 16:07:03 +02:00
|
|
|
import json
|
2016-03-09 20:55:27 +01:00
|
|
|
|
|
|
|
from .common import InfoExtractor
|
2020-11-26 18:27:34 +01:00
|
|
|
from ..compat import (
|
|
|
|
compat_chr,
|
|
|
|
compat_ord,
|
|
|
|
compat_urllib_parse_unquote,
|
|
|
|
)
|
2016-03-09 20:55:27 +01:00
|
|
|
from ..utils import (
|
|
|
|
ExtractorError,
|
2016-10-16 03:04:17 +02:00
|
|
|
float_or_none,
|
|
|
|
int_or_none,
|
2020-11-26 18:27:34 +01:00
|
|
|
merge_dicts,
|
2017-05-01 17:09:18 +02:00
|
|
|
multipart_encode,
|
2016-10-16 03:04:17 +02:00
|
|
|
parse_duration,
|
2017-05-01 17:09:18 +02:00
|
|
|
random_birthday,
|
|
|
|
urljoin,
|
2021-08-30 16:07:03 +02:00
|
|
|
try_get,
|
2016-03-09 20:55:27 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
class CDAIE(InfoExtractor):
|
2016-03-19 18:17:14 +01:00
|
|
|
_VALID_URL = r'https?://(?:(?:www\.)?cda\.pl/video|ebd\.cda\.pl/[0-9]+x[0-9]+)/(?P<id>[0-9a-z]+)'
|
2016-10-16 03:04:17 +02:00
|
|
|
_BASE_URL = 'http://www.cda.pl/'
|
2016-03-19 18:17:14 +01:00
|
|
|
_TESTS = [{
|
|
|
|
'url': 'http://www.cda.pl/video/5749950c',
|
|
|
|
'md5': '6f844bf51b15f31fae165365707ae970',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '5749950c',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'height': 720,
|
|
|
|
'title': 'Oto dlaczego przed zakrętem należy zwolnić.',
|
2016-10-16 03:04:17 +02:00
|
|
|
'description': 'md5:269ccd135d550da90d1662651fcb9772',
|
2017-01-02 13:08:07 +01:00
|
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
2016-10-16 03:04:17 +02:00
|
|
|
'average_rating': float,
|
2017-05-01 17:09:18 +02:00
|
|
|
'duration': 39,
|
|
|
|
'age_limit': 0,
|
2021-08-30 16:07:03 +02:00
|
|
|
'upload_date': '20160221',
|
|
|
|
'timestamp': 1456078244,
|
2016-03-19 18:17:14 +01:00
|
|
|
}
|
|
|
|
}, {
|
|
|
|
'url': 'http://www.cda.pl/video/57413289',
|
|
|
|
'md5': 'a88828770a8310fc00be6c95faf7f4d5',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '57413289',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Lądowanie na lotnisku na Maderze',
|
2016-10-16 03:04:17 +02:00
|
|
|
'description': 'md5:60d76b71186dcce4e0ba6d4bbdb13e1a',
|
2017-01-02 13:08:07 +01:00
|
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
2016-10-16 03:04:17 +02:00
|
|
|
'uploader': 'crash404',
|
|
|
|
'view_count': int,
|
|
|
|
'average_rating': float,
|
2017-05-01 17:09:18 +02:00
|
|
|
'duration': 137,
|
|
|
|
'age_limit': 0,
|
2016-03-09 20:55:27 +01:00
|
|
|
}
|
2017-05-01 17:09:18 +02:00
|
|
|
}, {
|
|
|
|
# Age-restricted
|
|
|
|
'url': 'http://www.cda.pl/video/1273454c4',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '1273454c4',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': 'Bronson (2008) napisy HD 1080p',
|
|
|
|
'description': 'md5:1b6cb18508daf2dc4e0fa4db77fec24c',
|
|
|
|
'height': 1080,
|
|
|
|
'uploader': 'boniek61',
|
|
|
|
'thumbnail': r're:^https?://.*\.jpg$',
|
|
|
|
'duration': 5554,
|
|
|
|
'age_limit': 18,
|
|
|
|
'view_count': int,
|
|
|
|
'average_rating': float,
|
|
|
|
},
|
2016-03-19 18:17:14 +01:00
|
|
|
}, {
|
|
|
|
'url': 'http://ebd.cda.pl/0x0/5749950c',
|
|
|
|
'only_matching': True,
|
|
|
|
}]
|
2016-03-09 20:55:27 +01:00
|
|
|
|
2017-05-01 17:09:18 +02:00
|
|
|
def _download_age_confirm_page(self, url, video_id, *args, **kwargs):
|
|
|
|
form_data = random_birthday('rok', 'miesiac', 'dzien')
|
|
|
|
form_data.update({'return': url, 'module': 'video', 'module_id': video_id})
|
|
|
|
data, content_type = multipart_encode(form_data)
|
|
|
|
return self._download_webpage(
|
|
|
|
urljoin(url, '/a/validatebirth'), video_id, *args,
|
|
|
|
data=data, headers={
|
|
|
|
'Referer': url,
|
|
|
|
'Content-Type': content_type,
|
|
|
|
}, **kwargs)
|
|
|
|
|
2016-03-09 20:55:27 +01:00
|
|
|
def _real_extract(self, url):
|
|
|
|
video_id = self._match_id(url)
|
2016-10-16 03:04:17 +02:00
|
|
|
self._set_cookie('cda.pl', 'cda.player', 'html5')
|
|
|
|
webpage = self._download_webpage(
|
|
|
|
self._BASE_URL + '/video/' + video_id, video_id)
|
2016-03-09 20:55:27 +01:00
|
|
|
|
|
|
|
if 'Ten film jest dostępny dla użytkowników premium' in webpage:
|
|
|
|
raise ExtractorError('This video is only available for premium users.', expected=True)
|
|
|
|
|
2021-02-10 22:22:55 +01:00
|
|
|
if re.search(r'niedostępn[ey] w(?: |\s+)Twoim kraju\s*<', webpage):
|
|
|
|
self.raise_geo_restricted()
|
|
|
|
|
2017-05-01 17:09:18 +02:00
|
|
|
need_confirm_age = False
|
2021-02-04 08:56:01 +01:00
|
|
|
if self._html_search_regex(r'(<form[^>]+action="[^"]*/a/validatebirth[^"]*")',
|
2017-05-01 17:09:18 +02:00
|
|
|
webpage, 'birthday validate form', default=None):
|
|
|
|
webpage = self._download_age_confirm_page(
|
|
|
|
url, video_id, note='Confirming age')
|
|
|
|
need_confirm_age = True
|
|
|
|
|
2016-03-09 20:55:27 +01:00
|
|
|
formats = []
|
|
|
|
|
2016-10-16 03:04:17 +02:00
|
|
|
uploader = self._search_regex(r'''(?x)
|
|
|
|
<(span|meta)[^>]+itemprop=(["\'])author\2[^>]*>
|
|
|
|
(?:<\1[^>]*>[^<]*</\1>|(?!</\1>)(?:.|\n))*?
|
|
|
|
<(span|meta)[^>]+itemprop=(["\'])name\4[^>]*>(?P<uploader>[^<]+)</\3>
|
|
|
|
''', webpage, 'uploader', default=None, group='uploader')
|
|
|
|
view_count = self._search_regex(
|
|
|
|
r'Odsłony:(?:\s| )*([0-9]+)', webpage,
|
|
|
|
'view_count', default=None)
|
|
|
|
average_rating = self._search_regex(
|
2020-11-26 18:27:34 +01:00
|
|
|
(r'<(?:span|meta)[^>]+itemprop=(["\'])ratingValue\1[^>]*>(?P<rating_value>[0-9.]+)',
|
|
|
|
r'<span[^>]+\bclass=["\']rating["\'][^>]*>(?P<rating_value>[0-9.]+)'), webpage, 'rating', fatal=False,
|
|
|
|
group='rating_value')
|
2016-10-16 03:04:17 +02:00
|
|
|
|
2016-03-19 18:17:14 +01:00
|
|
|
info_dict = {
|
|
|
|
'id': video_id,
|
2016-10-16 03:04:17 +02:00
|
|
|
'title': self._og_search_title(webpage),
|
|
|
|
'description': self._og_search_description(webpage),
|
|
|
|
'uploader': uploader,
|
|
|
|
'view_count': int_or_none(view_count),
|
|
|
|
'average_rating': float_or_none(average_rating),
|
|
|
|
'thumbnail': self._og_search_thumbnail(webpage),
|
2016-03-19 18:17:14 +01:00
|
|
|
'formats': formats,
|
|
|
|
'duration': None,
|
2017-05-01 17:09:18 +02:00
|
|
|
'age_limit': 18 if need_confirm_age else 0,
|
2016-03-19 18:17:14 +01:00
|
|
|
}
|
2016-03-09 20:55:27 +01:00
|
|
|
|
2021-05-06 18:01:20 +02:00
|
|
|
info = self._search_json_ld(webpage, video_id, default={})
|
|
|
|
|
2020-11-26 18:27:34 +01:00
|
|
|
# Source: https://www.cda.pl/js/player.js?t=1606154898
|
|
|
|
def decrypt_file(a):
|
|
|
|
for p in ('_XDDD', '_CDA', '_ADC', '_CXD', '_QWE', '_Q5', '_IKSDE'):
|
|
|
|
a = a.replace(p, '')
|
|
|
|
a = compat_urllib_parse_unquote(a)
|
|
|
|
b = []
|
|
|
|
for c in a:
|
|
|
|
f = compat_ord(c)
|
2021-08-30 16:07:03 +02:00
|
|
|
b.append(compat_chr(33 + (f + 14) % 94) if 33 <= f <= 126 else compat_chr(f))
|
2020-11-26 18:27:34 +01:00
|
|
|
a = ''.join(b)
|
|
|
|
a = a.replace('.cda.mp4', '')
|
|
|
|
for p in ('.2cda.pl', '.3cda.pl'):
|
|
|
|
a = a.replace(p, '.cda.pl')
|
|
|
|
if '/upstream' in a:
|
|
|
|
a = a.replace('/upstream', '.mp4/upstream')
|
|
|
|
return 'https://' + a
|
|
|
|
return 'https://' + a + '.mp4'
|
|
|
|
|
2016-03-19 18:17:14 +01:00
|
|
|
def extract_format(page, version):
|
2017-08-19 15:44:47 +02:00
|
|
|
json_str = self._html_search_regex(
|
2016-10-16 03:04:17 +02:00
|
|
|
r'player_data=(\\?["\'])(?P<player_data>.+?)\1', page,
|
|
|
|
'%s player_json' % version, fatal=False, group='player_data')
|
|
|
|
if not json_str:
|
|
|
|
return
|
|
|
|
player_data = self._parse_json(
|
|
|
|
json_str, '%s player_data' % version, fatal=False)
|
|
|
|
if not player_data:
|
|
|
|
return
|
|
|
|
video = player_data.get('video')
|
|
|
|
if not video or 'file' not in video:
|
|
|
|
self.report_warning('Unable to extract %s version information' % version)
|
2016-03-19 18:17:14 +01:00
|
|
|
return
|
2017-02-26 15:05:52 +01:00
|
|
|
if video['file'].startswith('uggc'):
|
|
|
|
video['file'] = codecs.decode(video['file'], 'rot_13')
|
|
|
|
if video['file'].endswith('adc.mp4'):
|
|
|
|
video['file'] = video['file'].replace('adc.mp4', '.mp4')
|
2020-11-26 18:27:34 +01:00
|
|
|
elif not video['file'].startswith('http'):
|
|
|
|
video['file'] = decrypt_file(video['file'])
|
2021-08-30 16:07:03 +02:00
|
|
|
video_quality = video.get('quality')
|
|
|
|
qualities = video.get('qualities', {})
|
|
|
|
video_quality = next((k for k, v in qualities.items() if v == video_quality), video_quality)
|
|
|
|
info_dict['formats'].append({
|
2016-10-16 03:04:17 +02:00
|
|
|
'url': video['file'],
|
2021-08-30 16:07:03 +02:00
|
|
|
'format_id': video_quality,
|
|
|
|
'height': int_or_none(video_quality[:-1]),
|
|
|
|
})
|
|
|
|
for quality, cda_quality in qualities.items():
|
|
|
|
if quality == video_quality:
|
|
|
|
continue
|
|
|
|
data = {'jsonrpc': '2.0', 'method': 'videoGetLink', 'id': 2,
|
|
|
|
'params': [video_id, cda_quality, video.get('ts'), video.get('hash2'), {}]}
|
|
|
|
data = json.dumps(data).encode('utf-8')
|
|
|
|
video_url = self._download_json(
|
|
|
|
f'https://www.cda.pl/video/{video_id}', video_id, headers={
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
'X-Requested-With': 'XMLHttpRequest'
|
|
|
|
}, data=data, note=f'Fetching {quality} url',
|
|
|
|
errnote=f'Failed to fetch {quality} url', fatal=False)
|
|
|
|
if try_get(video_url, lambda x: x['result']['status']) == 'ok':
|
|
|
|
video_url = try_get(video_url, lambda x: x['result']['resp'])
|
|
|
|
info_dict['formats'].append({
|
|
|
|
'url': video_url,
|
|
|
|
'format_id': quality,
|
|
|
|
'height': int_or_none(quality[:-1])
|
|
|
|
})
|
|
|
|
|
2016-03-19 18:17:14 +01:00
|
|
|
if not info_dict['duration']:
|
2016-10-16 03:04:17 +02:00
|
|
|
info_dict['duration'] = parse_duration(video.get('duration'))
|
2016-03-19 18:17:14 +01:00
|
|
|
|
|
|
|
extract_format(webpage, 'default')
|
|
|
|
|
|
|
|
for href, resolution in re.findall(
|
|
|
|
r'<a[^>]+data-quality="[^"]+"[^>]+href="([^"]+)"[^>]+class="quality-btn"[^>]*>([0-9]+p)',
|
|
|
|
webpage):
|
2017-05-01 17:09:18 +02:00
|
|
|
if need_confirm_age:
|
|
|
|
handler = self._download_age_confirm_page
|
|
|
|
else:
|
|
|
|
handler = self._download_webpage
|
|
|
|
|
|
|
|
webpage = handler(
|
2021-05-06 18:01:20 +02:00
|
|
|
urljoin(self._BASE_URL, href), video_id,
|
2016-10-16 03:04:17 +02:00
|
|
|
'Downloading %s version information' % resolution, fatal=False)
|
2016-03-09 20:55:27 +01:00
|
|
|
if not webpage:
|
2016-03-19 18:17:14 +01:00
|
|
|
# Manually report warning because empty page is returned when
|
|
|
|
# invalid version is requested.
|
|
|
|
self.report_warning('Unable to download %s version information' % resolution)
|
2016-03-09 20:55:27 +01:00
|
|
|
continue
|
2017-05-01 17:09:18 +02:00
|
|
|
|
2016-03-19 18:17:14 +01:00
|
|
|
extract_format(webpage, resolution)
|
2016-03-09 20:55:27 +01:00
|
|
|
|
|
|
|
self._sort_formats(formats)
|
|
|
|
|
2020-11-26 18:27:34 +01:00
|
|
|
return merge_dicts(info_dict, info)
|