]> jfr.im git - yt-dlp.git/blame - yt_dlp/extractor/adn.py
[misc] Add `hatch`, `ruff`, `pre-commit` and improve dev docs (#7409)
[yt-dlp.git] / yt_dlp / extractor / adn.py
CommitLineData
1ea559c4
RA
1import base64
2import binascii
82be732b
RA
3import json
4import os
1ea559c4 5import random
9526b1f1 6import time
82be732b
RA
7
8from .common import InfoExtractor
1d3586d0 9from ..aes import aes_cbc_decrypt_bytes, unpad_pkcs7
3d2623a8 10from ..compat import compat_b64decode
11from ..networking.exceptions import HTTPError
82be732b 12from ..utils import (
e897bd82 13 ExtractorError,
aa7785f8 14 ass_subtitles_timecode,
82be732b 15 bytes_to_intlist,
1ea559c4 16 bytes_to_long,
82be732b 17 float_or_none,
30a074c2 18 int_or_none,
82be732b 19 intlist_to_bytes,
1ea559c4 20 long_to_bytes,
9526b1f1 21 parse_iso8601,
1ea559c4 22 pkcs1pad,
5eb1458b 23 str_or_none,
e897bd82 24 strip_or_none,
30a074c2 25 try_get,
26 unified_strdate,
2181983a 27 urlencode_postdata,
82be732b 28)
5eb1458b 29from ..utils.traversal import traverse_obj
82be732b
RA
30
31
5eb1458b 32class ADNBaseIE(InfoExtractor):
db4678e4 33 IE_DESC = 'Animation Digital Network'
5eb1458b
CS
34 _NETRC_MACHINE = 'animationdigitalnetwork'
35 _BASE = 'animationdigitalnetwork.fr'
36 _API_BASE_URL = f'https://gw.api.{_BASE}/'
37 _PLAYER_BASE_URL = f'{_API_BASE_URL}player/'
38 _HEADERS = {}
39 _LOGIN_ERR_MESSAGE = 'Unable to log in'
40 _RSA_KEY = (0x9B42B08905199A5CCE2026274399CA560ECB209EE9878A708B1C0812E1BB8CB5D1FB7441861147C1A1F2F3A0476DD63A9CAC20D3E983613346850AA6CB38F16DC7D720FD7D86FC6E5B3D5BBC72E14CD0BF9E869F2CEA2CCAD648F1DCE38F1FF916CEFB2D339B64AA0264372344BC775E265E8A852F88144AB0BD9AA06C1A4ABB, 65537)
41 _POS_ALIGN_MAP = {
42 'start': 1,
43 'end': 3,
44 }
45 _LINE_ALIGN_MAP = {
46 'middle': 8,
47 'end': 4,
48 }
49
50
51class ADNIE(ADNBaseIE):
52 _VALID_URL = r'https?://(?:www\.)?(?:animation|anime)digitalnetwork\.(?P<lang>fr|de)/video/[^/?#]+/(?P<id>\d+)'
db4678e4 53 _TESTS = [{
54 'url': 'https://animationdigitalnetwork.fr/video/fruits-basket/9841-episode-1-a-ce-soir',
55 'md5': '1c9ef066ceb302c86f80c2b371615261',
82be732b 56 'info_dict': {
db4678e4 57 'id': '9841',
82be732b 58 'ext': 'mp4',
db4678e4 59 'title': 'Fruits Basket - Episode 1',
60 'description': 'md5:14be2f72c3c96809b0ca424b0097d336',
61 'series': 'Fruits Basket',
62 'duration': 1437,
63 'release_date': '20190405',
30a074c2 64 'comment_count': int,
65 'average_rating': float,
db4678e4 66 'season_number': 1,
67 'episode': 'À ce soir !',
30a074c2 68 'episode_number': 1,
5eb1458b
CS
69 'thumbnail': str,
70 'season': 'Season 1',
db4678e4 71 },
5eb1458b 72 'skip': 'Only available in French and German speaking Europe',
db4678e4 73 }, {
74 'url': 'http://animedigitalnetwork.fr/video/blue-exorcist-kyoto-saga/7778-episode-1-debut-des-hostilites',
75 'only_matching': True,
5eb1458b
CS
76 }, {
77 'url': 'https://animationdigitalnetwork.de/video/the-eminence-in-shadow/23550-folge-1',
78 'md5': '5c5651bf5791fa6fcd7906012b9d94e8',
79 'info_dict': {
80 'id': '23550',
81 'ext': 'mp4',
82 'episode_number': 1,
83 'duration': 1417,
84 'release_date': '20231004',
85 'series': 'The Eminence in Shadow',
86 'season_number': 2,
87 'episode': str,
88 'title': str,
89 'thumbnail': str,
90 'season': 'Season 2',
91 'comment_count': int,
92 'average_rating': float,
93 'description': str,
94 },
95 # 'skip': 'Only available in French and German speaking Europe',
db4678e4 96 }]
30a074c2 97
30a074c2 98 def _get_subtitles(self, sub_url, video_id):
99 if not sub_url:
82be732b
RA
100 return None
101
102 enc_subtitles = self._download_webpage(
30a074c2 103 sub_url, video_id, 'Downloading subtitles location', fatal=False) or '{}'
e6c9ae31
RA
104 subtitle_location = (self._parse_json(enc_subtitles, video_id, fatal=False) or {}).get('location')
105 if subtitle_location:
106 enc_subtitles = self._download_webpage(
30a074c2 107 subtitle_location, video_id, 'Downloading subtitles data',
db4678e4 108 fatal=False, headers={'Origin': 'https://' + self._BASE})
82be732b
RA
109 if not enc_subtitles:
110 return None
111
db4678e4 112 # http://animationdigitalnetwork.fr/components/com_vodvideo/videojs/adn-vjs.min.js
1d3586d0 113 dec_subtitles = unpad_pkcs7(aes_cbc_decrypt_bytes(
114 compat_b64decode(enc_subtitles[24:]),
3358f893 115 binascii.unhexlify(self._K + '7fac1178830cfe0c'),
1d3586d0 116 compat_b64decode(enc_subtitles[:24])))
117 subtitles_json = self._parse_json(dec_subtitles.decode(), None, fatal=False)
82be732b
RA
118 if not subtitles_json:
119 return None
120
121 subtitles = {}
122 for sub_lang, sub in subtitles_json.items():
b966740c
RA
123 ssa = '''[Script Info]
124ScriptType:V4.00
125[V4 Styles]
2bbde1d0
RA
126Format: Name,Fontname,Fontsize,PrimaryColour,SecondaryColour,TertiaryColour,BackColour,Bold,Italic,BorderStyle,Outline,Shadow,Alignment,MarginL,MarginR,MarginV,AlphaLevel,Encoding
127Style: Default,Arial,18,16777215,16777215,16777215,0,-1,0,1,1,0,2,20,20,20,0,0
b966740c 128[Events]
2bbde1d0 129Format: Marked,Start,End,Style,Name,MarginL,MarginR,MarginV,Effect,Text'''
b966740c
RA
130 for current in sub:
131 start, end, text, line_align, position_align = (
82be732b
RA
132 float_or_none(current.get('startTime')),
133 float_or_none(current.get('endTime')),
b966740c
RA
134 current.get('text'), current.get('lineAlign'),
135 current.get('positionAlign'))
82be732b
RA
136 if start is None or end is None or text is None:
137 continue
b966740c 138 alignment = self._POS_ALIGN_MAP.get(position_align, 2) + self._LINE_ALIGN_MAP.get(line_align, 0)
2bbde1d0 139 ssa += os.linesep + 'Dialogue: Marked=0,%s,%s,Default,,0,0,0,,%s%s' % (
aa7785f8 140 ass_subtitles_timecode(start),
141 ass_subtitles_timecode(end),
b966740c
RA
142 '{\\a%d}' % alignment if alignment != 2 else '',
143 text.replace('\n', '\\N').replace('<i>', '{\\i1}').replace('</i>', '{\\i0}'))
82be732b
RA
144
145 if sub_lang == 'vostf':
146 sub_lang = 'fr'
5eb1458b
CS
147 elif sub_lang == 'vostde':
148 sub_lang = 'de'
82be732b
RA
149 subtitles.setdefault(sub_lang, []).extend([{
150 'ext': 'json',
151 'data': json.dumps(sub),
152 }, {
b966740c
RA
153 'ext': 'ssa',
154 'data': ssa,
82be732b
RA
155 }])
156 return subtitles
157
52efa4b3 158 def _perform_login(self, username, password):
2181983a 159 try:
160 access_token = (self._download_json(
161 self._API_BASE_URL + 'authentication/login', None,
162 'Logging in', self._LOGIN_ERR_MESSAGE, fatal=False,
163 data=urlencode_postdata({
164 'password': password,
165 'rememberMe': False,
166 'source': 'Web',
167 'username': username,
168 })) or {}).get('accessToken')
169 if access_token:
170 self._HEADERS = {'authorization': 'Bearer ' + access_token}
171 except ExtractorError as e:
172 message = None
3d2623a8 173 if isinstance(e.cause, HTTPError) and e.cause.status == 401:
2181983a 174 resp = self._parse_json(
3d2623a8 175 e.cause.response.read().decode(), None, fatal=False) or {}
2181983a 176 message = resp.get('message') or resp.get('code')
177 self.report_warning(message or self._LOGIN_ERR_MESSAGE)
178
82be732b 179 def _real_extract(self, url):
5eb1458b 180 lang, video_id = self._match_valid_url(url).group('lang', 'id')
30a074c2 181 video_base_url = self._PLAYER_BASE_URL + 'video/%s/' % video_id
182 player = self._download_json(
183 video_base_url + 'configuration', video_id,
2181983a 184 'Downloading player config JSON metadata',
185 headers=self._HEADERS)['player']
30a074c2 186 options = player['options']
187
188 user = options['user']
189 if not user.get('hasAccess'):
9526b1f1
CS
190 start_date = traverse_obj(options, ('video', 'startDate', {str}))
191 if (parse_iso8601(start_date) or 0) > time.time():
192 raise ExtractorError(f'This video is not available yet. Release date: {start_date}', expected=True)
193 self.raise_login_required('This video requires a subscription', method='password')
30a074c2 194
195 token = self._download_json(
196 user.get('refreshTokenUrl') or (self._PLAYER_BASE_URL + 'refresh/token'),
197 video_id, 'Downloading access token', headers={
5eb1458b 198 'X-Player-Refresh-Token': user['refreshToken'],
30a074c2 199 }, data=b'')['token']
200
201 links_url = try_get(options, lambda x: x['video']['url']) or (video_base_url + 'link')
efa944f4 202 self._K = ''.join(random.choices('0123456789abcdef', k=16))
30a074c2 203 message = bytes_to_intlist(json.dumps({
204 'k': self._K,
205 't': token,
206 }))
207
208 # Sometimes authentication fails for no good reason, retry with
209 # a different random padding
210 links_data = None
211 for _ in range(3):
1ea559c4
RA
212 padded_message = intlist_to_bytes(pkcs1pad(message, 128))
213 n, e = self._RSA_KEY
214 encrypted_message = long_to_bytes(pow(bytes_to_long(padded_message), e, n))
215 authorization = base64.b64encode(encrypted_message).decode()
30a074c2 216
217 try:
218 links_data = self._download_json(
219 links_url, video_id, 'Downloading links JSON metadata', headers={
5eb1458b
CS
220 'X-Player-Token': authorization,
221 'X-Target-Distribution': lang,
222 **self._HEADERS
30a074c2 223 }, query={
224 'freeWithAds': 'true',
225 'adaptive': 'false',
226 'withMetadata': 'true',
227 'source': 'Web'
228 })
229 break
230 except ExtractorError as e:
3d2623a8 231 if not isinstance(e.cause, HTTPError):
30a074c2 232 raise e
233
3d2623a8 234 if e.cause.status == 401:
30a074c2 235 # This usually goes away with a different random pkcs1pad, so retry
236 continue
237
3d2623a8 238 error = self._parse_json(e.cause.response.read(), video_id)
30a074c2 239 message = error.get('message')
240 if e.cause.code == 403 and error.get('code') == 'player-bad-geolocation-country':
241 self.raise_geo_restricted(msg=message)
2181983a 242 raise ExtractorError(message)
30a074c2 243 else:
244 raise ExtractorError('Giving up retrying')
245
246 links = links_data.get('links') or {}
247 metas = links_data.get('metadata') or {}
248 sub_url = (links.get('subtitles') or {}).get('all')
249 video_info = links_data.get('video') or {}
250 title = metas['title']
82be732b
RA
251
252 formats = []
30a074c2 253 for format_id, qualities in (links.get('streaming') or {}).items():
20e2c9de
RA
254 if not isinstance(qualities, dict):
255 continue
b966740c 256 for quality, load_balancer_url in qualities.items():
82be732b 257 load_balancer_data = self._download_json(
b966740c
RA
258 load_balancer_url, video_id,
259 'Downloading %s %s JSON metadata' % (format_id, quality),
260 fatal=False) or {}
82be732b
RA
261 m3u8_url = load_balancer_data.get('location')
262 if not m3u8_url:
263 continue
264 m3u8_formats = self._extract_m3u8_formats(
265 m3u8_url, video_id, 'mp4', 'm3u8_native',
266 m3u8_id=format_id, fatal=False)
267 if format_id == 'vf':
268 for f in m3u8_formats:
269 f['language'] = 'fr'
5eb1458b
CS
270 elif format_id == 'vde':
271 for f in m3u8_formats:
272 f['language'] = 'de'
82be732b 273 formats.extend(m3u8_formats)
82be732b 274
9526b1f1
CS
275 if not formats:
276 self.raise_login_required('This video requires a subscription', method='password')
277
30a074c2 278 video = (self._download_json(
279 self._API_BASE_URL + 'video/%s' % video_id, video_id,
280 'Downloading additional video metadata', fatal=False) or {}).get('video') or {}
281 show = video.get('show') or {}
282
82be732b
RA
283 return {
284 'id': video_id,
285 'title': title,
30a074c2 286 'description': strip_or_none(metas.get('summary') or video.get('summary')),
287 'thumbnail': video_info.get('image') or player.get('image'),
82be732b 288 'formats': formats,
30a074c2 289 'subtitles': self.extract_subtitles(sub_url, video_id),
290 'episode': metas.get('subtitle') or video.get('name'),
291 'episode_number': int_or_none(video.get('shortNumber')),
292 'series': show.get('title'),
293 'season_number': int_or_none(video.get('season')),
294 'duration': int_or_none(video_info.get('duration') or video.get('duration')),
295 'release_date': unified_strdate(video.get('releaseDate')),
296 'average_rating': float_or_none(video.get('rating') or metas.get('rating')),
297 'comment_count': int_or_none(video.get('commentsCount')),
82be732b 298 }
5eb1458b
CS
299
300
301class ADNSeasonIE(ADNBaseIE):
302 _VALID_URL = r'https?://(?:www\.)?(?:animation|anime)digitalnetwork\.(?P<lang>fr|de)/video/(?P<id>[^/?#]+)/?(?:$|[#?])'
303 _TESTS = [{
304 'url': 'https://animationdigitalnetwork.fr/video/tokyo-mew-mew-new',
305 'playlist_count': 12,
306 'info_dict': {
307 'id': '911',
308 'title': 'Tokyo Mew Mew New',
309 },
310 # 'skip': 'Only available in French end German speaking Europe',
311 }]
312
313 def _real_extract(self, url):
314 lang, video_show_slug = self._match_valid_url(url).group('lang', 'id')
315 show = self._download_json(
316 f'{self._API_BASE_URL}show/{video_show_slug}/', video_show_slug,
317 'Downloading show JSON metadata', headers=self._HEADERS)['show']
318 show_id = str(show['id'])
319 episodes = self._download_json(
320 f'{self._API_BASE_URL}video/show/{show_id}', video_show_slug,
321 'Downloading episode list', headers={
322 'X-Target-Distribution': lang,
323 **self._HEADERS
324 }, query={
325 'order': 'asc',
326 'limit': '-1',
327 })
328
329 def entries():
330 for episode_id in traverse_obj(episodes, ('videos', ..., 'id', {str_or_none})):
331 yield self.url_result(
332 f'https://animationdigitalnetwork.{lang}/video/{video_show_slug}/{episode_id}',
333 ADNIE, episode_id)
334
335 return self.playlist_result(entries(), show_id, show.get('title'))