]> jfr.im git - yt-dlp.git/blame - yt_dlp/utils.py
[cleanup] Misc
[yt-dlp.git] / yt_dlp / utils.py
CommitLineData
6929b41a 1import asyncio
15dfb392 2import atexit
1e399778 3import base64
5bc880b9 4import binascii
912b38b4 5import calendar
676eb3f2 6import codecs
c380cc28 7import collections
ab029d7e 8import collections.abc
62e609ab 9import contextlib
c496ca96 10import datetime
0c265486 11import email.header
f8271158 12import email.utils
f45c185f 13import errno
d77c3dfd 14import gzip
49fa4d9a
N
15import hashlib
16import hmac
ac668111 17import html.entities
18import html.parser
54007a45 19import http.client
20import http.cookiejar
019a94f7 21import importlib.util
b1f94422 22import inspect
03f9daab 23import io
79a2e94e 24import itertools
f4bfd65f 25import json
d77c3dfd 26import locale
02dbf93f 27import math
f8271158 28import mimetypes
347de493 29import operator
d77c3dfd 30import os
c496ca96 31import platform
773f291d 32import random
d77c3dfd 33import re
f8271158 34import shlex
c496ca96 35import socket
79a2e94e 36import ssl
ac668111 37import struct
1c088fa8 38import subprocess
d77c3dfd 39import sys
181c8655 40import tempfile
c380cc28 41import time
01951dda 42import traceback
64fa820c 43import types
989a01c2 44import unicodedata
14f25df2 45import urllib.error
f8271158 46import urllib.parse
ac668111 47import urllib.request
bcf89ce6 48import xml.etree.ElementTree
d77c3dfd 49import zlib
d77c3dfd 50
6929b41a 51from .compat import functools # isort: split
8c25f81b 52from .compat import (
36e6f62c 53 compat_etree_fromstring,
51098426 54 compat_expanduser,
f8271158 55 compat_HTMLParseError,
efa97bdc 56 compat_os_name,
702ccf2d 57 compat_shlex_quote,
8c25f81b 58)
ac668111 59from .dependencies import brotli, certifi, websockets, xattr
f8271158 60from .socks import ProxyType, sockssocket
71aff188 61
4644ac55 62
51fb4995
YCH
63def register_socks_protocols():
64 # "Register" SOCKS protocols
d5ae6bb5
YCH
65 # In Python < 2.6.5, urlsplit() suffers from bug https://bugs.python.org/issue7904
66 # URLs with protocols not in urlparse.uses_netloc are not handled correctly
51fb4995 67 for scheme in ('socks', 'socks4', 'socks4a', 'socks5'):
14f25df2 68 if scheme not in urllib.parse.uses_netloc:
69 urllib.parse.uses_netloc.append(scheme)
51fb4995
YCH
70
71
468e2e92
FV
72# This is not clearly defined otherwise
73compiled_regex_type = type(re.compile(''))
74
f7a147e3
S
75
76def random_user_agent():
77 _USER_AGENT_TPL = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/%s Safari/537.36'
78 _CHROME_VERSIONS = (
19b4c74d 79 '90.0.4430.212',
80 '90.0.4430.24',
81 '90.0.4430.70',
82 '90.0.4430.72',
83 '90.0.4430.85',
84 '90.0.4430.93',
85 '91.0.4472.101',
86 '91.0.4472.106',
87 '91.0.4472.114',
88 '91.0.4472.124',
89 '91.0.4472.164',
90 '91.0.4472.19',
91 '91.0.4472.77',
92 '92.0.4515.107',
93 '92.0.4515.115',
94 '92.0.4515.131',
95 '92.0.4515.159',
96 '92.0.4515.43',
97 '93.0.4556.0',
98 '93.0.4577.15',
99 '93.0.4577.63',
100 '93.0.4577.82',
101 '94.0.4606.41',
102 '94.0.4606.54',
103 '94.0.4606.61',
104 '94.0.4606.71',
105 '94.0.4606.81',
106 '94.0.4606.85',
107 '95.0.4638.17',
108 '95.0.4638.50',
109 '95.0.4638.54',
110 '95.0.4638.69',
111 '95.0.4638.74',
112 '96.0.4664.18',
113 '96.0.4664.45',
114 '96.0.4664.55',
115 '96.0.4664.93',
116 '97.0.4692.20',
f7a147e3
S
117 )
118 return _USER_AGENT_TPL % random.choice(_CHROME_VERSIONS)
119
120
4390d5ec 121SUPPORTED_ENCODINGS = [
122 'gzip', 'deflate'
123]
9b8ee23b 124if brotli:
4390d5ec 125 SUPPORTED_ENCODINGS.append('br')
126
3e669f36 127std_headers = {
f7a147e3 128 'User-Agent': random_user_agent(),
59ae15a5 129 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
59ae15a5 130 'Accept-Language': 'en-us,en;q=0.5',
b1156c1e 131 'Sec-Fetch-Mode': 'navigate',
3e669f36 132}
f427df17 133
5f6a1245 134
fb37eb25
S
135USER_AGENTS = {
136 'Safari': 'Mozilla/5.0 (X11; Linux x86_64; rv:10.0) AppleWebKit/533.20.25 (KHTML, like Gecko) Version/5.0.4 Safari/533.20.27',
137}
138
139
bf42a990 140NO_DEFAULT = object()
7b2c3f47 141IDENTITY = lambda x: x
bf42a990 142
7105440c
YCH
143ENGLISH_MONTH_NAMES = [
144 'January', 'February', 'March', 'April', 'May', 'June',
145 'July', 'August', 'September', 'October', 'November', 'December']
146
f6717dec
S
147MONTH_NAMES = {
148 'en': ENGLISH_MONTH_NAMES,
149 'fr': [
3e4185c3
S
150 'janvier', 'février', 'mars', 'avril', 'mai', 'juin',
151 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'],
78545664 152 # these follow the genitive grammatical case (dopełniacz)
153 # some websites might be using nominative, which will require another month list
154 # https://en.wikibooks.org/wiki/Polish/Noun_cases
155 'pl': ['stycznia', 'lutego', 'marca', 'kwietnia', 'maja', 'czerwca',
156 'lipca', 'sierpnia', 'września', 'października', 'listopada', 'grudnia'],
f6717dec 157}
a942d6cb 158
8f53dc44 159# From https://github.com/python/cpython/blob/3.11/Lib/email/_parseaddr.py#L36-L42
160TIMEZONE_NAMES = {
161 'UT': 0, 'UTC': 0, 'GMT': 0, 'Z': 0,
162 'AST': -4, 'ADT': -3, # Atlantic (used in Canada)
163 'EST': -5, 'EDT': -4, # Eastern
164 'CST': -6, 'CDT': -5, # Central
165 'MST': -7, 'MDT': -6, # Mountain
166 'PST': -8, 'PDT': -7 # Pacific
167}
168
c587cbb7 169# needed for sanitizing filenames in restricted mode
c8827027 170ACCENT_CHARS = dict(zip('ÂÃÄÀÁÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖŐØŒÙÚÛÜŰÝÞßàáâãäåæçèéêëìíîïðñòóôõöőøœùúûüűýþÿ',
fd35d8cd
JW
171 itertools.chain('AAAAAA', ['AE'], 'CEEEEIIIIDNOOOOOOO', ['OE'], 'UUUUUY', ['TH', 'ss'],
172 'aaaaaa', ['ae'], 'ceeeeiiiionooooooo', ['oe'], 'uuuuuy', ['th'], 'y')))
c587cbb7 173
46f59e89
S
174DATE_FORMATS = (
175 '%d %B %Y',
176 '%d %b %Y',
177 '%B %d %Y',
cb655f34
S
178 '%B %dst %Y',
179 '%B %dnd %Y',
9d30c213 180 '%B %drd %Y',
cb655f34 181 '%B %dth %Y',
46f59e89 182 '%b %d %Y',
cb655f34
S
183 '%b %dst %Y',
184 '%b %dnd %Y',
9d30c213 185 '%b %drd %Y',
cb655f34 186 '%b %dth %Y',
46f59e89
S
187 '%b %dst %Y %I:%M',
188 '%b %dnd %Y %I:%M',
9d30c213 189 '%b %drd %Y %I:%M',
46f59e89
S
190 '%b %dth %Y %I:%M',
191 '%Y %m %d',
192 '%Y-%m-%d',
bccdbd22 193 '%Y.%m.%d.',
46f59e89 194 '%Y/%m/%d',
81c13222 195 '%Y/%m/%d %H:%M',
46f59e89 196 '%Y/%m/%d %H:%M:%S',
1931a55e
THD
197 '%Y%m%d%H%M',
198 '%Y%m%d%H%M%S',
4f3fa23e 199 '%Y%m%d',
0c1c6f4b 200 '%Y-%m-%d %H:%M',
46f59e89
S
201 '%Y-%m-%d %H:%M:%S',
202 '%Y-%m-%d %H:%M:%S.%f',
5014558a 203 '%Y-%m-%d %H:%M:%S:%f',
46f59e89
S
204 '%d.%m.%Y %H:%M',
205 '%d.%m.%Y %H.%M',
206 '%Y-%m-%dT%H:%M:%SZ',
207 '%Y-%m-%dT%H:%M:%S.%fZ',
208 '%Y-%m-%dT%H:%M:%S.%f0Z',
209 '%Y-%m-%dT%H:%M:%S',
210 '%Y-%m-%dT%H:%M:%S.%f',
211 '%Y-%m-%dT%H:%M',
c6eed6b8
S
212 '%b %d %Y at %H:%M',
213 '%b %d %Y at %H:%M:%S',
b555ae9b
S
214 '%B %d %Y at %H:%M',
215 '%B %d %Y at %H:%M:%S',
a63d9bd0 216 '%H:%M %d-%b-%Y',
46f59e89
S
217)
218
219DATE_FORMATS_DAY_FIRST = list(DATE_FORMATS)
220DATE_FORMATS_DAY_FIRST.extend([
221 '%d-%m-%Y',
222 '%d.%m.%Y',
223 '%d.%m.%y',
224 '%d/%m/%Y',
225 '%d/%m/%y',
226 '%d/%m/%Y %H:%M:%S',
47304e07 227 '%d-%m-%Y %H:%M',
46f59e89
S
228])
229
230DATE_FORMATS_MONTH_FIRST = list(DATE_FORMATS)
231DATE_FORMATS_MONTH_FIRST.extend([
232 '%m-%d-%Y',
233 '%m.%d.%Y',
234 '%m/%d/%Y',
235 '%m/%d/%y',
236 '%m/%d/%Y %H:%M:%S',
237])
238
06b3fe29 239PACKED_CODES_RE = r"}\('(.+)',(\d+),(\d+),'([^']+)'\.split\('\|'\)"
0f60ba6e 240JSON_LD_RE = r'(?is)<script[^>]+type=(["\']?)application/ld\+json\1[^>]*>\s*(?P<json_ld>{.+?}|\[.+?\])\s*</script>'
06b3fe29 241
1d485a1a 242NUMBER_RE = r'\d+(?:\.\d+)?'
243
7105440c 244
0b9c08b4 245@functools.cache
d77c3dfd 246def preferredencoding():
59ae15a5 247 """Get preferred encoding.
d77c3dfd 248
59ae15a5
PH
249 Returns the best encoding scheme for the system, based on
250 locale.getpreferredencoding() and some further tweaks.
251 """
252 try:
253 pref = locale.getpreferredencoding()
28e614de 254 'TEST'.encode(pref)
70a1165b 255 except Exception:
59ae15a5 256 pref = 'UTF-8'
bae611f2 257
59ae15a5 258 return pref
d77c3dfd 259
f4bfd65f 260
181c8655 261def write_json_file(obj, fn):
1394646a 262 """ Encode obj as JSON and write it to fn, atomically if possible """
181c8655 263
cfb0511d 264 tf = tempfile.NamedTemporaryFile(
265 prefix=f'{os.path.basename(fn)}.', dir=os.path.dirname(fn),
266 suffix='.tmp', delete=False, mode='w', encoding='utf-8')
181c8655
PH
267
268 try:
269 with tf:
45d86abe 270 json.dump(obj, tf, ensure_ascii=False)
1394646a
IK
271 if sys.platform == 'win32':
272 # Need to remove existing file on Windows, else os.rename raises
273 # WindowsError or FileExistsError.
19a03940 274 with contextlib.suppress(OSError):
1394646a 275 os.unlink(fn)
19a03940 276 with contextlib.suppress(OSError):
9cd5f54e
R
277 mask = os.umask(0)
278 os.umask(mask)
279 os.chmod(tf.name, 0o666 & ~mask)
181c8655 280 os.rename(tf.name, fn)
70a1165b 281 except Exception:
19a03940 282 with contextlib.suppress(OSError):
181c8655 283 os.remove(tf.name)
181c8655
PH
284 raise
285
286
cfb0511d 287def find_xpath_attr(node, xpath, key, val=None):
288 """ Find the xpath xpath[@key=val] """
289 assert re.match(r'^[a-zA-Z_-]+$', key)
86e5f3ed 290 expr = xpath + ('[@%s]' % key if val is None else f"[@{key}='{val}']")
cfb0511d 291 return node.find(expr)
59ae56fa 292
d7e66d39
JMF
293# On python2.6 the xml.etree.ElementTree.Element methods don't support
294# the namespace parameter
5f6a1245
JW
295
296
d7e66d39
JMF
297def xpath_with_ns(path, ns_map):
298 components = [c.split(':') for c in path.split('/')]
299 replaced = []
300 for c in components:
301 if len(c) == 1:
302 replaced.append(c[0])
303 else:
304 ns, tag = c
305 replaced.append('{%s}%s' % (ns_map[ns], tag))
306 return '/'.join(replaced)
307
d77c3dfd 308
a41fb80c 309def xpath_element(node, xpath, name=None, fatal=False, default=NO_DEFAULT):
578c0745 310 def _find_xpath(xpath):
f9934b96 311 return node.find(xpath)
578c0745 312
14f25df2 313 if isinstance(xpath, str):
578c0745
S
314 n = _find_xpath(xpath)
315 else:
316 for xp in xpath:
317 n = _find_xpath(xp)
318 if n is not None:
319 break
d74bebd5 320
8e636da4 321 if n is None:
bf42a990
S
322 if default is not NO_DEFAULT:
323 return default
324 elif fatal:
bf0ff932
PH
325 name = xpath if name is None else name
326 raise ExtractorError('Could not find XML element %s' % name)
327 else:
328 return None
a41fb80c
S
329 return n
330
331
332def xpath_text(node, xpath, name=None, fatal=False, default=NO_DEFAULT):
8e636da4
S
333 n = xpath_element(node, xpath, name, fatal=fatal, default=default)
334 if n is None or n == default:
335 return n
336 if n.text is None:
337 if default is not NO_DEFAULT:
338 return default
339 elif fatal:
340 name = xpath if name is None else name
341 raise ExtractorError('Could not find XML element\'s text %s' % name)
342 else:
343 return None
344 return n.text
a41fb80c
S
345
346
347def xpath_attr(node, xpath, key, name=None, fatal=False, default=NO_DEFAULT):
348 n = find_xpath_attr(node, xpath, key)
349 if n is None:
350 if default is not NO_DEFAULT:
351 return default
352 elif fatal:
86e5f3ed 353 name = f'{xpath}[@{key}]' if name is None else name
a41fb80c
S
354 raise ExtractorError('Could not find XML attribute %s' % name)
355 else:
356 return None
357 return n.attrib[key]
bf0ff932
PH
358
359
c487cf00 360def get_element_by_id(id, html, **kwargs):
43e8fafd 361 """Return the content of the tag with the specified ID in the passed HTML document"""
c487cf00 362 return get_element_by_attribute('id', id, html, **kwargs)
43e8fafd 363
12ea2f30 364
c487cf00 365def get_element_html_by_id(id, html, **kwargs):
6f32a0b5 366 """Return the html of the tag with the specified ID in the passed HTML document"""
c487cf00 367 return get_element_html_by_attribute('id', id, html, **kwargs)
6f32a0b5
ZM
368
369
84c237fb 370def get_element_by_class(class_name, html):
2af12ad9
TC
371 """Return the content of the first tag with the specified class in the passed HTML document"""
372 retval = get_elements_by_class(class_name, html)
373 return retval[0] if retval else None
374
375
6f32a0b5
ZM
376def get_element_html_by_class(class_name, html):
377 """Return the html of the first tag with the specified class in the passed HTML document"""
378 retval = get_elements_html_by_class(class_name, html)
379 return retval[0] if retval else None
380
381
c487cf00 382def get_element_by_attribute(attribute, value, html, **kwargs):
383 retval = get_elements_by_attribute(attribute, value, html, **kwargs)
2af12ad9
TC
384 return retval[0] if retval else None
385
386
c487cf00 387def get_element_html_by_attribute(attribute, value, html, **kargs):
388 retval = get_elements_html_by_attribute(attribute, value, html, **kargs)
6f32a0b5
ZM
389 return retval[0] if retval else None
390
391
c487cf00 392def get_elements_by_class(class_name, html, **kargs):
2af12ad9
TC
393 """Return the content of all tags with the specified class in the passed HTML document as a list"""
394 return get_elements_by_attribute(
64fa820c 395 'class', r'[^\'"]*(?<=[\'"\s])%s(?=[\'"\s])[^\'"]*' % re.escape(class_name),
84c237fb
YCH
396 html, escape_value=False)
397
398
6f32a0b5
ZM
399def get_elements_html_by_class(class_name, html):
400 """Return the html of all tags with the specified class in the passed HTML document as a list"""
401 return get_elements_html_by_attribute(
64fa820c 402 'class', r'[^\'"]*(?<=[\'"\s])%s(?=[\'"\s])[^\'"]*' % re.escape(class_name),
6f32a0b5
ZM
403 html, escape_value=False)
404
405
406def get_elements_by_attribute(*args, **kwargs):
43e8fafd 407 """Return the content of the tag with the specified attribute in the passed HTML document"""
6f32a0b5
ZM
408 return [content for content, _ in get_elements_text_and_html_by_attribute(*args, **kwargs)]
409
410
411def get_elements_html_by_attribute(*args, **kwargs):
412 """Return the html of the tag with the specified attribute in the passed HTML document"""
413 return [whole for _, whole in get_elements_text_and_html_by_attribute(*args, **kwargs)]
414
415
4c9a1a3b 416def get_elements_text_and_html_by_attribute(attribute, value, html, *, tag=r'[\w:.-]+', escape_value=True):
6f32a0b5
ZM
417 """
418 Return the text (content) and the html (whole) of the tag with the specified
419 attribute in the passed HTML document
420 """
c61473c1
M
421 if not value:
422 return
9e6dd238 423
86e5f3ed 424 quote = '' if re.match(r'''[\s"'`=<>]''', value) else '?'
0254f162 425
84c237fb
YCH
426 value = re.escape(value) if escape_value else value
427
86e5f3ed 428 partial_element_re = rf'''(?x)
4c9a1a3b 429 <(?P<tag>{tag})
0254f162 430 (?:\s(?:[^>"']|"[^"]*"|'[^']*')*)?
86e5f3ed 431 \s{re.escape(attribute)}\s*=\s*(?P<_q>['"]{quote})(?-x:{value})(?P=_q)
432 '''
38285056 433
0254f162
ZM
434 for m in re.finditer(partial_element_re, html):
435 content, whole = get_element_text_and_html_by_tag(m.group('tag'), html[m.start():])
a921f407 436
0254f162
ZM
437 yield (
438 unescapeHTML(re.sub(r'^(?P<q>["\'])(?P<content>.*)(?P=q)$', r'\g<content>', content, flags=re.DOTALL)),
439 whole
440 )
a921f407 441
c5229f39 442
ac668111 443class HTMLBreakOnClosingTagParser(html.parser.HTMLParser):
6f32a0b5
ZM
444 """
445 HTML parser which raises HTMLBreakOnClosingTagException upon reaching the
446 closing tag for the first opening tag it has encountered, and can be used
447 as a context manager
448 """
449
450 class HTMLBreakOnClosingTagException(Exception):
451 pass
452
453 def __init__(self):
454 self.tagstack = collections.deque()
ac668111 455 html.parser.HTMLParser.__init__(self)
6f32a0b5
ZM
456
457 def __enter__(self):
458 return self
459
460 def __exit__(self, *_):
461 self.close()
462
463 def close(self):
464 # handle_endtag does not return upon raising HTMLBreakOnClosingTagException,
465 # so data remains buffered; we no longer have any interest in it, thus
466 # override this method to discard it
467 pass
468
469 def handle_starttag(self, tag, _):
470 self.tagstack.append(tag)
471
472 def handle_endtag(self, tag):
473 if not self.tagstack:
474 raise compat_HTMLParseError('no tags in the stack')
475 while self.tagstack:
476 inner_tag = self.tagstack.pop()
477 if inner_tag == tag:
478 break
479 else:
480 raise compat_HTMLParseError(f'matching opening tag for closing {tag} tag not found')
481 if not self.tagstack:
482 raise self.HTMLBreakOnClosingTagException()
483
484
46d09f87 485# XXX: This should be far less strict
6f32a0b5
ZM
486def get_element_text_and_html_by_tag(tag, html):
487 """
488 For the first element with the specified tag in the passed HTML document
489 return its' content (text) and the whole element (html)
490 """
491 def find_or_raise(haystack, needle, exc):
492 try:
493 return haystack.index(needle)
494 except ValueError:
495 raise exc
496 closing_tag = f'</{tag}>'
497 whole_start = find_or_raise(
498 html, f'<{tag}', compat_HTMLParseError(f'opening {tag} tag not found'))
499 content_start = find_or_raise(
500 html[whole_start:], '>', compat_HTMLParseError(f'malformed opening {tag} tag'))
501 content_start += whole_start + 1
502 with HTMLBreakOnClosingTagParser() as parser:
503 parser.feed(html[whole_start:content_start])
504 if not parser.tagstack or parser.tagstack[0] != tag:
505 raise compat_HTMLParseError(f'parser did not match opening {tag} tag')
506 offset = content_start
507 while offset < len(html):
508 next_closing_tag_start = find_or_raise(
509 html[offset:], closing_tag,
510 compat_HTMLParseError(f'closing {tag} tag not found'))
511 next_closing_tag_end = next_closing_tag_start + len(closing_tag)
512 try:
513 parser.feed(html[offset:offset + next_closing_tag_end])
514 offset += next_closing_tag_end
515 except HTMLBreakOnClosingTagParser.HTMLBreakOnClosingTagException:
516 return html[content_start:offset + next_closing_tag_start], \
517 html[whole_start:offset + next_closing_tag_end]
518 raise compat_HTMLParseError('unexpected end of html')
519
520
ac668111 521class HTMLAttributeParser(html.parser.HTMLParser):
8bb56eee 522 """Trivial HTML parser to gather the attributes for a single element"""
b6e0c7d2 523
8bb56eee 524 def __init__(self):
c5229f39 525 self.attrs = {}
ac668111 526 html.parser.HTMLParser.__init__(self)
8bb56eee
BF
527
528 def handle_starttag(self, tag, attrs):
529 self.attrs = dict(attrs)
7053aa3a 530 raise compat_HTMLParseError('done')
8bb56eee 531
c5229f39 532
ac668111 533class HTMLListAttrsParser(html.parser.HTMLParser):
73673ccf
FF
534 """HTML parser to gather the attributes for the elements of a list"""
535
536 def __init__(self):
ac668111 537 html.parser.HTMLParser.__init__(self)
73673ccf
FF
538 self.items = []
539 self._level = 0
540
541 def handle_starttag(self, tag, attrs):
542 if tag == 'li' and self._level == 0:
543 self.items.append(dict(attrs))
544 self._level += 1
545
546 def handle_endtag(self, tag):
547 self._level -= 1
548
549
8bb56eee
BF
550def extract_attributes(html_element):
551 """Given a string for an HTML element such as
552 <el
553 a="foo" B="bar" c="&98;az" d=boz
554 empty= noval entity="&amp;"
555 sq='"' dq="'"
556 >
557 Decode and return a dictionary of attributes.
558 {
559 'a': 'foo', 'b': 'bar', c: 'baz', d: 'boz',
560 'empty': '', 'noval': None, 'entity': '&',
561 'sq': '"', 'dq': '\''
562 }.
8bb56eee
BF
563 """
564 parser = HTMLAttributeParser()
19a03940 565 with contextlib.suppress(compat_HTMLParseError):
b4a3d461
S
566 parser.feed(html_element)
567 parser.close()
8bb56eee 568 return parser.attrs
9e6dd238 569
c5229f39 570
73673ccf
FF
571def parse_list(webpage):
572 """Given a string for an series of HTML <li> elements,
573 return a dictionary of their attributes"""
574 parser = HTMLListAttrsParser()
575 parser.feed(webpage)
576 parser.close()
577 return parser.items
578
579
9e6dd238 580def clean_html(html):
59ae15a5 581 """Clean an HTML snippet into a readable string"""
dd622d7c
PH
582
583 if html is None: # Convenience for sanitizing descriptions etc.
584 return html
585
49185227 586 html = re.sub(r'\s+', ' ', html)
587 html = re.sub(r'(?u)\s?<\s?br\s?/?\s?>\s?', '\n', html)
588 html = re.sub(r'(?u)<\s?/\s?p\s?>\s?<\s?p[^>]*>', '\n', html)
59ae15a5
PH
589 # Strip html tags
590 html = re.sub('<.*?>', '', html)
591 # Replace html entities
592 html = unescapeHTML(html)
7decf895 593 return html.strip()
9e6dd238
FV
594
595
b7c47b74 596class LenientJSONDecoder(json.JSONDecoder):
597 def __init__(self, *args, transform_source=None, ignore_extra=False, **kwargs):
598 self.transform_source, self.ignore_extra = transform_source, ignore_extra
599 super().__init__(*args, **kwargs)
600
601 def decode(self, s):
602 if self.transform_source:
603 s = self.transform_source(s)
2fa669f7 604 try:
605 if self.ignore_extra:
606 return self.raw_decode(s.lstrip())[0]
607 return super().decode(s)
608 except json.JSONDecodeError as e:
609 if e.pos is not None:
610 raise type(e)(f'{e.msg} in {s[e.pos-10:e.pos+10]!r}', s, e.pos)
611 raise
b7c47b74 612
613
d77c3dfd 614def sanitize_open(filename, open_mode):
59ae15a5
PH
615 """Try to open the given filename, and slightly tweak it if this fails.
616
617 Attempts to open the given filename. If this fails, it tries to change
618 the filename slightly, step by step, until it's either able to open it
619 or it fails and raises a final exception, like the standard open()
620 function.
621
622 It returns the tuple (stream, definitive_file_name).
623 """
0edb3e33 624 if filename == '-':
625 if sys.platform == 'win32':
626 import msvcrt
be5c1ae8 627
62b58c09 628 # stdout may be any IO stream, e.g. when using contextlib.redirect_stdout
daef7911 629 with contextlib.suppress(io.UnsupportedOperation):
630 msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
0edb3e33 631 return (sys.stdout.buffer if hasattr(sys.stdout, 'buffer') else sys.stdout, filename)
59ae15a5 632
0edb3e33 633 for attempt in range(2):
634 try:
635 try:
89737671 636 if sys.platform == 'win32':
b506289f 637 # FIXME: An exclusive lock also locks the file from being read.
638 # Since windows locks are mandatory, don't lock the file on windows (for now).
639 # Ref: https://github.com/yt-dlp/yt-dlp/issues/3124
89737671 640 raise LockingUnsupportedError()
0edb3e33 641 stream = locked_file(filename, open_mode, block=False).__enter__()
8a82af35 642 except OSError:
0edb3e33 643 stream = open(filename, open_mode)
8a82af35 644 return stream, filename
86e5f3ed 645 except OSError as err:
0edb3e33 646 if attempt or err.errno in (errno.EACCES,):
647 raise
648 old_filename, filename = filename, sanitize_path(filename)
649 if old_filename == filename:
650 raise
d77c3dfd
FV
651
652
653def timeconvert(timestr):
59ae15a5
PH
654 """Convert RFC 2822 defined time string into system timestamp"""
655 timestamp = None
656 timetuple = email.utils.parsedate_tz(timestr)
657 if timetuple is not None:
658 timestamp = email.utils.mktime_tz(timetuple)
659 return timestamp
1c469a94 660
5f6a1245 661
5c3895ff 662def sanitize_filename(s, restricted=False, is_id=NO_DEFAULT):
59ae15a5 663 """Sanitizes a string so it could be used as part of a filename.
5c3895ff 664 @param restricted Use a stricter subset of allowed characters
665 @param is_id Whether this is an ID that should be kept unchanged if possible.
666 If unset, yt-dlp's new sanitization rules are in effect
59ae15a5 667 """
5c3895ff 668 if s == '':
669 return ''
670
59ae15a5 671 def replace_insane(char):
c587cbb7
AT
672 if restricted and char in ACCENT_CHARS:
673 return ACCENT_CHARS[char]
91dd88b9 674 elif not restricted and char == '\n':
5c3895ff 675 return '\0 '
989a01c2 676 elif is_id is NO_DEFAULT and not restricted and char in '"*:<>?|/\\':
677 # Replace with their full-width unicode counterparts
678 return {'/': '\u29F8', '\\': '\u29f9'}.get(char, chr(ord(char) + 0xfee0))
91dd88b9 679 elif char == '?' or ord(char) < 32 or ord(char) == 127:
59ae15a5
PH
680 return ''
681 elif char == '"':
682 return '' if restricted else '\''
683 elif char == ':':
5c3895ff 684 return '\0_\0-' if restricted else '\0 \0-'
59ae15a5 685 elif char in '\\/|*<>':
5c3895ff 686 return '\0_'
687 if restricted and (char in '!&\'()[]{}$;`^,#' or char.isspace() or ord(char) > 127):
688 return '\0_'
59ae15a5
PH
689 return char
690
db4678e4 691 # Replace look-alike Unicode glyphs
692 if restricted and (is_id is NO_DEFAULT or not is_id):
989a01c2 693 s = unicodedata.normalize('NFKC', s)
5c3895ff 694 s = re.sub(r'[0-9]+(?::[0-9]+)+', lambda m: m.group(0).replace(':', '_'), s) # Handle timestamps
28e614de 695 result = ''.join(map(replace_insane, s))
5c3895ff 696 if is_id is NO_DEFAULT:
ae61d108 697 result = re.sub(r'(\0.)(?:(?=\1)..)+', r'\1', result) # Remove repeated substitute chars
698 STRIP_RE = r'(?:\0.|[ _-])*'
5c3895ff 699 result = re.sub(f'^\0.{STRIP_RE}|{STRIP_RE}\0.$', '', result) # Remove substitute chars from start/end
700 result = result.replace('\0', '') or '_'
701
796173d0
PH
702 if not is_id:
703 while '__' in result:
704 result = result.replace('__', '_')
705 result = result.strip('_')
706 # Common case of "Foreign band name - English song title"
707 if restricted and result.startswith('-_'):
708 result = result[2:]
5a42414b
PH
709 if result.startswith('-'):
710 result = '_' + result[len('-'):]
a7440261 711 result = result.lstrip('.')
796173d0
PH
712 if not result:
713 result = '_'
59ae15a5 714 return result
d77c3dfd 715
5f6a1245 716
c2934512 717def sanitize_path(s, force=False):
a2aaf4db 718 """Sanitizes and normalizes path on Windows"""
c2934512 719 if sys.platform == 'win32':
c4218ac3 720 force = False
c2934512 721 drive_or_unc, _ = os.path.splitdrive(s)
c2934512 722 elif force:
723 drive_or_unc = ''
724 else:
a2aaf4db 725 return s
c2934512 726
be531ef1
S
727 norm_path = os.path.normpath(remove_start(s, drive_or_unc)).split(os.path.sep)
728 if drive_or_unc:
a2aaf4db
S
729 norm_path.pop(0)
730 sanitized_path = [
ec85ded8 731 path_part if path_part in ['.', '..'] else re.sub(r'(?:[/<>:"\|\\?\*]|[\s.]$)', '#', path_part)
a2aaf4db 732 for path_part in norm_path]
be531ef1
S
733 if drive_or_unc:
734 sanitized_path.insert(0, drive_or_unc + os.path.sep)
4abea8ca 735 elif force and s and s[0] == os.path.sep:
c4218ac3 736 sanitized_path.insert(0, os.path.sep)
a2aaf4db
S
737 return os.path.join(*sanitized_path)
738
739
8f97a15d 740def sanitize_url(url, *, scheme='http'):
befa4708
S
741 # Prepend protocol-less URLs with `http:` scheme in order to mitigate
742 # the number of unwanted failures due to missing protocol
21633673 743 if url is None:
744 return
745 elif url.startswith('//'):
8f97a15d 746 return f'{scheme}:{url}'
befa4708
S
747 # Fix some common typos seen so far
748 COMMON_TYPOS = (
067aa17e 749 # https://github.com/ytdl-org/youtube-dl/issues/15649
befa4708
S
750 (r'^httpss://', r'https://'),
751 # https://bx1.be/lives/direct-tv/
752 (r'^rmtp([es]?)://', r'rtmp\1://'),
753 )
754 for mistake, fixup in COMMON_TYPOS:
755 if re.match(mistake, url):
756 return re.sub(mistake, fixup, url)
bc6b9bcd 757 return url
17bcc626
S
758
759
5435dcf9 760def extract_basic_auth(url):
14f25df2 761 parts = urllib.parse.urlsplit(url)
5435dcf9
HH
762 if parts.username is None:
763 return url, None
14f25df2 764 url = urllib.parse.urlunsplit(parts._replace(netloc=(
5435dcf9
HH
765 parts.hostname if parts.port is None
766 else '%s:%d' % (parts.hostname, parts.port))))
767 auth_payload = base64.b64encode(
0f06bcd7 768 ('%s:%s' % (parts.username, parts.password or '')).encode())
769 return url, f'Basic {auth_payload.decode()}'
5435dcf9
HH
770
771
67dda517 772def sanitized_Request(url, *args, **kwargs):
bc6b9bcd 773 url, auth_header = extract_basic_auth(escape_url(sanitize_url(url)))
5435dcf9
HH
774 if auth_header is not None:
775 headers = args[1] if len(args) >= 2 else kwargs.setdefault('headers', {})
776 headers['Authorization'] = auth_header
ac668111 777 return urllib.request.Request(url, *args, **kwargs)
67dda517
S
778
779
51098426 780def expand_path(s):
2fa669f7 781 """Expand shell variables and ~"""
51098426
S
782 return os.path.expandvars(compat_expanduser(s))
783
784
7e9a6125 785def orderedSet(iterable, *, lazy=False):
786 """Remove all duplicates from the input iterable"""
787 def _iter():
788 seen = [] # Do not use set since the items can be unhashable
789 for x in iterable:
790 if x not in seen:
791 seen.append(x)
792 yield x
793
794 return _iter() if lazy else list(_iter())
d77c3dfd 795
912b38b4 796
55b2f099 797def _htmlentity_transform(entity_with_semicolon):
4e408e47 798 """Transforms an HTML entity to a character."""
55b2f099
YCH
799 entity = entity_with_semicolon[:-1]
800
4e408e47 801 # Known non-numeric HTML entity
ac668111 802 if entity in html.entities.name2codepoint:
803 return chr(html.entities.name2codepoint[entity])
4e408e47 804
62b58c09
L
805 # TODO: HTML5 allows entities without a semicolon.
806 # E.g. '&Eacuteric' should be decoded as 'Éric'.
ac668111 807 if entity_with_semicolon in html.entities.html5:
808 return html.entities.html5[entity_with_semicolon]
55b2f099 809
91757b0f 810 mobj = re.match(r'#(x[0-9a-fA-F]+|[0-9]+)', entity)
4e408e47
PH
811 if mobj is not None:
812 numstr = mobj.group(1)
28e614de 813 if numstr.startswith('x'):
4e408e47 814 base = 16
28e614de 815 numstr = '0%s' % numstr
4e408e47
PH
816 else:
817 base = 10
067aa17e 818 # See https://github.com/ytdl-org/youtube-dl/issues/7518
19a03940 819 with contextlib.suppress(ValueError):
ac668111 820 return chr(int(numstr, base))
4e408e47
PH
821
822 # Unknown entity in name, return its literal representation
7a3f0c00 823 return '&%s;' % entity
4e408e47
PH
824
825
d77c3dfd 826def unescapeHTML(s):
912b38b4
PH
827 if s is None:
828 return None
19a03940 829 assert isinstance(s, str)
d77c3dfd 830
4e408e47 831 return re.sub(
95f3f7c2 832 r'&([^&;]+;)', lambda m: _htmlentity_transform(m.group(1)), s)
d77c3dfd 833
8bf48f23 834
cdb19aa4 835def escapeHTML(text):
836 return (
837 text
838 .replace('&', '&amp;')
839 .replace('<', '&lt;')
840 .replace('>', '&gt;')
841 .replace('"', '&quot;')
842 .replace("'", '&#39;')
843 )
844
845
f5b1bca9 846def process_communicate_or_kill(p, *args, **kwargs):
da4db748 847 deprecation_warning(f'"{__name__}.process_communicate_or_kill" is deprecated and may be removed '
848 f'in a future version. Use "{__name__}.Popen.communicate_or_kill" instead')
8a82af35 849 return Popen.communicate_or_kill(p, *args, **kwargs)
f5b1bca9 850
851
d3c93ec2 852class Popen(subprocess.Popen):
853 if sys.platform == 'win32':
854 _startupinfo = subprocess.STARTUPINFO()
855 _startupinfo.dwFlags |= subprocess.STARTF_USESHOWWINDOW
856 else:
857 _startupinfo = None
858
82ea226c
L
859 @staticmethod
860 def _fix_pyinstaller_ld_path(env):
861 """Restore LD_LIBRARY_PATH when using PyInstaller
862 Ref: https://github.com/pyinstaller/pyinstaller/blob/develop/doc/runtime-information.rst#ld_library_path--libpath-considerations
863 https://github.com/yt-dlp/yt-dlp/issues/4573
864 """
865 if not hasattr(sys, '_MEIPASS'):
866 return
867
868 def _fix(key):
869 orig = env.get(f'{key}_ORIG')
870 if orig is None:
871 env.pop(key, None)
872 else:
873 env[key] = orig
874
875 _fix('LD_LIBRARY_PATH') # Linux
876 _fix('DYLD_LIBRARY_PATH') # macOS
877
878 def __init__(self, *args, env=None, text=False, **kwargs):
879 if env is None:
880 env = os.environ.copy()
881 self._fix_pyinstaller_ld_path(env)
882
f0c9fb96 883 if text is True:
884 kwargs['universal_newlines'] = True # For 3.6 compatibility
885 kwargs.setdefault('encoding', 'utf-8')
886 kwargs.setdefault('errors', 'replace')
82ea226c 887 super().__init__(*args, env=env, **kwargs, startupinfo=self._startupinfo)
d3c93ec2 888
889 def communicate_or_kill(self, *args, **kwargs):
8a82af35 890 try:
891 return self.communicate(*args, **kwargs)
892 except BaseException: # Including KeyboardInterrupt
f0c9fb96 893 self.kill(timeout=None)
8a82af35 894 raise
d3c93ec2 895
f0c9fb96 896 def kill(self, *, timeout=0):
897 super().kill()
898 if timeout != 0:
899 self.wait(timeout=timeout)
900
901 @classmethod
992dc6b4 902 def run(cls, *args, timeout=None, **kwargs):
f0c9fb96 903 with cls(*args, **kwargs) as proc:
914491b8 904 default = '' if proc.text_mode else b''
992dc6b4 905 stdout, stderr = proc.communicate_or_kill(timeout=timeout)
914491b8 906 return stdout or default, stderr or default, proc.returncode
f0c9fb96 907
d3c93ec2 908
aa49acd1
S
909def get_subprocess_encoding():
910 if sys.platform == 'win32' and sys.getwindowsversion()[0] >= 5:
911 # For subprocess calls, encode with locale encoding
912 # Refer to http://stackoverflow.com/a/9951851/35070
913 encoding = preferredencoding()
914 else:
915 encoding = sys.getfilesystemencoding()
916 if encoding is None:
917 encoding = 'utf-8'
918 return encoding
919
920
8bf48f23 921def encodeFilename(s, for_subprocess=False):
19a03940 922 assert isinstance(s, str)
cfb0511d 923 return s
aa49acd1
S
924
925
926def decodeFilename(b, for_subprocess=False):
cfb0511d 927 return b
8bf48f23 928
f07b74fc
PH
929
930def encodeArgument(s):
cfb0511d 931 # Legacy code that uses byte strings
932 # Uncomment the following line after fixing all post processors
14f25df2 933 # assert isinstance(s, str), 'Internal error: %r should be of type %r, is %r' % (s, str, type(s))
cfb0511d 934 return s if isinstance(s, str) else s.decode('ascii')
f07b74fc
PH
935
936
aa49acd1 937def decodeArgument(b):
cfb0511d 938 return b
aa49acd1
S
939
940
8271226a
PH
941def decodeOption(optval):
942 if optval is None:
943 return optval
944 if isinstance(optval, bytes):
945 optval = optval.decode(preferredencoding())
946
14f25df2 947 assert isinstance(optval, str)
8271226a 948 return optval
1c256f70 949
5f6a1245 950
aa7785f8 951_timetuple = collections.namedtuple('Time', ('hours', 'minutes', 'seconds', 'milliseconds'))
952
953
954def timetuple_from_msec(msec):
955 secs, msec = divmod(msec, 1000)
956 mins, secs = divmod(secs, 60)
957 hrs, mins = divmod(mins, 60)
958 return _timetuple(hrs, mins, secs, msec)
959
960
cdb19aa4 961def formatSeconds(secs, delim=':', msec=False):
aa7785f8 962 time = timetuple_from_msec(secs * 1000)
963 if time.hours:
964 ret = '%d%s%02d%s%02d' % (time.hours, delim, time.minutes, delim, time.seconds)
965 elif time.minutes:
966 ret = '%d%s%02d' % (time.minutes, delim, time.seconds)
4539dd30 967 else:
aa7785f8 968 ret = '%d' % time.seconds
969 return '%s.%03d' % (ret, time.milliseconds) if msec else ret
4539dd30 970
a0ddb8a2 971
77562778 972def _ssl_load_windows_store_certs(ssl_context, storename):
973 # Code adapted from _load_windows_store_certs in https://github.com/python/cpython/blob/main/Lib/ssl.py
974 try:
975 certs = [cert for cert, encoding, trust in ssl.enum_certificates(storename)
976 if encoding == 'x509_asn' and (
977 trust is True or ssl.Purpose.SERVER_AUTH.oid in trust)]
978 except PermissionError:
979 return
980 for cert in certs:
19a03940 981 with contextlib.suppress(ssl.SSLError):
77562778 982 ssl_context.load_verify_locations(cadata=cert)
a2366922 983
77562778 984
985def make_HTTPS_handler(params, **kwargs):
986 opts_check_certificate = not params.get('nocheckcertificate')
987 context = ssl.SSLContext(ssl.PROTOCOL_TLS_CLIENT)
988 context.check_hostname = opts_check_certificate
f81c62a6 989 if params.get('legacyserverconnect'):
990 context.options |= 4 # SSL_OP_LEGACY_SERVER_CONNECT
4f28b537 991 # Allow use of weaker ciphers in Python 3.10+. See https://bugs.python.org/issue43998
992 context.set_ciphers('DEFAULT')
ac8e69dd
M
993 elif (
994 sys.version_info < (3, 10)
995 and ssl.OPENSSL_VERSION_INFO >= (1, 1, 1)
996 and not ssl.OPENSSL_VERSION.startswith('LibreSSL')
997 ):
5b9f253f
M
998 # Backport the default SSL ciphers and minimum TLS version settings from Python 3.10 [1].
999 # This is to ensure consistent behavior across Python versions, and help avoid fingerprinting
1000 # in some situations [2][3].
1001 # Python 3.10 only supports OpenSSL 1.1.1+ [4]. Because this change is likely
1002 # untested on older versions, we only apply this to OpenSSL 1.1.1+ to be safe.
ac8e69dd 1003 # LibreSSL is excluded until further investigation due to cipher support issues [5][6].
5b9f253f
M
1004 # 1. https://github.com/python/cpython/commit/e983252b516edb15d4338b0a47631b59ef1e2536
1005 # 2. https://github.com/yt-dlp/yt-dlp/issues/4627
1006 # 3. https://github.com/yt-dlp/yt-dlp/pull/5294
1007 # 4. https://peps.python.org/pep-0644/
ac8e69dd
M
1008 # 5. https://peps.python.org/pep-0644/#libressl-support
1009 # 6. https://github.com/yt-dlp/yt-dlp/commit/5b9f253fa0aee996cf1ed30185d4b502e00609c4#commitcomment-89054368
5b9f253f
M
1010 context.set_ciphers('@SECLEVEL=2:ECDH+AESGCM:ECDH+CHACHA20:ECDH+AES:DHE+AES:!aNULL:!eNULL:!aDSS:!SHA1:!AESCCM')
1011 context.minimum_version = ssl.TLSVersion.TLSv1_2
8a82af35 1012
77562778 1013 context.verify_mode = ssl.CERT_REQUIRED if opts_check_certificate else ssl.CERT_NONE
1014 if opts_check_certificate:
d5820461 1015 if has_certifi and 'no-certifi' not in params.get('compat_opts', []):
1016 context.load_verify_locations(cafile=certifi.where())
168bbc4f 1017 else:
1018 try:
1019 context.load_default_certs()
1020 # Work around the issue in load_default_certs when there are bad certificates. See:
1021 # https://github.com/yt-dlp/yt-dlp/issues/1060,
1022 # https://bugs.python.org/issue35665, https://bugs.python.org/issue45312
1023 except ssl.SSLError:
1024 # enum_certificates is not present in mingw python. See https://github.com/yt-dlp/yt-dlp/issues/1151
1025 if sys.platform == 'win32' and hasattr(ssl, 'enum_certificates'):
1026 for storename in ('CA', 'ROOT'):
1027 _ssl_load_windows_store_certs(context, storename)
1028 context.set_default_verify_paths()
8a82af35 1029
bb58c9ed 1030 client_certfile = params.get('client_certificate')
1031 if client_certfile:
1032 try:
1033 context.load_cert_chain(
1034 client_certfile, keyfile=params.get('client_certificate_key'),
1035 password=params.get('client_certificate_password'))
1036 except ssl.SSLError:
1037 raise YoutubeDLError('Unable to load client certificate')
2c6dcb65 1038
1039 # Some servers may reject requests if ALPN extension is not sent. See:
1040 # https://github.com/python/cpython/issues/85140
1041 # https://github.com/yt-dlp/yt-dlp/issues/3878
1042 with contextlib.suppress(NotImplementedError):
1043 context.set_alpn_protocols(['http/1.1'])
1044
77562778 1045 return YoutubeDLHTTPSHandler(params, context=context, **kwargs)
ea6d901e 1046
732ea2f0 1047
5873d4cc 1048def bug_reports_message(before=';'):
57e0f077 1049 from .update import REPOSITORY
1050
1051 msg = (f'please report this issue on https://github.com/{REPOSITORY}/issues?q= , '
1052 'filling out the appropriate issue template. Confirm you are on the latest version using yt-dlp -U')
5873d4cc
F
1053
1054 before = before.rstrip()
1055 if not before or before.endswith(('.', '!', '?')):
1056 msg = msg[0].title() + msg[1:]
1057
1058 return (before + ' ' if before else '') + msg
08f2a92c
JMF
1059
1060
bf5b9d85
PM
1061class YoutubeDLError(Exception):
1062 """Base exception for YoutubeDL errors."""
aa9369a2 1063 msg = None
1064
1065 def __init__(self, msg=None):
1066 if msg is not None:
1067 self.msg = msg
1068 elif self.msg is None:
1069 self.msg = type(self).__name__
1070 super().__init__(self.msg)
bf5b9d85
PM
1071
1072
ac668111 1073network_exceptions = [urllib.error.URLError, http.client.HTTPException, socket.error]
3158150c 1074if hasattr(ssl, 'CertificateError'):
1075 network_exceptions.append(ssl.CertificateError)
1076network_exceptions = tuple(network_exceptions)
1077
1078
bf5b9d85 1079class ExtractorError(YoutubeDLError):
1c256f70 1080 """Error during info extraction."""
5f6a1245 1081
1151c407 1082 def __init__(self, msg, tb=None, expected=False, cause=None, video_id=None, ie=None):
9a82b238 1083 """ tb, if given, is the original traceback (so that it can be printed out).
7a5c1cfe 1084 If expected is set, this is a normal error message and most likely not a bug in yt-dlp.
9a82b238 1085 """
3158150c 1086 if sys.exc_info()[0] in network_exceptions:
9a82b238 1087 expected = True
d5979c5d 1088
7265a219 1089 self.orig_msg = str(msg)
1c256f70 1090 self.traceback = tb
1151c407 1091 self.expected = expected
2eabb802 1092 self.cause = cause
d11271dd 1093 self.video_id = video_id
1151c407 1094 self.ie = ie
1095 self.exc_info = sys.exc_info() # preserve original exception
5df14442 1096 if isinstance(self.exc_info[1], ExtractorError):
1097 self.exc_info = self.exc_info[1].exc_info
1151c407 1098
86e5f3ed 1099 super().__init__(''.join((
a70635b8 1100 format_field(ie, None, '[%s] '),
1101 format_field(video_id, None, '%s: '),
7265a219 1102 msg,
a70635b8 1103 format_field(cause, None, ' (caused by %r)'),
1151c407 1104 '' if expected else bug_reports_message())))
1c256f70 1105
01951dda 1106 def format_traceback(self):
497d2fab 1107 return join_nonempty(
1108 self.traceback and ''.join(traceback.format_tb(self.traceback)),
e491d06d 1109 self.cause and ''.join(traceback.format_exception(None, self.cause, self.cause.__traceback__)[1:]),
497d2fab 1110 delim='\n') or None
01951dda 1111
1c256f70 1112
416c7fcb
PH
1113class UnsupportedError(ExtractorError):
1114 def __init__(self, url):
86e5f3ed 1115 super().__init__(
416c7fcb
PH
1116 'Unsupported URL: %s' % url, expected=True)
1117 self.url = url
1118
1119
55b3e45b
JMF
1120class RegexNotFoundError(ExtractorError):
1121 """Error when a regex didn't match"""
1122 pass
1123
1124
773f291d
S
1125class GeoRestrictedError(ExtractorError):
1126 """Geographic restriction Error exception.
1127
1128 This exception may be thrown when a video is not available from your
1129 geographic location due to geographic restrictions imposed by a website.
1130 """
b6e0c7d2 1131
0db3bae8 1132 def __init__(self, msg, countries=None, **kwargs):
1133 kwargs['expected'] = True
86e5f3ed 1134 super().__init__(msg, **kwargs)
773f291d
S
1135 self.countries = countries
1136
1137
693f0600 1138class UserNotLive(ExtractorError):
1139 """Error when a channel/user is not live"""
1140
1141 def __init__(self, msg=None, **kwargs):
1142 kwargs['expected'] = True
1143 super().__init__(msg or 'The channel is not currently live', **kwargs)
1144
1145
bf5b9d85 1146class DownloadError(YoutubeDLError):
59ae15a5 1147 """Download Error exception.
d77c3dfd 1148
59ae15a5
PH
1149 This exception may be thrown by FileDownloader objects if they are not
1150 configured to continue on errors. They will contain the appropriate
1151 error message.
1152 """
5f6a1245 1153
8cc83b8d
FV
1154 def __init__(self, msg, exc_info=None):
1155 """ exc_info, if given, is the original exception that caused the trouble (as returned by sys.exc_info()). """
86e5f3ed 1156 super().__init__(msg)
8cc83b8d 1157 self.exc_info = exc_info
d77c3dfd
FV
1158
1159
498f5606 1160class EntryNotInPlaylist(YoutubeDLError):
1161 """Entry not in playlist exception.
1162
1163 This exception will be thrown by YoutubeDL when a requested entry
1164 is not found in the playlist info_dict
1165 """
aa9369a2 1166 msg = 'Entry not found in info'
498f5606 1167
1168
bf5b9d85 1169class SameFileError(YoutubeDLError):
59ae15a5 1170 """Same File exception.
d77c3dfd 1171
59ae15a5
PH
1172 This exception will be thrown by FileDownloader objects if they detect
1173 multiple files would have to be downloaded to the same file on disk.
1174 """
aa9369a2 1175 msg = 'Fixed output name but more than one file to download'
1176
1177 def __init__(self, filename=None):
1178 if filename is not None:
1179 self.msg += f': {filename}'
1180 super().__init__(self.msg)
d77c3dfd
FV
1181
1182
bf5b9d85 1183class PostProcessingError(YoutubeDLError):
59ae15a5 1184 """Post Processing exception.
d77c3dfd 1185
59ae15a5
PH
1186 This exception may be raised by PostProcessor's .run() method to
1187 indicate an error in the postprocessing task.
1188 """
5f6a1245 1189
5f6a1245 1190
48f79687 1191class DownloadCancelled(YoutubeDLError):
1192 """ Exception raised when the download queue should be interrupted """
1193 msg = 'The download was cancelled'
8b0d7497 1194
8b0d7497 1195
48f79687 1196class ExistingVideoReached(DownloadCancelled):
1197 """ --break-on-existing triggered """
1198 msg = 'Encountered a video that is already in the archive, stopping due to --break-on-existing'
8b0d7497 1199
48f79687 1200
1201class RejectedVideoReached(DownloadCancelled):
1202 """ --break-on-reject triggered """
1203 msg = 'Encountered a video that did not match filter, stopping due to --break-on-reject'
51d9739f 1204
1205
48f79687 1206class MaxDownloadsReached(DownloadCancelled):
59ae15a5 1207 """ --max-downloads limit has been reached. """
48f79687 1208 msg = 'Maximum number of downloads reached, stopping due to --max-downloads'
1209
1210
f2ebc5c7 1211class ReExtractInfo(YoutubeDLError):
1212 """ Video info needs to be re-extracted. """
1213
1214 def __init__(self, msg, expected=False):
1215 super().__init__(msg)
1216 self.expected = expected
1217
1218
1219class ThrottledDownload(ReExtractInfo):
48f79687 1220 """ Download speed below --throttled-rate. """
aa9369a2 1221 msg = 'The download speed is below throttle limit'
d77c3dfd 1222
43b22906 1223 def __init__(self):
1224 super().__init__(self.msg, expected=False)
f2ebc5c7 1225
d77c3dfd 1226
bf5b9d85 1227class UnavailableVideoError(YoutubeDLError):
59ae15a5 1228 """Unavailable Format exception.
d77c3dfd 1229
59ae15a5
PH
1230 This exception will be thrown when a video is requested
1231 in a format that is not available for that video.
1232 """
aa9369a2 1233 msg = 'Unable to download video'
1234
1235 def __init__(self, err=None):
1236 if err is not None:
1237 self.msg += f': {err}'
1238 super().__init__(self.msg)
d77c3dfd
FV
1239
1240
bf5b9d85 1241class ContentTooShortError(YoutubeDLError):
59ae15a5 1242 """Content Too Short exception.
d77c3dfd 1243
59ae15a5
PH
1244 This exception may be raised by FileDownloader objects when a file they
1245 download is too small for what the server announced first, indicating
1246 the connection was probably interrupted.
1247 """
d77c3dfd 1248
59ae15a5 1249 def __init__(self, downloaded, expected):
86e5f3ed 1250 super().__init__(f'Downloaded {downloaded} bytes, expected {expected} bytes')
2c7ed247 1251 # Both in bytes
59ae15a5
PH
1252 self.downloaded = downloaded
1253 self.expected = expected
d77c3dfd 1254
5f6a1245 1255
bf5b9d85 1256class XAttrMetadataError(YoutubeDLError):
efa97bdc 1257 def __init__(self, code=None, msg='Unknown error'):
86e5f3ed 1258 super().__init__(msg)
efa97bdc 1259 self.code = code
bd264412 1260 self.msg = msg
efa97bdc
YCH
1261
1262 # Parsing code and msg
3089bc74 1263 if (self.code in (errno.ENOSPC, errno.EDQUOT)
a0566bbf 1264 or 'No space left' in self.msg or 'Disk quota exceeded' in self.msg):
efa97bdc
YCH
1265 self.reason = 'NO_SPACE'
1266 elif self.code == errno.E2BIG or 'Argument list too long' in self.msg:
1267 self.reason = 'VALUE_TOO_LONG'
1268 else:
1269 self.reason = 'NOT_SUPPORTED'
1270
1271
bf5b9d85 1272class XAttrUnavailableError(YoutubeDLError):
efa97bdc
YCH
1273 pass
1274
1275
c5a59d93 1276def _create_http_connection(ydl_handler, http_class, is_https, *args, **kwargs):
f9934b96 1277 hc = http_class(*args, **kwargs)
be4a824d 1278 source_address = ydl_handler._params.get('source_address')
8959018a 1279
be4a824d 1280 if source_address is not None:
8959018a
AU
1281 # This is to workaround _create_connection() from socket where it will try all
1282 # address data from getaddrinfo() including IPv6. This filters the result from
1283 # getaddrinfo() based on the source_address value.
1284 # This is based on the cpython socket.create_connection() function.
1285 # https://github.com/python/cpython/blob/master/Lib/socket.py#L691
1286 def _create_connection(address, timeout=socket._GLOBAL_DEFAULT_TIMEOUT, source_address=None):
1287 host, port = address
1288 err = None
1289 addrs = socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM)
9e21e6d9
S
1290 af = socket.AF_INET if '.' in source_address[0] else socket.AF_INET6
1291 ip_addrs = [addr for addr in addrs if addr[0] == af]
1292 if addrs and not ip_addrs:
1293 ip_version = 'v4' if af == socket.AF_INET else 'v6'
86e5f3ed 1294 raise OSError(
9e21e6d9
S
1295 "No remote IP%s addresses available for connect, can't use '%s' as source address"
1296 % (ip_version, source_address[0]))
8959018a
AU
1297 for res in ip_addrs:
1298 af, socktype, proto, canonname, sa = res
1299 sock = None
1300 try:
1301 sock = socket.socket(af, socktype, proto)
1302 if timeout is not socket._GLOBAL_DEFAULT_TIMEOUT:
1303 sock.settimeout(timeout)
1304 sock.bind(source_address)
1305 sock.connect(sa)
1306 err = None # Explicitly break reference cycle
1307 return sock
86e5f3ed 1308 except OSError as _:
8959018a
AU
1309 err = _
1310 if sock is not None:
1311 sock.close()
1312 if err is not None:
1313 raise err
1314 else:
86e5f3ed 1315 raise OSError('getaddrinfo returns an empty list')
9e21e6d9
S
1316 if hasattr(hc, '_create_connection'):
1317 hc._create_connection = _create_connection
cfb0511d 1318 hc.source_address = (source_address, 0)
be4a824d
PH
1319
1320 return hc
1321
1322
87f0e62d 1323def handle_youtubedl_headers(headers):
992fc9d6
YCH
1324 filtered_headers = headers
1325
1326 if 'Youtubedl-no-compression' in filtered_headers:
86e5f3ed 1327 filtered_headers = {k: v for k, v in filtered_headers.items() if k.lower() != 'accept-encoding'}
87f0e62d 1328 del filtered_headers['Youtubedl-no-compression']
87f0e62d 1329
992fc9d6 1330 return filtered_headers
87f0e62d
YCH
1331
1332
ac668111 1333class YoutubeDLHandler(urllib.request.HTTPHandler):
59ae15a5
PH
1334 """Handler for HTTP requests and responses.
1335
1336 This class, when installed with an OpenerDirector, automatically adds
1337 the standard headers to every HTTP request and handles gzipped and
1338 deflated responses from web servers. If compression is to be avoided in
1339 a particular request, the original request in the program code only has
0424ec30 1340 to include the HTTP header "Youtubedl-no-compression", which will be
59ae15a5
PH
1341 removed before making the real request.
1342
1343 Part of this code was copied from:
1344
1345 http://techknack.net/python-urllib2-handlers/
1346
1347 Andrew Rowls, the author of that code, agreed to release it to the
1348 public domain.
1349 """
1350
be4a824d 1351 def __init__(self, params, *args, **kwargs):
ac668111 1352 urllib.request.HTTPHandler.__init__(self, *args, **kwargs)
be4a824d
PH
1353 self._params = params
1354
1355 def http_open(self, req):
ac668111 1356 conn_class = http.client.HTTPConnection
71aff188
YCH
1357
1358 socks_proxy = req.headers.get('Ytdl-socks-proxy')
1359 if socks_proxy:
1360 conn_class = make_socks_conn_class(conn_class, socks_proxy)
1361 del req.headers['Ytdl-socks-proxy']
1362
be4a824d 1363 return self.do_open(functools.partial(
71aff188 1364 _create_http_connection, self, conn_class, False),
be4a824d
PH
1365 req)
1366
59ae15a5
PH
1367 @staticmethod
1368 def deflate(data):
fc2119f2 1369 if not data:
1370 return data
59ae15a5
PH
1371 try:
1372 return zlib.decompress(data, -zlib.MAX_WBITS)
1373 except zlib.error:
1374 return zlib.decompress(data)
1375
4390d5ec 1376 @staticmethod
1377 def brotli(data):
1378 if not data:
1379 return data
9b8ee23b 1380 return brotli.decompress(data)
4390d5ec 1381
acebc9cd 1382 def http_request(self, req):
51f267d9
S
1383 # According to RFC 3986, URLs can not contain non-ASCII characters, however this is not
1384 # always respected by websites, some tend to give out URLs with non percent-encoded
1385 # non-ASCII characters (see telemb.py, ard.py [#3412])
1386 # urllib chokes on URLs with non-ASCII characters (see http://bugs.python.org/issue3991)
1387 # To work around aforementioned issue we will replace request's original URL with
1388 # percent-encoded one
1389 # Since redirects are also affected (e.g. http://www.southpark.de/alle-episoden/s18e09)
1390 # the code of this workaround has been moved here from YoutubeDL.urlopen()
1391 url = req.get_full_url()
1392 url_escaped = escape_url(url)
1393
1394 # Substitute URL if any change after escaping
1395 if url != url_escaped:
15d260eb 1396 req = update_Request(req, url=url_escaped)
51f267d9 1397
8b7539d2 1398 for h, v in self._params.get('http_headers', std_headers).items():
3d5f7a39
JK
1399 # Capitalize is needed because of Python bug 2275: http://bugs.python.org/issue2275
1400 # The dict keys are capitalized because of this bug by urllib
1401 if h.capitalize() not in req.headers:
33ac271b 1402 req.add_header(h, v)
87f0e62d 1403
af14914b 1404 if 'Accept-encoding' not in req.headers:
1405 req.add_header('Accept-encoding', ', '.join(SUPPORTED_ENCODINGS))
1406
87f0e62d 1407 req.headers = handle_youtubedl_headers(req.headers)
989b4b2b 1408
379a4f16 1409 return super().do_request_(req)
59ae15a5 1410
acebc9cd 1411 def http_response(self, req, resp):
59ae15a5
PH
1412 old_resp = resp
1413 # gzip
1414 if resp.headers.get('Content-encoding', '') == 'gzip':
aa3e9507
PH
1415 content = resp.read()
1416 gz = gzip.GzipFile(fileobj=io.BytesIO(content), mode='rb')
1417 try:
1418 uncompressed = io.BytesIO(gz.read())
86e5f3ed 1419 except OSError as original_ioerror:
aa3e9507
PH
1420 # There may be junk add the end of the file
1421 # See http://stackoverflow.com/q/4928560/35070 for details
1422 for i in range(1, 1024):
1423 try:
1424 gz = gzip.GzipFile(fileobj=io.BytesIO(content[:-i]), mode='rb')
1425 uncompressed = io.BytesIO(gz.read())
86e5f3ed 1426 except OSError:
aa3e9507
PH
1427 continue
1428 break
1429 else:
1430 raise original_ioerror
ac668111 1431 resp = urllib.request.addinfourl(uncompressed, old_resp.headers, old_resp.url, old_resp.code)
59ae15a5 1432 resp.msg = old_resp.msg
c047270c 1433 del resp.headers['Content-encoding']
59ae15a5
PH
1434 # deflate
1435 if resp.headers.get('Content-encoding', '') == 'deflate':
1436 gz = io.BytesIO(self.deflate(resp.read()))
ac668111 1437 resp = urllib.request.addinfourl(gz, old_resp.headers, old_resp.url, old_resp.code)
59ae15a5 1438 resp.msg = old_resp.msg
c047270c 1439 del resp.headers['Content-encoding']
4390d5ec 1440 # brotli
1441 if resp.headers.get('Content-encoding', '') == 'br':
ac668111 1442 resp = urllib.request.addinfourl(
4390d5ec 1443 io.BytesIO(self.brotli(resp.read())), old_resp.headers, old_resp.url, old_resp.code)
1444 resp.msg = old_resp.msg
1445 del resp.headers['Content-encoding']
ad729172 1446 # Percent-encode redirect URL of Location HTTP header to satisfy RFC 3986 (see
067aa17e 1447 # https://github.com/ytdl-org/youtube-dl/issues/6457).
5a4d9ddb
S
1448 if 300 <= resp.code < 400:
1449 location = resp.headers.get('Location')
1450 if location:
1451 # As of RFC 2616 default charset is iso-8859-1 that is respected by python 3
0f06bcd7 1452 location = location.encode('iso-8859-1').decode()
5a4d9ddb
S
1453 location_escaped = escape_url(location)
1454 if location != location_escaped:
1455 del resp.headers['Location']
1456 resp.headers['Location'] = location_escaped
59ae15a5 1457 return resp
0f8d03f8 1458
acebc9cd
PH
1459 https_request = http_request
1460 https_response = http_response
bf50b038 1461
5de90176 1462
71aff188
YCH
1463def make_socks_conn_class(base_class, socks_proxy):
1464 assert issubclass(base_class, (
ac668111 1465 http.client.HTTPConnection, http.client.HTTPSConnection))
71aff188 1466
14f25df2 1467 url_components = urllib.parse.urlparse(socks_proxy)
71aff188
YCH
1468 if url_components.scheme.lower() == 'socks5':
1469 socks_type = ProxyType.SOCKS5
1470 elif url_components.scheme.lower() in ('socks', 'socks4'):
1471 socks_type = ProxyType.SOCKS4
51fb4995
YCH
1472 elif url_components.scheme.lower() == 'socks4a':
1473 socks_type = ProxyType.SOCKS4A
71aff188 1474
cdd94c2e
YCH
1475 def unquote_if_non_empty(s):
1476 if not s:
1477 return s
ac668111 1478 return urllib.parse.unquote_plus(s)
cdd94c2e 1479
71aff188
YCH
1480 proxy_args = (
1481 socks_type,
1482 url_components.hostname, url_components.port or 1080,
1483 True, # Remote DNS
cdd94c2e
YCH
1484 unquote_if_non_empty(url_components.username),
1485 unquote_if_non_empty(url_components.password),
71aff188
YCH
1486 )
1487
1488 class SocksConnection(base_class):
1489 def connect(self):
1490 self.sock = sockssocket()
1491 self.sock.setproxy(*proxy_args)
19a03940 1492 if isinstance(self.timeout, (int, float)):
71aff188
YCH
1493 self.sock.settimeout(self.timeout)
1494 self.sock.connect((self.host, self.port))
1495
ac668111 1496 if isinstance(self, http.client.HTTPSConnection):
71aff188
YCH
1497 if hasattr(self, '_context'): # Python > 2.6
1498 self.sock = self._context.wrap_socket(
1499 self.sock, server_hostname=self.host)
1500 else:
1501 self.sock = ssl.wrap_socket(self.sock)
1502
1503 return SocksConnection
1504
1505
ac668111 1506class YoutubeDLHTTPSHandler(urllib.request.HTTPSHandler):
be4a824d 1507 def __init__(self, params, https_conn_class=None, *args, **kwargs):
ac668111 1508 urllib.request.HTTPSHandler.__init__(self, *args, **kwargs)
1509 self._https_conn_class = https_conn_class or http.client.HTTPSConnection
be4a824d
PH
1510 self._params = params
1511
1512 def https_open(self, req):
4f264c02 1513 kwargs = {}
71aff188
YCH
1514 conn_class = self._https_conn_class
1515
4f264c02
JMF
1516 if hasattr(self, '_context'): # python > 2.6
1517 kwargs['context'] = self._context
1518 if hasattr(self, '_check_hostname'): # python 3.x
1519 kwargs['check_hostname'] = self._check_hostname
71aff188
YCH
1520
1521 socks_proxy = req.headers.get('Ytdl-socks-proxy')
1522 if socks_proxy:
1523 conn_class = make_socks_conn_class(conn_class, socks_proxy)
1524 del req.headers['Ytdl-socks-proxy']
1525
4f28b537 1526 try:
1527 return self.do_open(
1528 functools.partial(_create_http_connection, self, conn_class, True), req, **kwargs)
1529 except urllib.error.URLError as e:
1530 if (isinstance(e.reason, ssl.SSLError)
1531 and getattr(e.reason, 'reason', None) == 'SSLV3_ALERT_HANDSHAKE_FAILURE'):
1532 raise YoutubeDLError('SSLV3_ALERT_HANDSHAKE_FAILURE: Try using --legacy-server-connect')
1533 raise
be4a824d
PH
1534
1535
941e881e 1536def is_path_like(f):
1537 return isinstance(f, (str, bytes, os.PathLike))
1538
1539
ac668111 1540class YoutubeDLCookieJar(http.cookiejar.MozillaCookieJar):
f1a8511f
S
1541 """
1542 See [1] for cookie file format.
1543
1544 1. https://curl.haxx.se/docs/http-cookies.html
1545 """
e7e62441 1546 _HTTPONLY_PREFIX = '#HttpOnly_'
c380cc28
S
1547 _ENTRY_LEN = 7
1548 _HEADER = '''# Netscape HTTP Cookie File
7a5c1cfe 1549# This file is generated by yt-dlp. Do not edit.
c380cc28
S
1550
1551'''
1552 _CookieFileEntry = collections.namedtuple(
1553 'CookieFileEntry',
1554 ('domain_name', 'include_subdomains', 'path', 'https_only', 'expires_at', 'name', 'value'))
e7e62441 1555
d76fa1f3 1556 def __init__(self, filename=None, *args, **kwargs):
1557 super().__init__(None, *args, **kwargs)
941e881e 1558 if is_path_like(filename):
d76fa1f3 1559 filename = os.fspath(filename)
1560 self.filename = filename
1561
24146491 1562 @staticmethod
1563 def _true_or_false(cndn):
1564 return 'TRUE' if cndn else 'FALSE'
1565
d76fa1f3 1566 @contextlib.contextmanager
1567 def open(self, file, *, write=False):
941e881e 1568 if is_path_like(file):
d76fa1f3 1569 with open(file, 'w' if write else 'r', encoding='utf-8') as f:
1570 yield f
1571 else:
1572 if write:
1573 file.truncate(0)
1574 yield file
1575
24146491 1576 def _really_save(self, f, ignore_discard=False, ignore_expires=False):
1577 now = time.time()
1578 for cookie in self:
1579 if (not ignore_discard and cookie.discard
1580 or not ignore_expires and cookie.is_expired(now)):
1581 continue
1582 name, value = cookie.name, cookie.value
1583 if value is None:
1584 # cookies.txt regards 'Set-Cookie: foo' as a cookie
1585 # with no name, whereas http.cookiejar regards it as a
1586 # cookie with no value.
1587 name, value = '', name
1588 f.write('%s\n' % '\t'.join((
1589 cookie.domain,
1590 self._true_or_false(cookie.domain.startswith('.')),
1591 cookie.path,
1592 self._true_or_false(cookie.secure),
1593 str_or_none(cookie.expires, default=''),
1594 name, value
1595 )))
1596
1597 def save(self, filename=None, *args, **kwargs):
c380cc28
S
1598 """
1599 Save cookies to a file.
24146491 1600 Code is taken from CPython 3.6
1601 https://github.com/python/cpython/blob/8d999cbf4adea053be6dbb612b9844635c4dfb8e/Lib/http/cookiejar.py#L2091-L2117 """
c380cc28 1602
c380cc28
S
1603 if filename is None:
1604 if self.filename is not None:
1605 filename = self.filename
1606 else:
ac668111 1607 raise ValueError(http.cookiejar.MISSING_FILENAME_TEXT)
c380cc28 1608
24146491 1609 # Store session cookies with `expires` set to 0 instead of an empty string
1bab3437
S
1610 for cookie in self:
1611 if cookie.expires is None:
1612 cookie.expires = 0
c380cc28 1613
d76fa1f3 1614 with self.open(filename, write=True) as f:
c380cc28 1615 f.write(self._HEADER)
24146491 1616 self._really_save(f, *args, **kwargs)
1bab3437
S
1617
1618 def load(self, filename=None, ignore_discard=False, ignore_expires=False):
e7e62441 1619 """Load cookies from a file."""
1620 if filename is None:
1621 if self.filename is not None:
1622 filename = self.filename
1623 else:
ac668111 1624 raise ValueError(http.cookiejar.MISSING_FILENAME_TEXT)
e7e62441 1625
c380cc28
S
1626 def prepare_line(line):
1627 if line.startswith(self._HTTPONLY_PREFIX):
1628 line = line[len(self._HTTPONLY_PREFIX):]
1629 # comments and empty lines are fine
1630 if line.startswith('#') or not line.strip():
1631 return line
1632 cookie_list = line.split('\t')
1633 if len(cookie_list) != self._ENTRY_LEN:
ac668111 1634 raise http.cookiejar.LoadError('invalid length %d' % len(cookie_list))
c380cc28
S
1635 cookie = self._CookieFileEntry(*cookie_list)
1636 if cookie.expires_at and not cookie.expires_at.isdigit():
ac668111 1637 raise http.cookiejar.LoadError('invalid expires at %s' % cookie.expires_at)
c380cc28
S
1638 return line
1639
e7e62441 1640 cf = io.StringIO()
d76fa1f3 1641 with self.open(filename) as f:
e7e62441 1642 for line in f:
c380cc28
S
1643 try:
1644 cf.write(prepare_line(line))
ac668111 1645 except http.cookiejar.LoadError as e:
94aa0644 1646 if f'{line.strip()} '[0] in '[{"':
ac668111 1647 raise http.cookiejar.LoadError(
94aa0644 1648 'Cookies file must be Netscape formatted, not JSON. See '
17ffed18 1649 'https://github.com/yt-dlp/yt-dlp/wiki/FAQ#how-do-i-pass-cookies-to-yt-dlp')
19a03940 1650 write_string(f'WARNING: skipping cookie file entry due to {e}: {line!r}\n')
c380cc28 1651 continue
e7e62441 1652 cf.seek(0)
1653 self._really_load(cf, filename, ignore_discard, ignore_expires)
1bab3437
S
1654 # Session cookies are denoted by either `expires` field set to
1655 # an empty string or 0. MozillaCookieJar only recognizes the former
1656 # (see [1]). So we need force the latter to be recognized as session
1657 # cookies on our own.
1658 # Session cookies may be important for cookies-based authentication,
1659 # e.g. usually, when user does not check 'Remember me' check box while
1660 # logging in on a site, some important cookies are stored as session
1661 # cookies so that not recognizing them will result in failed login.
1662 # 1. https://bugs.python.org/issue17164
1663 for cookie in self:
1664 # Treat `expires=0` cookies as session cookies
1665 if cookie.expires == 0:
1666 cookie.expires = None
1667 cookie.discard = True
1668
1669
ac668111 1670class YoutubeDLCookieProcessor(urllib.request.HTTPCookieProcessor):
a6420bf5 1671 def __init__(self, cookiejar=None):
ac668111 1672 urllib.request.HTTPCookieProcessor.__init__(self, cookiejar)
a6420bf5
S
1673
1674 def http_response(self, request, response):
ac668111 1675 return urllib.request.HTTPCookieProcessor.http_response(self, request, response)
a6420bf5 1676
ac668111 1677 https_request = urllib.request.HTTPCookieProcessor.http_request
a6420bf5
S
1678 https_response = http_response
1679
1680
ac668111 1681class YoutubeDLRedirectHandler(urllib.request.HTTPRedirectHandler):
201c1459 1682 """YoutubeDL redirect handler
1683
1684 The code is based on HTTPRedirectHandler implementation from CPython [1].
1685
1686 This redirect handler solves two issues:
1687 - ensures redirect URL is always unicode under python 2
1688 - introduces support for experimental HTTP response status code
1689 308 Permanent Redirect [2] used by some sites [3]
1690
1691 1. https://github.com/python/cpython/blob/master/Lib/urllib/request.py
1692 2. https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/308
1693 3. https://github.com/ytdl-org/youtube-dl/issues/28768
1694 """
1695
ac668111 1696 http_error_301 = http_error_303 = http_error_307 = http_error_308 = urllib.request.HTTPRedirectHandler.http_error_302
201c1459 1697
1698 def redirect_request(self, req, fp, code, msg, headers, newurl):
1699 """Return a Request or None in response to a redirect.
1700
1701 This is called by the http_error_30x methods when a
1702 redirection response is received. If a redirection should
1703 take place, return a new Request to allow http_error_30x to
1704 perform the redirect. Otherwise, raise HTTPError if no-one
1705 else should try to handle this url. Return None if you can't
1706 but another Handler might.
1707 """
1708 m = req.get_method()
1709 if (not (code in (301, 302, 303, 307, 308) and m in ("GET", "HEAD")
1710 or code in (301, 302, 303) and m == "POST")):
14f25df2 1711 raise urllib.error.HTTPError(req.full_url, code, msg, headers, fp)
201c1459 1712 # Strictly (according to RFC 2616), 301 or 302 in response to
1713 # a POST MUST NOT cause a redirection without confirmation
1714 # from the user (of urllib.request, in this case). In practice,
1715 # essentially all clients do redirect in this case, so we do
1716 # the same.
1717
201c1459 1718 # Be conciliant with URIs containing a space. This is mainly
1719 # redundant with the more complete encoding done in http_error_302(),
1720 # but it is kept for compatibility with other callers.
1721 newurl = newurl.replace(' ', '%20')
1722
1723 CONTENT_HEADERS = ("content-length", "content-type")
1724 # NB: don't use dict comprehension for python 2.6 compatibility
86e5f3ed 1725 newheaders = {k: v for k, v in req.headers.items() if k.lower() not in CONTENT_HEADERS}
afac4caa 1726
1727 # A 303 must either use GET or HEAD for subsequent request
1728 # https://datatracker.ietf.org/doc/html/rfc7231#section-6.4.4
1729 if code == 303 and m != 'HEAD':
1730 m = 'GET'
1731 # 301 and 302 redirects are commonly turned into a GET from a POST
1732 # for subsequent requests by browsers, so we'll do the same.
1733 # https://datatracker.ietf.org/doc/html/rfc7231#section-6.4.2
1734 # https://datatracker.ietf.org/doc/html/rfc7231#section-6.4.3
1735 if code in (301, 302) and m == 'POST':
1736 m = 'GET'
1737
ac668111 1738 return urllib.request.Request(
201c1459 1739 newurl, headers=newheaders, origin_req_host=req.origin_req_host,
afac4caa 1740 unverifiable=True, method=m)
fca6dba8
S
1741
1742
46f59e89
S
1743def extract_timezone(date_str):
1744 m = re.search(
f137e4c2 1745 r'''(?x)
1746 ^.{8,}? # >=8 char non-TZ prefix, if present
1747 (?P<tz>Z| # just the UTC Z, or
1748 (?:(?<=.\b\d{4}|\b\d{2}:\d\d)| # preceded by 4 digits or hh:mm or
1749 (?<!.\b[a-zA-Z]{3}|[a-zA-Z]{4}|..\b\d\d)) # not preceded by 3 alpha word or >= 4 alpha or 2 digits
1750 [ ]? # optional space
1751 (?P<sign>\+|-) # +/-
1752 (?P<hours>[0-9]{2}):?(?P<minutes>[0-9]{2}) # hh[:]mm
1753 $)
1754 ''', date_str)
46f59e89 1755 if not m:
8f53dc44 1756 m = re.search(r'\d{1,2}:\d{1,2}(?:\.\d+)?(?P<tz>\s*[A-Z]+)$', date_str)
1757 timezone = TIMEZONE_NAMES.get(m and m.group('tz').strip())
1758 if timezone is not None:
1759 date_str = date_str[:-len(m.group('tz'))]
1760 timezone = datetime.timedelta(hours=timezone or 0)
46f59e89
S
1761 else:
1762 date_str = date_str[:-len(m.group('tz'))]
1763 if not m.group('sign'):
1764 timezone = datetime.timedelta()
1765 else:
1766 sign = 1 if m.group('sign') == '+' else -1
1767 timezone = datetime.timedelta(
1768 hours=sign * int(m.group('hours')),
1769 minutes=sign * int(m.group('minutes')))
1770 return timezone, date_str
1771
1772
08b38d54 1773def parse_iso8601(date_str, delimiter='T', timezone=None):
912b38b4
PH
1774 """ Return a UNIX timestamp from the given date """
1775
1776 if date_str is None:
1777 return None
1778
52c3a6e4
S
1779 date_str = re.sub(r'\.[0-9]+', '', date_str)
1780
08b38d54 1781 if timezone is None:
46f59e89
S
1782 timezone, date_str = extract_timezone(date_str)
1783
19a03940 1784 with contextlib.suppress(ValueError):
86e5f3ed 1785 date_format = f'%Y-%m-%d{delimiter}%H:%M:%S'
52c3a6e4
S
1786 dt = datetime.datetime.strptime(date_str, date_format) - timezone
1787 return calendar.timegm(dt.timetuple())
912b38b4
PH
1788
1789
46f59e89
S
1790def date_formats(day_first=True):
1791 return DATE_FORMATS_DAY_FIRST if day_first else DATE_FORMATS_MONTH_FIRST
1792
1793
42bdd9d0 1794def unified_strdate(date_str, day_first=True):
bf50b038 1795 """Return a string with the date in the format YYYYMMDD"""
64e7ad60
PH
1796
1797 if date_str is None:
1798 return None
bf50b038 1799 upload_date = None
5f6a1245 1800 # Replace commas
026fcc04 1801 date_str = date_str.replace(',', ' ')
42bdd9d0 1802 # Remove AM/PM + timezone
9bb8e0a3 1803 date_str = re.sub(r'(?i)\s*(?:AM|PM)(?:\s+[A-Z]+)?', '', date_str)
46f59e89 1804 _, date_str = extract_timezone(date_str)
42bdd9d0 1805
46f59e89 1806 for expression in date_formats(day_first):
19a03940 1807 with contextlib.suppress(ValueError):
bf50b038 1808 upload_date = datetime.datetime.strptime(date_str, expression).strftime('%Y%m%d')
42393ce2
PH
1809 if upload_date is None:
1810 timetuple = email.utils.parsedate_tz(date_str)
1811 if timetuple:
19a03940 1812 with contextlib.suppress(ValueError):
c6b9cf05 1813 upload_date = datetime.datetime(*timetuple[:6]).strftime('%Y%m%d')
6a750402 1814 if upload_date is not None:
14f25df2 1815 return str(upload_date)
bf50b038 1816
5f6a1245 1817
46f59e89
S
1818def unified_timestamp(date_str, day_first=True):
1819 if date_str is None:
1820 return None
1821
8f53dc44 1822 date_str = re.sub(r'\s+', ' ', re.sub(
1823 r'(?i)[,|]|(mon|tues?|wed(nes)?|thu(rs)?|fri|sat(ur)?)(day)?', '', date_str))
46f59e89 1824
7dc2a74e 1825 pm_delta = 12 if re.search(r'(?i)PM', date_str) else 0
46f59e89
S
1826 timezone, date_str = extract_timezone(date_str)
1827
1828 # Remove AM/PM + timezone
1829 date_str = re.sub(r'(?i)\s*(?:AM|PM)(?:\s+[A-Z]+)?', '', date_str)
1830
deef3195
S
1831 # Remove unrecognized timezones from ISO 8601 alike timestamps
1832 m = re.search(r'\d{1,2}:\d{1,2}(?:\.\d+)?(?P<tz>\s*[A-Z]+)$', date_str)
1833 if m:
1834 date_str = date_str[:-len(m.group('tz'))]
1835
f226880c
PH
1836 # Python only supports microseconds, so remove nanoseconds
1837 m = re.search(r'^([0-9]{4,}-[0-9]{1,2}-[0-9]{1,2}T[0-9]{1,2}:[0-9]{1,2}:[0-9]{1,2}\.[0-9]{6})[0-9]+$', date_str)
1838 if m:
1839 date_str = m.group(1)
1840
46f59e89 1841 for expression in date_formats(day_first):
19a03940 1842 with contextlib.suppress(ValueError):
7dc2a74e 1843 dt = datetime.datetime.strptime(date_str, expression) - timezone + datetime.timedelta(hours=pm_delta)
46f59e89 1844 return calendar.timegm(dt.timetuple())
8f53dc44 1845
46f59e89
S
1846 timetuple = email.utils.parsedate_tz(date_str)
1847 if timetuple:
8f53dc44 1848 return calendar.timegm(timetuple) + pm_delta * 3600 - timezone.total_seconds()
46f59e89
S
1849
1850
28e614de 1851def determine_ext(url, default_ext='unknown_video'):
85750f89 1852 if url is None or '.' not in url:
f4776371 1853 return default_ext
9cb9a5df 1854 guess = url.partition('?')[0].rpartition('.')[2]
73e79f2a
PH
1855 if re.match(r'^[A-Za-z0-9]+$', guess):
1856 return guess
a7aaa398
S
1857 # Try extract ext from URLs like http://example.com/foo/bar.mp4/?download
1858 elif guess.rstrip('/') in KNOWN_EXTENSIONS:
9cb9a5df 1859 return guess.rstrip('/')
73e79f2a 1860 else:
cbdbb766 1861 return default_ext
73e79f2a 1862
5f6a1245 1863
824fa511
S
1864def subtitles_filename(filename, sub_lang, sub_format, expected_real_ext=None):
1865 return replace_extension(filename, sub_lang + '.' + sub_format, expected_real_ext)
d4051a8e 1866
5f6a1245 1867
9e62f283 1868def datetime_from_str(date_str, precision='auto', format='%Y%m%d'):
3d38b2d6 1869 R"""
1870 Return a datetime object from a string.
1871 Supported format:
1872 (now|today|yesterday|DATE)([+-]\d+(microsecond|second|minute|hour|day|week|month|year)s?)?
1873
1874 @param format strftime format of DATE
1875 @param precision Round the datetime object: auto|microsecond|second|minute|hour|day
1876 auto: round to the unit provided in date_str (if applicable).
9e62f283 1877 """
1878 auto_precision = False
1879 if precision == 'auto':
1880 auto_precision = True
1881 precision = 'microsecond'
396a76f7 1882 today = datetime_round(datetime.datetime.utcnow(), precision)
f8795e10 1883 if date_str in ('now', 'today'):
37254abc 1884 return today
f8795e10
PH
1885 if date_str == 'yesterday':
1886 return today - datetime.timedelta(days=1)
9e62f283 1887 match = re.match(
3d38b2d6 1888 r'(?P<start>.+)(?P<sign>[+-])(?P<time>\d+)(?P<unit>microsecond|second|minute|hour|day|week|month|year)s?',
9e62f283 1889 date_str)
37254abc 1890 if match is not None:
9e62f283 1891 start_time = datetime_from_str(match.group('start'), precision, format)
1892 time = int(match.group('time')) * (-1 if match.group('sign') == '-' else 1)
37254abc 1893 unit = match.group('unit')
9e62f283 1894 if unit == 'month' or unit == 'year':
1895 new_date = datetime_add_months(start_time, time * 12 if unit == 'year' else time)
37254abc 1896 unit = 'day'
9e62f283 1897 else:
1898 if unit == 'week':
1899 unit = 'day'
1900 time *= 7
1901 delta = datetime.timedelta(**{unit + 's': time})
1902 new_date = start_time + delta
1903 if auto_precision:
1904 return datetime_round(new_date, unit)
1905 return new_date
1906
1907 return datetime_round(datetime.datetime.strptime(date_str, format), precision)
1908
1909
d49f8db3 1910def date_from_str(date_str, format='%Y%m%d', strict=False):
3d38b2d6 1911 R"""
1912 Return a date object from a string using datetime_from_str
9e62f283 1913
3d38b2d6 1914 @param strict Restrict allowed patterns to "YYYYMMDD" and
1915 (now|today|yesterday)(-\d+(day|week|month|year)s?)?
9e62f283 1916 """
3d38b2d6 1917 if strict and not re.fullmatch(r'\d{8}|(now|today|yesterday)(-\d+(day|week|month|year)s?)?', date_str):
1918 raise ValueError(f'Invalid date format "{date_str}"')
9e62f283 1919 return datetime_from_str(date_str, precision='microsecond', format=format).date()
1920
1921
1922def datetime_add_months(dt, months):
1923 """Increment/Decrement a datetime object by months."""
1924 month = dt.month + months - 1
1925 year = dt.year + month // 12
1926 month = month % 12 + 1
1927 day = min(dt.day, calendar.monthrange(year, month)[1])
1928 return dt.replace(year, month, day)
1929
1930
1931def datetime_round(dt, precision='day'):
1932 """
1933 Round a datetime object's time to a specific precision
1934 """
1935 if precision == 'microsecond':
1936 return dt
1937
1938 unit_seconds = {
1939 'day': 86400,
1940 'hour': 3600,
1941 'minute': 60,
1942 'second': 1,
1943 }
1944 roundto = lambda x, n: ((x + n / 2) // n) * n
1945 timestamp = calendar.timegm(dt.timetuple())
1946 return datetime.datetime.utcfromtimestamp(roundto(timestamp, unit_seconds[precision]))
5f6a1245
JW
1947
1948
e63fc1be 1949def hyphenate_date(date_str):
1950 """
1951 Convert a date in 'YYYYMMDD' format to 'YYYY-MM-DD' format"""
1952 match = re.match(r'^(\d\d\d\d)(\d\d)(\d\d)$', date_str)
1953 if match is not None:
1954 return '-'.join(match.groups())
1955 else:
1956 return date_str
1957
5f6a1245 1958
86e5f3ed 1959class DateRange:
bd558525 1960 """Represents a time interval between two dates"""
5f6a1245 1961
bd558525
JMF
1962 def __init__(self, start=None, end=None):
1963 """start and end must be strings in the format accepted by date"""
1964 if start is not None:
d49f8db3 1965 self.start = date_from_str(start, strict=True)
bd558525
JMF
1966 else:
1967 self.start = datetime.datetime.min.date()
1968 if end is not None:
d49f8db3 1969 self.end = date_from_str(end, strict=True)
bd558525
JMF
1970 else:
1971 self.end = datetime.datetime.max.date()
37254abc 1972 if self.start > self.end:
bd558525 1973 raise ValueError('Date range: "%s" , the start date must be before the end date' % self)
5f6a1245 1974
bd558525
JMF
1975 @classmethod
1976 def day(cls, day):
1977 """Returns a range that only contains the given day"""
5f6a1245
JW
1978 return cls(day, day)
1979
bd558525
JMF
1980 def __contains__(self, date):
1981 """Check if the date is in the range"""
37254abc
JMF
1982 if not isinstance(date, datetime.date):
1983 date = date_from_str(date)
1984 return self.start <= date <= self.end
5f6a1245 1985
bd558525 1986 def __str__(self):
86e5f3ed 1987 return f'{self.start.isoformat()} - {self.end.isoformat()}'
c496ca96 1988
f2df4071 1989 def __eq__(self, other):
1990 return (isinstance(other, DateRange)
1991 and self.start == other.start and self.end == other.end)
1992
c496ca96
PH
1993
1994def platform_name():
14f25df2 1995 """ Returns the platform name as a str """
da4db748 1996 deprecation_warning(f'"{__name__}.platform_name" is deprecated, use "platform.platform" instead')
b1f94422 1997 return platform.platform()
c496ca96 1998
b1f94422 1999
2000@functools.cache
2001def system_identifier():
2002 python_implementation = platform.python_implementation()
2003 if python_implementation == 'PyPy' and hasattr(sys, 'pypy_version_info'):
2004 python_implementation += ' version %d.%d.%d' % sys.pypy_version_info[:3]
dab284f8 2005 libc_ver = []
2006 with contextlib.suppress(OSError): # We may not have access to the executable
2007 libc_ver = platform.libc_ver()
b1f94422 2008
17fc3dc4 2009 return 'Python %s (%s %s %s) - %s (%s%s)' % (
b1f94422 2010 platform.python_version(),
2011 python_implementation,
17fc3dc4 2012 platform.machine(),
b1f94422 2013 platform.architecture()[0],
2014 platform.platform(),
5b9f253f
M
2015 ssl.OPENSSL_VERSION,
2016 format_field(join_nonempty(*libc_ver, delim=' '), None, ', %s'),
b1f94422 2017 )
c257baff
PH
2018
2019
0b9c08b4 2020@functools.cache
49fa4d9a 2021def get_windows_version():
8a82af35 2022 ''' Get Windows version. returns () if it's not running on Windows '''
49fa4d9a
N
2023 if compat_os_name == 'nt':
2024 return version_tuple(platform.win32_ver()[1])
2025 else:
8a82af35 2026 return ()
49fa4d9a
N
2027
2028
734f90bb 2029def write_string(s, out=None, encoding=None):
19a03940 2030 assert isinstance(s, str)
2031 out = out or sys.stderr
7459e3a2 2032
fe1daad3 2033 if compat_os_name == 'nt' and supports_terminal_sequences(out):
3fe75fdc 2034 s = re.sub(r'([\r\n]+)', r' \1', s)
59f943cd 2035
8a82af35 2036 enc, buffer = None, out
cfb0511d 2037 if 'b' in getattr(out, 'mode', ''):
c487cf00 2038 enc = encoding or preferredencoding()
104aa738 2039 elif hasattr(out, 'buffer'):
8a82af35 2040 buffer = out.buffer
104aa738 2041 enc = encoding or getattr(out, 'encoding', None) or preferredencoding()
c487cf00 2042
8a82af35 2043 buffer.write(s.encode(enc, 'ignore') if enc else s)
7459e3a2
PH
2044 out.flush()
2045
2046
da4db748 2047def deprecation_warning(msg, *, printer=None, stacklevel=0, **kwargs):
2048 from . import _IN_CLI
2049 if _IN_CLI:
2050 if msg in deprecation_warning._cache:
2051 return
2052 deprecation_warning._cache.add(msg)
2053 if printer:
2054 return printer(f'{msg}{bug_reports_message()}', **kwargs)
2055 return write_string(f'ERROR: {msg}{bug_reports_message()}\n', **kwargs)
2056 else:
2057 import warnings
2058 warnings.warn(DeprecationWarning(msg), stacklevel=stacklevel + 3)
2059
2060
2061deprecation_warning._cache = set()
2062
2063
48ea9cea
PH
2064def bytes_to_intlist(bs):
2065 if not bs:
2066 return []
2067 if isinstance(bs[0], int): # Python 3
2068 return list(bs)
2069 else:
2070 return [ord(c) for c in bs]
2071
c257baff 2072
cba892fa 2073def intlist_to_bytes(xs):
2074 if not xs:
2075 return b''
ac668111 2076 return struct.pack('%dB' % len(xs), *xs)
c38b1e77
PH
2077
2078
8a82af35 2079class LockingUnsupportedError(OSError):
1890fc63 2080 msg = 'File locking is not supported'
0edb3e33 2081
2082 def __init__(self):
2083 super().__init__(self.msg)
2084
2085
c1c9a79c
PH
2086# Cross-platform file locking
2087if sys.platform == 'win32':
fe0918bb 2088 import ctypes
c1c9a79c
PH
2089 import ctypes.wintypes
2090 import msvcrt
2091
2092 class OVERLAPPED(ctypes.Structure):
2093 _fields_ = [
2094 ('Internal', ctypes.wintypes.LPVOID),
2095 ('InternalHigh', ctypes.wintypes.LPVOID),
2096 ('Offset', ctypes.wintypes.DWORD),
2097 ('OffsetHigh', ctypes.wintypes.DWORD),
2098 ('hEvent', ctypes.wintypes.HANDLE),
2099 ]
2100
2101 kernel32 = ctypes.windll.kernel32
2102 LockFileEx = kernel32.LockFileEx
2103 LockFileEx.argtypes = [
2104 ctypes.wintypes.HANDLE, # hFile
2105 ctypes.wintypes.DWORD, # dwFlags
2106 ctypes.wintypes.DWORD, # dwReserved
2107 ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
2108 ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
2109 ctypes.POINTER(OVERLAPPED) # Overlapped
2110 ]
2111 LockFileEx.restype = ctypes.wintypes.BOOL
2112 UnlockFileEx = kernel32.UnlockFileEx
2113 UnlockFileEx.argtypes = [
2114 ctypes.wintypes.HANDLE, # hFile
2115 ctypes.wintypes.DWORD, # dwReserved
2116 ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
2117 ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
2118 ctypes.POINTER(OVERLAPPED) # Overlapped
2119 ]
2120 UnlockFileEx.restype = ctypes.wintypes.BOOL
2121 whole_low = 0xffffffff
2122 whole_high = 0x7fffffff
2123
747c0bd1 2124 def _lock_file(f, exclusive, block):
c1c9a79c
PH
2125 overlapped = OVERLAPPED()
2126 overlapped.Offset = 0
2127 overlapped.OffsetHigh = 0
2128 overlapped.hEvent = 0
2129 f._lock_file_overlapped_p = ctypes.pointer(overlapped)
747c0bd1 2130
2131 if not LockFileEx(msvcrt.get_osfhandle(f.fileno()),
2132 (0x2 if exclusive else 0x0) | (0x0 if block else 0x1),
2133 0, whole_low, whole_high, f._lock_file_overlapped_p):
2cb19820 2134 # NB: No argument form of "ctypes.FormatError" does not work on PyPy
2135 raise BlockingIOError(f'Locking file failed: {ctypes.FormatError(ctypes.GetLastError())!r}')
c1c9a79c
PH
2136
2137 def _unlock_file(f):
2138 assert f._lock_file_overlapped_p
2139 handle = msvcrt.get_osfhandle(f.fileno())
747c0bd1 2140 if not UnlockFileEx(handle, 0, whole_low, whole_high, f._lock_file_overlapped_p):
c1c9a79c
PH
2141 raise OSError('Unlocking file failed: %r' % ctypes.FormatError())
2142
2143else:
399a76e6
YCH
2144 try:
2145 import fcntl
c1c9a79c 2146
a3125791 2147 def _lock_file(f, exclusive, block):
b63837bc 2148 flags = fcntl.LOCK_EX if exclusive else fcntl.LOCK_SH
2149 if not block:
2150 flags |= fcntl.LOCK_NB
acea8d7c 2151 try:
b63837bc 2152 fcntl.flock(f, flags)
acea8d7c
JK
2153 except BlockingIOError:
2154 raise
2155 except OSError: # AOSP does not have flock()
b63837bc 2156 fcntl.lockf(f, flags)
c1c9a79c 2157
399a76e6 2158 def _unlock_file(f):
acea8d7c
JK
2159 try:
2160 fcntl.flock(f, fcntl.LOCK_UN)
2161 except OSError:
2162 fcntl.lockf(f, fcntl.LOCK_UN)
a3125791 2163
399a76e6 2164 except ImportError:
399a76e6 2165
a3125791 2166 def _lock_file(f, exclusive, block):
0edb3e33 2167 raise LockingUnsupportedError()
399a76e6
YCH
2168
2169 def _unlock_file(f):
0edb3e33 2170 raise LockingUnsupportedError()
c1c9a79c
PH
2171
2172
86e5f3ed 2173class locked_file:
0edb3e33 2174 locked = False
747c0bd1 2175
a3125791 2176 def __init__(self, filename, mode, block=True, encoding=None):
fcfa8853
JK
2177 if mode not in {'r', 'rb', 'a', 'ab', 'w', 'wb'}:
2178 raise NotImplementedError(mode)
2179 self.mode, self.block = mode, block
2180
2181 writable = any(f in mode for f in 'wax+')
2182 readable = any(f in mode for f in 'r+')
2183 flags = functools.reduce(operator.ior, (
2184 getattr(os, 'O_CLOEXEC', 0), # UNIX only
2185 getattr(os, 'O_BINARY', 0), # Windows only
2186 getattr(os, 'O_NOINHERIT', 0), # Windows only
2187 os.O_CREAT if writable else 0, # O_TRUNC only after locking
2188 os.O_APPEND if 'a' in mode else 0,
2189 os.O_EXCL if 'x' in mode else 0,
2190 os.O_RDONLY if not writable else os.O_RDWR if readable else os.O_WRONLY,
2191 ))
2192
98804d03 2193 self.f = os.fdopen(os.open(filename, flags, 0o666), mode, encoding=encoding)
c1c9a79c
PH
2194
2195 def __enter__(self):
a3125791 2196 exclusive = 'r' not in self.mode
c1c9a79c 2197 try:
a3125791 2198 _lock_file(self.f, exclusive, self.block)
0edb3e33 2199 self.locked = True
86e5f3ed 2200 except OSError:
c1c9a79c
PH
2201 self.f.close()
2202 raise
fcfa8853 2203 if 'w' in self.mode:
131e14dc
JK
2204 try:
2205 self.f.truncate()
2206 except OSError as e:
1890fc63 2207 if e.errno not in (
2208 errno.ESPIPE, # Illegal seek - expected for FIFO
2209 errno.EINVAL, # Invalid argument - expected for /dev/null
2210 ):
2211 raise
c1c9a79c
PH
2212 return self
2213
0edb3e33 2214 def unlock(self):
2215 if not self.locked:
2216 return
c1c9a79c 2217 try:
0edb3e33 2218 _unlock_file(self.f)
c1c9a79c 2219 finally:
0edb3e33 2220 self.locked = False
c1c9a79c 2221
0edb3e33 2222 def __exit__(self, *_):
2223 try:
2224 self.unlock()
2225 finally:
2226 self.f.close()
4eb7f1d1 2227
0edb3e33 2228 open = __enter__
2229 close = __exit__
a3125791 2230
0edb3e33 2231 def __getattr__(self, attr):
2232 return getattr(self.f, attr)
a3125791 2233
0edb3e33 2234 def __iter__(self):
2235 return iter(self.f)
a3125791 2236
4eb7f1d1 2237
0b9c08b4 2238@functools.cache
4644ac55
S
2239def get_filesystem_encoding():
2240 encoding = sys.getfilesystemencoding()
2241 return encoding if encoding is not None else 'utf-8'
2242
2243
4eb7f1d1 2244def shell_quote(args):
a6a173c2 2245 quoted_args = []
4644ac55 2246 encoding = get_filesystem_encoding()
a6a173c2
JMF
2247 for a in args:
2248 if isinstance(a, bytes):
2249 # We may get a filename encoded with 'encodeFilename'
2250 a = a.decode(encoding)
aefce8e6 2251 quoted_args.append(compat_shlex_quote(a))
28e614de 2252 return ' '.join(quoted_args)
9d4660ca
PH
2253
2254
2255def smuggle_url(url, data):
2256 """ Pass additional data in a URL for internal use. """
2257
81953d1a
RA
2258 url, idata = unsmuggle_url(url, {})
2259 data.update(idata)
14f25df2 2260 sdata = urllib.parse.urlencode(
28e614de
PH
2261 {'__youtubedl_smuggle': json.dumps(data)})
2262 return url + '#' + sdata
9d4660ca
PH
2263
2264
79f82953 2265def unsmuggle_url(smug_url, default=None):
83e865a3 2266 if '#__youtubedl_smuggle' not in smug_url:
79f82953 2267 return smug_url, default
28e614de 2268 url, _, sdata = smug_url.rpartition('#')
14f25df2 2269 jsond = urllib.parse.parse_qs(sdata)['__youtubedl_smuggle'][0]
9d4660ca
PH
2270 data = json.loads(jsond)
2271 return url, data
02dbf93f
PH
2272
2273
e0fd9573 2274def format_decimal_suffix(num, fmt='%d%s', *, factor=1000):
2275 """ Formats numbers with decimal sufixes like K, M, etc """
2276 num, factor = float_or_none(num), float(factor)
4c3f8c3f 2277 if num is None or num < 0:
e0fd9573 2278 return None
eeb2a770 2279 POSSIBLE_SUFFIXES = 'kMGTPEZY'
2280 exponent = 0 if num == 0 else min(int(math.log(num, factor)), len(POSSIBLE_SUFFIXES))
2281 suffix = ['', *POSSIBLE_SUFFIXES][exponent]
abbeeebc 2282 if factor == 1024:
2283 suffix = {'k': 'Ki', '': ''}.get(suffix, f'{suffix}i')
e0fd9573 2284 converted = num / (factor ** exponent)
abbeeebc 2285 return fmt % (converted, suffix)
e0fd9573 2286
2287
02dbf93f 2288def format_bytes(bytes):
f02d24d8 2289 return format_decimal_suffix(bytes, '%.2f%sB', factor=1024) or 'N/A'
f53c966a 2290
1c088fa8 2291
fb47597b
S
2292def lookup_unit_table(unit_table, s):
2293 units_re = '|'.join(re.escape(u) for u in unit_table)
2294 m = re.match(
782b1b5b 2295 r'(?P<num>[0-9]+(?:[,.][0-9]*)?)\s*(?P<unit>%s)\b' % units_re, s)
fb47597b
S
2296 if not m:
2297 return None
2298 num_str = m.group('num').replace(',', '.')
2299 mult = unit_table[m.group('unit')]
2300 return int(float(num_str) * mult)
2301
2302
be64b5b0
PH
2303def parse_filesize(s):
2304 if s is None:
2305 return None
2306
dfb1b146 2307 # The lower-case forms are of course incorrect and unofficial,
be64b5b0
PH
2308 # but we support those too
2309 _UNIT_TABLE = {
2310 'B': 1,
2311 'b': 1,
70852b47 2312 'bytes': 1,
be64b5b0
PH
2313 'KiB': 1024,
2314 'KB': 1000,
2315 'kB': 1024,
2316 'Kb': 1000,
13585d76 2317 'kb': 1000,
70852b47
YCH
2318 'kilobytes': 1000,
2319 'kibibytes': 1024,
be64b5b0
PH
2320 'MiB': 1024 ** 2,
2321 'MB': 1000 ** 2,
2322 'mB': 1024 ** 2,
2323 'Mb': 1000 ** 2,
13585d76 2324 'mb': 1000 ** 2,
70852b47
YCH
2325 'megabytes': 1000 ** 2,
2326 'mebibytes': 1024 ** 2,
be64b5b0
PH
2327 'GiB': 1024 ** 3,
2328 'GB': 1000 ** 3,
2329 'gB': 1024 ** 3,
2330 'Gb': 1000 ** 3,
13585d76 2331 'gb': 1000 ** 3,
70852b47
YCH
2332 'gigabytes': 1000 ** 3,
2333 'gibibytes': 1024 ** 3,
be64b5b0
PH
2334 'TiB': 1024 ** 4,
2335 'TB': 1000 ** 4,
2336 'tB': 1024 ** 4,
2337 'Tb': 1000 ** 4,
13585d76 2338 'tb': 1000 ** 4,
70852b47
YCH
2339 'terabytes': 1000 ** 4,
2340 'tebibytes': 1024 ** 4,
be64b5b0
PH
2341 'PiB': 1024 ** 5,
2342 'PB': 1000 ** 5,
2343 'pB': 1024 ** 5,
2344 'Pb': 1000 ** 5,
13585d76 2345 'pb': 1000 ** 5,
70852b47
YCH
2346 'petabytes': 1000 ** 5,
2347 'pebibytes': 1024 ** 5,
be64b5b0
PH
2348 'EiB': 1024 ** 6,
2349 'EB': 1000 ** 6,
2350 'eB': 1024 ** 6,
2351 'Eb': 1000 ** 6,
13585d76 2352 'eb': 1000 ** 6,
70852b47
YCH
2353 'exabytes': 1000 ** 6,
2354 'exbibytes': 1024 ** 6,
be64b5b0
PH
2355 'ZiB': 1024 ** 7,
2356 'ZB': 1000 ** 7,
2357 'zB': 1024 ** 7,
2358 'Zb': 1000 ** 7,
13585d76 2359 'zb': 1000 ** 7,
70852b47
YCH
2360 'zettabytes': 1000 ** 7,
2361 'zebibytes': 1024 ** 7,
be64b5b0
PH
2362 'YiB': 1024 ** 8,
2363 'YB': 1000 ** 8,
2364 'yB': 1024 ** 8,
2365 'Yb': 1000 ** 8,
13585d76 2366 'yb': 1000 ** 8,
70852b47
YCH
2367 'yottabytes': 1000 ** 8,
2368 'yobibytes': 1024 ** 8,
be64b5b0
PH
2369 }
2370
fb47597b
S
2371 return lookup_unit_table(_UNIT_TABLE, s)
2372
2373
2374def parse_count(s):
2375 if s is None:
be64b5b0
PH
2376 return None
2377
352d5da8 2378 s = re.sub(r'^[^\d]+\s', '', s).strip()
fb47597b
S
2379
2380 if re.match(r'^[\d,.]+$', s):
2381 return str_to_int(s)
2382
2383 _UNIT_TABLE = {
2384 'k': 1000,
2385 'K': 1000,
2386 'm': 1000 ** 2,
2387 'M': 1000 ** 2,
2388 'kk': 1000 ** 2,
2389 'KK': 1000 ** 2,
352d5da8 2390 'b': 1000 ** 3,
2391 'B': 1000 ** 3,
fb47597b 2392 }
be64b5b0 2393
352d5da8 2394 ret = lookup_unit_table(_UNIT_TABLE, s)
2395 if ret is not None:
2396 return ret
2397
2398 mobj = re.match(r'([\d,.]+)(?:$|\s)', s)
2399 if mobj:
2400 return str_to_int(mobj.group(1))
be64b5b0 2401
2f7ae819 2402
5d45484c 2403def parse_resolution(s, *, lenient=False):
b871d7e9
S
2404 if s is None:
2405 return {}
2406
5d45484c
LNO
2407 if lenient:
2408 mobj = re.search(r'(?P<w>\d+)\s*[xX×,]\s*(?P<h>\d+)', s)
2409 else:
2410 mobj = re.search(r'(?<![a-zA-Z0-9])(?P<w>\d+)\s*[xX×,]\s*(?P<h>\d+)(?![a-zA-Z0-9])', s)
b871d7e9
S
2411 if mobj:
2412 return {
2413 'width': int(mobj.group('w')),
2414 'height': int(mobj.group('h')),
2415 }
2416
17ec8bcf 2417 mobj = re.search(r'(?<![a-zA-Z0-9])(\d+)[pPiI](?![a-zA-Z0-9])', s)
b871d7e9
S
2418 if mobj:
2419 return {'height': int(mobj.group(1))}
2420
2421 mobj = re.search(r'\b([48])[kK]\b', s)
2422 if mobj:
2423 return {'height': int(mobj.group(1)) * 540}
2424
2425 return {}
2426
2427
0dc41787 2428def parse_bitrate(s):
14f25df2 2429 if not isinstance(s, str):
0dc41787
S
2430 return
2431 mobj = re.search(r'\b(\d+)\s*kbps', s)
2432 if mobj:
2433 return int(mobj.group(1))
2434
2435
a942d6cb 2436def month_by_name(name, lang='en'):
caefb1de
PH
2437 """ Return the number of a month by (locale-independently) English name """
2438
f6717dec 2439 month_names = MONTH_NAMES.get(lang, MONTH_NAMES['en'])
a942d6cb 2440
caefb1de 2441 try:
f6717dec 2442 return month_names.index(name) + 1
7105440c
YCH
2443 except ValueError:
2444 return None
2445
2446
2447def month_by_abbreviation(abbrev):
2448 """ Return the number of a month by (locale-independently) English
2449 abbreviations """
2450
2451 try:
2452 return [s[:3] for s in ENGLISH_MONTH_NAMES].index(abbrev) + 1
caefb1de
PH
2453 except ValueError:
2454 return None
18258362
JMF
2455
2456
5aafe895 2457def fix_xml_ampersands(xml_str):
18258362 2458 """Replace all the '&' by '&amp;' in XML"""
5aafe895
PH
2459 return re.sub(
2460 r'&(?!amp;|lt;|gt;|apos;|quot;|#x[0-9a-fA-F]{,4};|#[0-9]{,4};)',
28e614de 2461 '&amp;',
5aafe895 2462 xml_str)
e3946f98
PH
2463
2464
2465def setproctitle(title):
14f25df2 2466 assert isinstance(title, str)
c1c05c67 2467
fe0918bb 2468 # Workaround for https://github.com/yt-dlp/yt-dlp/issues/4541
2469 try:
2470 import ctypes
2471 except ImportError:
c1c05c67
YCH
2472 return
2473
e3946f98 2474 try:
611c1dd9 2475 libc = ctypes.cdll.LoadLibrary('libc.so.6')
e3946f98
PH
2476 except OSError:
2477 return
2f49bcd6
RC
2478 except TypeError:
2479 # LoadLibrary in Windows Python 2.7.13 only expects
2480 # a bytestring, but since unicode_literals turns
2481 # every string into a unicode string, it fails.
2482 return
0f06bcd7 2483 title_bytes = title.encode()
6eefe533
PH
2484 buf = ctypes.create_string_buffer(len(title_bytes))
2485 buf.value = title_bytes
e3946f98 2486 try:
6eefe533 2487 libc.prctl(15, buf, 0, 0, 0)
e3946f98
PH
2488 except AttributeError:
2489 return # Strange libc, just skip this
d7dda168
PH
2490
2491
2492def remove_start(s, start):
46bc9b7d 2493 return s[len(start):] if s is not None and s.startswith(start) else s
29eb5174
PH
2494
2495
2b9faf55 2496def remove_end(s, end):
46bc9b7d 2497 return s[:-len(end)] if s is not None and s.endswith(end) else s
2b9faf55
PH
2498
2499
31b2051e
S
2500def remove_quotes(s):
2501 if s is None or len(s) < 2:
2502 return s
2503 for quote in ('"', "'", ):
2504 if s[0] == quote and s[-1] == quote:
2505 return s[1:-1]
2506 return s
2507
2508
b6e0c7d2 2509def get_domain(url):
ebf99aaf 2510 """
2511 This implementation is inconsistent, but is kept for compatibility.
2512 Use this only for "webpage_url_domain"
2513 """
2514 return remove_start(urllib.parse.urlparse(url).netloc, 'www.') or None
b6e0c7d2
U
2515
2516
29eb5174 2517def url_basename(url):
14f25df2 2518 path = urllib.parse.urlparse(url).path
28e614de 2519 return path.strip('/').split('/')[-1]
aa94a6d3
PH
2520
2521
02dc0a36 2522def base_url(url):
7657ec7e 2523 return re.match(r'https?://[^?#]+/', url).group()
02dc0a36
S
2524
2525
e34c3361 2526def urljoin(base, path):
4b5de77b 2527 if isinstance(path, bytes):
0f06bcd7 2528 path = path.decode()
14f25df2 2529 if not isinstance(path, str) or not path:
e34c3361 2530 return None
fad4ceb5 2531 if re.match(r'^(?:[a-zA-Z][a-zA-Z0-9+-.]*:)?//', path):
e34c3361 2532 return path
4b5de77b 2533 if isinstance(base, bytes):
0f06bcd7 2534 base = base.decode()
14f25df2 2535 if not isinstance(base, str) or not re.match(
4b5de77b 2536 r'^(?:https?:)?//', base):
e34c3361 2537 return None
14f25df2 2538 return urllib.parse.urljoin(base, path)
e34c3361
S
2539
2540
ac668111 2541class HEADRequest(urllib.request.Request):
aa94a6d3 2542 def get_method(self):
611c1dd9 2543 return 'HEAD'
7217e148
PH
2544
2545
ac668111 2546class PUTRequest(urllib.request.Request):
95cf60e8
S
2547 def get_method(self):
2548 return 'PUT'
2549
2550
9732d77e 2551def int_or_none(v, scale=1, default=None, get_attr=None, invscale=1):
9e907ebd 2552 if get_attr and v is not None:
2553 v = getattr(v, get_attr, None)
1812afb7
S
2554 try:
2555 return int(v) * invscale // scale
31c49255 2556 except (ValueError, TypeError, OverflowError):
af98f8ff 2557 return default
9732d77e 2558
9572013d 2559
40a90862 2560def str_or_none(v, default=None):
14f25df2 2561 return default if v is None else str(v)
40a90862 2562
9732d77e
PH
2563
2564def str_to_int(int_str):
48d4681e 2565 """ A more relaxed version of int_or_none """
f9934b96 2566 if isinstance(int_str, int):
348c6bf1 2567 return int_str
14f25df2 2568 elif isinstance(int_str, str):
42db58ec
S
2569 int_str = re.sub(r'[,\.\+]', '', int_str)
2570 return int_or_none(int_str)
608d11f5
PH
2571
2572
9732d77e 2573def float_or_none(v, scale=1, invscale=1, default=None):
caf80631
S
2574 if v is None:
2575 return default
2576 try:
2577 return float(v) * invscale / scale
5e1271c5 2578 except (ValueError, TypeError):
caf80631 2579 return default
43f775e4
PH
2580
2581
c7e327c4
S
2582def bool_or_none(v, default=None):
2583 return v if isinstance(v, bool) else default
2584
2585
53cd37ba 2586def strip_or_none(v, default=None):
14f25df2 2587 return v.strip() if isinstance(v, str) else default
b72b4431
S
2588
2589
af03000a 2590def url_or_none(url):
14f25df2 2591 if not url or not isinstance(url, str):
af03000a
S
2592 return None
2593 url = url.strip()
29f7c58a 2594 return url if re.match(r'^(?:(?:https?|rt(?:m(?:pt?[es]?|fp)|sp[su]?)|mms|ftps?):)?//', url) else None
af03000a
S
2595
2596
3e9b66d7 2597def request_to_url(req):
ac668111 2598 if isinstance(req, urllib.request.Request):
3e9b66d7
LNO
2599 return req.get_full_url()
2600 else:
2601 return req
2602
2603
e29663c6 2604def strftime_or_none(timestamp, date_format, default=None):
2605 datetime_object = None
2606 try:
f9934b96 2607 if isinstance(timestamp, (int, float)): # unix timestamp
d509c1f5 2608 # Using naive datetime here can break timestamp() in Windows
2609 # Ref: https://github.com/yt-dlp/yt-dlp/issues/5185, https://github.com/python/cpython/issues/94414
2610 datetime_object = datetime.datetime.fromtimestamp(timestamp, datetime.timezone.utc)
14f25df2 2611 elif isinstance(timestamp, str): # assume YYYYMMDD
e29663c6 2612 datetime_object = datetime.datetime.strptime(timestamp, '%Y%m%d')
9665f15a 2613 date_format = re.sub( # Support %s on windows
2614 r'(?<!%)(%%)*%s', rf'\g<1>{int(datetime_object.timestamp())}', date_format)
e29663c6 2615 return datetime_object.strftime(date_format)
2616 except (ValueError, TypeError, AttributeError):
2617 return default
2618
2619
608d11f5 2620def parse_duration(s):
f9934b96 2621 if not isinstance(s, str):
608d11f5 2622 return None
ca7b3246 2623 s = s.strip()
38d79fd1 2624 if not s:
2625 return None
ca7b3246 2626
acaff495 2627 days, hours, mins, secs, ms = [None] * 5
8bd1c00b 2628 m = re.match(r'''(?x)
2629 (?P<before_secs>
2630 (?:(?:(?P<days>[0-9]+):)?(?P<hours>[0-9]+):)?(?P<mins>[0-9]+):)?
2631 (?P<secs>(?(before_secs)[0-9]{1,2}|[0-9]+))
2632 (?P<ms>[.:][0-9]+)?Z?$
2633 ''', s)
acaff495 2634 if m:
8bd1c00b 2635 days, hours, mins, secs, ms = m.group('days', 'hours', 'mins', 'secs', 'ms')
acaff495 2636 else:
2637 m = re.match(
056653bb
S
2638 r'''(?ix)(?:P?
2639 (?:
1c1b2f96 2640 [0-9]+\s*y(?:ears?)?,?\s*
056653bb
S
2641 )?
2642 (?:
1c1b2f96 2643 [0-9]+\s*m(?:onths?)?,?\s*
056653bb
S
2644 )?
2645 (?:
1c1b2f96 2646 [0-9]+\s*w(?:eeks?)?,?\s*
056653bb 2647 )?
8f4b58d7 2648 (?:
1c1b2f96 2649 (?P<days>[0-9]+)\s*d(?:ays?)?,?\s*
8f4b58d7 2650 )?
056653bb 2651 T)?
acaff495 2652 (?:
1c1b2f96 2653 (?P<hours>[0-9]+)\s*h(?:ours?)?,?\s*
acaff495 2654 )?
2655 (?:
1c1b2f96 2656 (?P<mins>[0-9]+)\s*m(?:in(?:ute)?s?)?,?\s*
acaff495 2657 )?
2658 (?:
2659 (?P<secs>[0-9]+)(?P<ms>\.[0-9]+)?\s*s(?:ec(?:ond)?s?)?\s*
15846398 2660 )?Z?$''', s)
acaff495 2661 if m:
2662 days, hours, mins, secs, ms = m.groups()
2663 else:
15846398 2664 m = re.match(r'(?i)(?:(?P<hours>[0-9.]+)\s*(?:hours?)|(?P<mins>[0-9.]+)\s*(?:mins?\.?|minutes?)\s*)Z?$', s)
acaff495 2665 if m:
2666 hours, mins = m.groups()
2667 else:
2668 return None
2669
acaff495 2670 if ms:
19a03940 2671 ms = ms.replace(':', '.')
2672 return sum(float(part or 0) * mult for part, mult in (
2673 (days, 86400), (hours, 3600), (mins, 60), (secs, 1), (ms, 1)))
91d7d0b3
JMF
2674
2675
e65e4c88 2676def prepend_extension(filename, ext, expected_real_ext=None):
5f6a1245 2677 name, real_ext = os.path.splitext(filename)
e65e4c88 2678 return (
86e5f3ed 2679 f'{name}.{ext}{real_ext}'
e65e4c88 2680 if not expected_real_ext or real_ext[1:] == expected_real_ext
86e5f3ed 2681 else f'{filename}.{ext}')
d70ad093
PH
2682
2683
b3ed15b7
S
2684def replace_extension(filename, ext, expected_real_ext=None):
2685 name, real_ext = os.path.splitext(filename)
86e5f3ed 2686 return '{}.{}'.format(
b3ed15b7
S
2687 name if not expected_real_ext or real_ext[1:] == expected_real_ext else filename,
2688 ext)
2689
2690
d70ad093
PH
2691def check_executable(exe, args=[]):
2692 """ Checks if the given binary is installed somewhere in PATH, and returns its name.
2693 args can be a list of arguments for a short output (like -version) """
2694 try:
f0c9fb96 2695 Popen.run([exe] + args, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
d70ad093
PH
2696 except OSError:
2697 return False
2698 return exe
b7ab0590
PH
2699
2700
7aaf4cd2 2701def _get_exe_version_output(exe, args):
95807118 2702 try:
b64d04c1 2703 # STDIN should be redirected too. On UNIX-like systems, ffmpeg triggers
7a5c1cfe 2704 # SIGTTOU if yt-dlp is run in the background.
067aa17e 2705 # See https://github.com/ytdl-org/youtube-dl/issues/955#issuecomment-209789656
f0c9fb96 2706 stdout, _, _ = Popen.run([encodeArgument(exe)] + args, text=True,
2707 stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
95807118
PH
2708 except OSError:
2709 return False
f0c9fb96 2710 return stdout
cae97f65
PH
2711
2712
2713def detect_exe_version(output, version_re=None, unrecognized='present'):
14f25df2 2714 assert isinstance(output, str)
cae97f65
PH
2715 if version_re is None:
2716 version_re = r'version\s+([-0-9._a-zA-Z]+)'
2717 m = re.search(version_re, output)
95807118
PH
2718 if m:
2719 return m.group(1)
2720 else:
2721 return unrecognized
2722
2723
9af98e17 2724def get_exe_version(exe, args=['--version'],
2725 version_re=None, unrecognized='present'):
2726 """ Returns the version of the specified executable,
2727 or False if the executable is not present """
2728 out = _get_exe_version_output(exe, args)
2729 return detect_exe_version(out, version_re, unrecognized) if out else False
2730
2731
7e88d7d7 2732def frange(start=0, stop=None, step=1):
2733 """Float range"""
2734 if stop is None:
2735 start, stop = 0, start
2736 sign = [-1, 1][step > 0] if step else 0
2737 while sign * start < sign * stop:
2738 yield start
2739 start += step
2740
2741
cb89cfc1 2742class LazyList(collections.abc.Sequence):
0f06bcd7 2743 """Lazy immutable list from an iterable
2744 Note that slices of a LazyList are lists and not LazyList"""
483336e7 2745
8e5fecc8 2746 class IndexError(IndexError):
2747 pass
2748
282f5709 2749 def __init__(self, iterable, *, reverse=False, _cache=None):
0f06bcd7 2750 self._iterable = iter(iterable)
2751 self._cache = [] if _cache is None else _cache
2752 self._reversed = reverse
483336e7 2753
2754 def __iter__(self):
0f06bcd7 2755 if self._reversed:
28419ca2 2756 # We need to consume the entire iterable to iterate in reverse
981052c9 2757 yield from self.exhaust()
28419ca2 2758 return
0f06bcd7 2759 yield from self._cache
2760 for item in self._iterable:
2761 self._cache.append(item)
483336e7 2762 yield item
2763
0f06bcd7 2764 def _exhaust(self):
2765 self._cache.extend(self._iterable)
2766 self._iterable = [] # Discard the emptied iterable to make it pickle-able
2767 return self._cache
28419ca2 2768
981052c9 2769 def exhaust(self):
0f06bcd7 2770 """Evaluate the entire iterable"""
2771 return self._exhaust()[::-1 if self._reversed else 1]
981052c9 2772
28419ca2 2773 @staticmethod
0f06bcd7 2774 def _reverse_index(x):
f2df4071 2775 return None if x is None else ~x
483336e7 2776
2777 def __getitem__(self, idx):
2778 if isinstance(idx, slice):
0f06bcd7 2779 if self._reversed:
2780 idx = slice(self._reverse_index(idx.start), self._reverse_index(idx.stop), -(idx.step or 1))
e0f2b4b4 2781 start, stop, step = idx.start, idx.stop, idx.step or 1
483336e7 2782 elif isinstance(idx, int):
0f06bcd7 2783 if self._reversed:
2784 idx = self._reverse_index(idx)
e0f2b4b4 2785 start, stop, step = idx, idx, 0
483336e7 2786 else:
2787 raise TypeError('indices must be integers or slices')
e0f2b4b4 2788 if ((start or 0) < 0 or (stop or 0) < 0
2789 or (start is None and step < 0)
2790 or (stop is None and step > 0)):
483336e7 2791 # We need to consume the entire iterable to be able to slice from the end
2792 # Obviously, never use this with infinite iterables
0f06bcd7 2793 self._exhaust()
8e5fecc8 2794 try:
0f06bcd7 2795 return self._cache[idx]
8e5fecc8 2796 except IndexError as e:
2797 raise self.IndexError(e) from e
0f06bcd7 2798 n = max(start or 0, stop or 0) - len(self._cache) + 1
28419ca2 2799 if n > 0:
0f06bcd7 2800 self._cache.extend(itertools.islice(self._iterable, n))
8e5fecc8 2801 try:
0f06bcd7 2802 return self._cache[idx]
8e5fecc8 2803 except IndexError as e:
2804 raise self.IndexError(e) from e
483336e7 2805
2806 def __bool__(self):
2807 try:
0f06bcd7 2808 self[-1] if self._reversed else self[0]
8e5fecc8 2809 except self.IndexError:
483336e7 2810 return False
2811 return True
2812
2813 def __len__(self):
0f06bcd7 2814 self._exhaust()
2815 return len(self._cache)
483336e7 2816
282f5709 2817 def __reversed__(self):
0f06bcd7 2818 return type(self)(self._iterable, reverse=not self._reversed, _cache=self._cache)
282f5709 2819
2820 def __copy__(self):
0f06bcd7 2821 return type(self)(self._iterable, reverse=self._reversed, _cache=self._cache)
282f5709 2822
28419ca2 2823 def __repr__(self):
2824 # repr and str should mimic a list. So we exhaust the iterable
2825 return repr(self.exhaust())
2826
2827 def __str__(self):
2828 return repr(self.exhaust())
2829
483336e7 2830
7be9ccff 2831class PagedList:
c07a39ae 2832
2833 class IndexError(IndexError):
2834 pass
2835
dd26ced1
PH
2836 def __len__(self):
2837 # This is only useful for tests
2838 return len(self.getslice())
2839
7be9ccff 2840 def __init__(self, pagefunc, pagesize, use_cache=True):
2841 self._pagefunc = pagefunc
2842 self._pagesize = pagesize
f1d13090 2843 self._pagecount = float('inf')
7be9ccff 2844 self._use_cache = use_cache
2845 self._cache = {}
2846
2847 def getpage(self, pagenum):
d8cf8d97 2848 page_results = self._cache.get(pagenum)
2849 if page_results is None:
f1d13090 2850 page_results = [] if pagenum > self._pagecount else list(self._pagefunc(pagenum))
7be9ccff 2851 if self._use_cache:
2852 self._cache[pagenum] = page_results
2853 return page_results
2854
2855 def getslice(self, start=0, end=None):
2856 return list(self._getslice(start, end))
2857
2858 def _getslice(self, start, end):
55575225 2859 raise NotImplementedError('This method must be implemented by subclasses')
2860
2861 def __getitem__(self, idx):
f1d13090 2862 assert self._use_cache, 'Indexing PagedList requires cache'
55575225 2863 if not isinstance(idx, int) or idx < 0:
2864 raise TypeError('indices must be non-negative integers')
2865 entries = self.getslice(idx, idx + 1)
d8cf8d97 2866 if not entries:
c07a39ae 2867 raise self.IndexError()
d8cf8d97 2868 return entries[0]
55575225 2869
9c44d242
PH
2870
2871class OnDemandPagedList(PagedList):
a44ca5a4 2872 """Download pages until a page with less than maximum results"""
86e5f3ed 2873
7be9ccff 2874 def _getslice(self, start, end):
b7ab0590
PH
2875 for pagenum in itertools.count(start // self._pagesize):
2876 firstid = pagenum * self._pagesize
2877 nextfirstid = pagenum * self._pagesize + self._pagesize
2878 if start >= nextfirstid:
2879 continue
2880
b7ab0590
PH
2881 startv = (
2882 start % self._pagesize
2883 if firstid <= start < nextfirstid
2884 else 0)
b7ab0590
PH
2885 endv = (
2886 ((end - 1) % self._pagesize) + 1
2887 if (end is not None and firstid <= end <= nextfirstid)
2888 else None)
2889
f1d13090 2890 try:
2891 page_results = self.getpage(pagenum)
2892 except Exception:
2893 self._pagecount = pagenum - 1
2894 raise
b7ab0590
PH
2895 if startv != 0 or endv is not None:
2896 page_results = page_results[startv:endv]
7be9ccff 2897 yield from page_results
b7ab0590
PH
2898
2899 # A little optimization - if current page is not "full", ie. does
2900 # not contain page_size videos then we can assume that this page
2901 # is the last one - there are no more ids on further pages -
2902 # i.e. no need to query again.
2903 if len(page_results) + startv < self._pagesize:
2904 break
2905
2906 # If we got the whole page, but the next page is not interesting,
2907 # break out early as well
2908 if end == nextfirstid:
2909 break
81c2f20b
PH
2910
2911
9c44d242 2912class InAdvancePagedList(PagedList):
a44ca5a4 2913 """PagedList with total number of pages known in advance"""
86e5f3ed 2914
9c44d242 2915 def __init__(self, pagefunc, pagecount, pagesize):
7be9ccff 2916 PagedList.__init__(self, pagefunc, pagesize, True)
f1d13090 2917 self._pagecount = pagecount
9c44d242 2918
7be9ccff 2919 def _getslice(self, start, end):
9c44d242 2920 start_page = start // self._pagesize
d37707bd 2921 end_page = self._pagecount if end is None else min(self._pagecount, end // self._pagesize + 1)
9c44d242
PH
2922 skip_elems = start - start_page * self._pagesize
2923 only_more = None if end is None else end - start
2924 for pagenum in range(start_page, end_page):
7be9ccff 2925 page_results = self.getpage(pagenum)
9c44d242 2926 if skip_elems:
7be9ccff 2927 page_results = page_results[skip_elems:]
9c44d242
PH
2928 skip_elems = None
2929 if only_more is not None:
7be9ccff 2930 if len(page_results) < only_more:
2931 only_more -= len(page_results)
9c44d242 2932 else:
7be9ccff 2933 yield from page_results[:only_more]
9c44d242 2934 break
7be9ccff 2935 yield from page_results
9c44d242
PH
2936
2937
7e88d7d7 2938class PlaylistEntries:
2939 MissingEntry = object()
2940 is_exhausted = False
2941
2942 def __init__(self, ydl, info_dict):
7e9a6125 2943 self.ydl = ydl
2944
2945 # _entries must be assigned now since infodict can change during iteration
2946 entries = info_dict.get('entries')
2947 if entries is None:
2948 raise EntryNotInPlaylist('There are no entries')
2949 elif isinstance(entries, list):
2950 self.is_exhausted = True
2951
2952 requested_entries = info_dict.get('requested_entries')
2953 self.is_incomplete = bool(requested_entries)
2954 if self.is_incomplete:
2955 assert self.is_exhausted
2956 self._entries = [self.MissingEntry] * max(requested_entries)
2957 for i, entry in zip(requested_entries, entries):
2958 self._entries[i - 1] = entry
2959 elif isinstance(entries, (list, PagedList, LazyList)):
2960 self._entries = entries
2961 else:
2962 self._entries = LazyList(entries)
7e88d7d7 2963
2964 PLAYLIST_ITEMS_RE = re.compile(r'''(?x)
2965 (?P<start>[+-]?\d+)?
2966 (?P<range>[:-]
2967 (?P<end>[+-]?\d+|inf(?:inite)?)?
2968 (?::(?P<step>[+-]?\d+))?
2969 )?''')
2970
2971 @classmethod
2972 def parse_playlist_items(cls, string):
2973 for segment in string.split(','):
2974 if not segment:
2975 raise ValueError('There is two or more consecutive commas')
2976 mobj = cls.PLAYLIST_ITEMS_RE.fullmatch(segment)
2977 if not mobj:
2978 raise ValueError(f'{segment!r} is not a valid specification')
2979 start, end, step, has_range = mobj.group('start', 'end', 'step', 'range')
2980 if int_or_none(step) == 0:
2981 raise ValueError(f'Step in {segment!r} cannot be zero')
2982 yield slice(int_or_none(start), float_or_none(end), int_or_none(step)) if has_range else int(start)
2983
2984 def get_requested_items(self):
2985 playlist_items = self.ydl.params.get('playlist_items')
2986 playlist_start = self.ydl.params.get('playliststart', 1)
2987 playlist_end = self.ydl.params.get('playlistend')
2988 # For backwards compatibility, interpret -1 as whole list
2989 if playlist_end in (-1, None):
2990 playlist_end = ''
2991 if not playlist_items:
2992 playlist_items = f'{playlist_start}:{playlist_end}'
2993 elif playlist_start != 1 or playlist_end:
2994 self.ydl.report_warning('Ignoring playliststart and playlistend because playlistitems was given', only_once=True)
2995
2996 for index in self.parse_playlist_items(playlist_items):
2997 for i, entry in self[index]:
2998 yield i, entry
1ac4fd80 2999 if not entry:
3000 continue
7e88d7d7 3001 try:
3002 # TODO: Add auto-generated fields
3003 self.ydl._match_entry(entry, incomplete=True, silent=True)
3004 except (ExistingVideoReached, RejectedVideoReached):
3005 return
3006
7e9a6125 3007 def get_full_count(self):
3008 if self.is_exhausted and not self.is_incomplete:
7e88d7d7 3009 return len(self)
3010 elif isinstance(self._entries, InAdvancePagedList):
3011 if self._entries._pagesize == 1:
3012 return self._entries._pagecount
3013
7e88d7d7 3014 @functools.cached_property
3015 def _getter(self):
3016 if isinstance(self._entries, list):
3017 def get_entry(i):
3018 try:
3019 entry = self._entries[i]
3020 except IndexError:
3021 entry = self.MissingEntry
3022 if not self.is_incomplete:
3023 raise self.IndexError()
3024 if entry is self.MissingEntry:
3025 raise EntryNotInPlaylist(f'Entry {i} cannot be found')
3026 return entry
3027 else:
3028 def get_entry(i):
3029 try:
3030 return type(self.ydl)._handle_extraction_exceptions(lambda _, i: self._entries[i])(self.ydl, i)
3031 except (LazyList.IndexError, PagedList.IndexError):
3032 raise self.IndexError()
3033 return get_entry
3034
3035 def __getitem__(self, idx):
3036 if isinstance(idx, int):
3037 idx = slice(idx, idx)
3038
3039 # NB: PlaylistEntries[1:10] => (0, 1, ... 9)
3040 step = 1 if idx.step is None else idx.step
3041 if idx.start is None:
3042 start = 0 if step > 0 else len(self) - 1
3043 else:
3044 start = idx.start - 1 if idx.start >= 0 else len(self) + idx.start
3045
3046 # NB: Do not call len(self) when idx == [:]
3047 if idx.stop is None:
3048 stop = 0 if step < 0 else float('inf')
3049 else:
3050 stop = idx.stop - 1 if idx.stop >= 0 else len(self) + idx.stop
3051 stop += [-1, 1][step > 0]
3052
3053 for i in frange(start, stop, step):
3054 if i < 0:
3055 continue
3056 try:
7e9a6125 3057 entry = self._getter(i)
3058 except self.IndexError:
3059 self.is_exhausted = True
3060 if step > 0:
7e88d7d7 3061 break
7e9a6125 3062 continue
7e88d7d7 3063 yield i + 1, entry
3064
3065 def __len__(self):
3066 return len(tuple(self[:]))
3067
3068 class IndexError(IndexError):
3069 pass
3070
3071
81c2f20b 3072def uppercase_escape(s):
676eb3f2 3073 unicode_escape = codecs.getdecoder('unicode_escape')
81c2f20b 3074 return re.sub(
a612753d 3075 r'\\U[0-9a-fA-F]{8}',
676eb3f2
PH
3076 lambda m: unicode_escape(m.group(0))[0],
3077 s)
0fe2ff78
YCH
3078
3079
3080def lowercase_escape(s):
3081 unicode_escape = codecs.getdecoder('unicode_escape')
3082 return re.sub(
3083 r'\\u[0-9a-fA-F]{4}',
3084 lambda m: unicode_escape(m.group(0))[0],
3085 s)
b53466e1 3086
d05cfe06
S
3087
3088def escape_rfc3986(s):
3089 """Escape non-ASCII characters as suggested by RFC 3986"""
f9934b96 3090 return urllib.parse.quote(s, b"%/;:@&=+$,!~*'()?#[]")
d05cfe06
S
3091
3092
3093def escape_url(url):
3094 """Escape URL as suggested by RFC 3986"""
14f25df2 3095 url_parsed = urllib.parse.urlparse(url)
d05cfe06 3096 return url_parsed._replace(
efbed08d 3097 netloc=url_parsed.netloc.encode('idna').decode('ascii'),
d05cfe06
S
3098 path=escape_rfc3986(url_parsed.path),
3099 params=escape_rfc3986(url_parsed.params),
3100 query=escape_rfc3986(url_parsed.query),
3101 fragment=escape_rfc3986(url_parsed.fragment)
3102 ).geturl()
3103
62e609ab 3104
96b9e9cf 3105def parse_qs(url, **kwargs):
3106 return urllib.parse.parse_qs(urllib.parse.urlparse(url).query, **kwargs)
4dfbf869 3107
3108
62e609ab
PH
3109def read_batch_urls(batch_fd):
3110 def fixup(url):
14f25df2 3111 if not isinstance(url, str):
62e609ab 3112 url = url.decode('utf-8', 'replace')
8c04f0be 3113 BOM_UTF8 = ('\xef\xbb\xbf', '\ufeff')
3114 for bom in BOM_UTF8:
3115 if url.startswith(bom):
3116 url = url[len(bom):]
3117 url = url.lstrip()
3118 if not url or url.startswith(('#', ';', ']')):
62e609ab 3119 return False
8c04f0be 3120 # "#" cannot be stripped out since it is part of the URI
962ffcf8 3121 # However, it can be safely stripped out if following a whitespace
8c04f0be 3122 return re.split(r'\s#', url, 1)[0].rstrip()
62e609ab
PH
3123
3124 with contextlib.closing(batch_fd) as fd:
3125 return [url for url in map(fixup, fd) if url]
b74fa8cd
JMF
3126
3127
3128def urlencode_postdata(*args, **kargs):
14f25df2 3129 return urllib.parse.urlencode(*args, **kargs).encode('ascii')
bcf89ce6
PH
3130
3131
38f9ef31 3132def update_url_query(url, query):
cacd9966
YCH
3133 if not query:
3134 return url
14f25df2 3135 parsed_url = urllib.parse.urlparse(url)
3136 qs = urllib.parse.parse_qs(parsed_url.query)
38f9ef31 3137 qs.update(query)
14f25df2 3138 return urllib.parse.urlunparse(parsed_url._replace(
3139 query=urllib.parse.urlencode(qs, True)))
16392824 3140
8e60dc75 3141
c043c246 3142def update_Request(req, url=None, data=None, headers=None, query=None):
ed0291d1 3143 req_headers = req.headers.copy()
c043c246 3144 req_headers.update(headers or {})
ed0291d1
S
3145 req_data = data or req.data
3146 req_url = update_url_query(url or req.get_full_url(), query)
95cf60e8
S
3147 req_get_method = req.get_method()
3148 if req_get_method == 'HEAD':
3149 req_type = HEADRequest
3150 elif req_get_method == 'PUT':
3151 req_type = PUTRequest
3152 else:
ac668111 3153 req_type = urllib.request.Request
ed0291d1
S
3154 new_req = req_type(
3155 req_url, data=req_data, headers=req_headers,
3156 origin_req_host=req.origin_req_host, unverifiable=req.unverifiable)
3157 if hasattr(req, 'timeout'):
3158 new_req.timeout = req.timeout
3159 return new_req
3160
3161
10c87c15 3162def _multipart_encode_impl(data, boundary):
0c265486
YCH
3163 content_type = 'multipart/form-data; boundary=%s' % boundary
3164
3165 out = b''
3166 for k, v in data.items():
3167 out += b'--' + boundary.encode('ascii') + b'\r\n'
14f25df2 3168 if isinstance(k, str):
0f06bcd7 3169 k = k.encode()
14f25df2 3170 if isinstance(v, str):
0f06bcd7 3171 v = v.encode()
0c265486
YCH
3172 # RFC 2047 requires non-ASCII field names to be encoded, while RFC 7578
3173 # suggests sending UTF-8 directly. Firefox sends UTF-8, too
b2ad479d 3174 content = b'Content-Disposition: form-data; name="' + k + b'"\r\n\r\n' + v + b'\r\n'
0c265486
YCH
3175 if boundary.encode('ascii') in content:
3176 raise ValueError('Boundary overlaps with data')
3177 out += content
3178
3179 out += b'--' + boundary.encode('ascii') + b'--\r\n'
3180
3181 return out, content_type
3182
3183
3184def multipart_encode(data, boundary=None):
3185 '''
3186 Encode a dict to RFC 7578-compliant form-data
3187
3188 data:
3189 A dict where keys and values can be either Unicode or bytes-like
3190 objects.
3191 boundary:
3192 If specified a Unicode object, it's used as the boundary. Otherwise
3193 a random boundary is generated.
3194
3195 Reference: https://tools.ietf.org/html/rfc7578
3196 '''
3197 has_specified_boundary = boundary is not None
3198
3199 while True:
3200 if boundary is None:
3201 boundary = '---------------' + str(random.randrange(0x0fffffff, 0xffffffff))
3202
3203 try:
10c87c15 3204 out, content_type = _multipart_encode_impl(data, boundary)
0c265486
YCH
3205 break
3206 except ValueError:
3207 if has_specified_boundary:
3208 raise
3209 boundary = None
3210
3211 return out, content_type
3212
3213
304ad45a 3214def variadic(x, allowed_types=(str, bytes, dict)):
3215 return x if isinstance(x, collections.abc.Iterable) and not isinstance(x, allowed_types) else (x,)
3216
3217
86296ad2 3218def dict_get(d, key_or_keys, default=None, skip_false_values=True):
a44ca5a4 3219 for val in map(d.get, variadic(key_or_keys)):
3220 if val is not None and (val or not skip_false_values):
3221 return val
3222 return default
cbecc9b9
S
3223
3224
c4f60dd7 3225def try_call(*funcs, expected_type=None, args=[], kwargs={}):
3226 for f in funcs:
a32a9a7e 3227 try:
c4f60dd7 3228 val = f(*args, **kwargs)
ab029d7e 3229 except (AttributeError, KeyError, TypeError, IndexError, ValueError, ZeroDivisionError):
a32a9a7e
S
3230 pass
3231 else:
c4f60dd7 3232 if expected_type is None or isinstance(val, expected_type):
3233 return val
3234
3235
3236def try_get(src, getter, expected_type=None):
3237 return try_call(*variadic(getter), args=(src,), expected_type=expected_type)
329ca3be
S
3238
3239
90137ca4 3240def filter_dict(dct, cndn=lambda _, v: v is not None):
3241 return {k: v for k, v in dct.items() if cndn(k, v)}
3242
3243
6cc62232
S
3244def merge_dicts(*dicts):
3245 merged = {}
3246 for a_dict in dicts:
3247 for k, v in a_dict.items():
90137ca4 3248 if (v is not None and k not in merged
3249 or isinstance(v, str) and merged[k] == ''):
6cc62232
S
3250 merged[k] = v
3251 return merged
3252
3253
8e60dc75 3254def encode_compat_str(string, encoding=preferredencoding(), errors='strict'):
14f25df2 3255 return string if isinstance(string, str) else str(string, encoding, errors)
8e60dc75 3256
16392824 3257
a1a530b0
PH
3258US_RATINGS = {
3259 'G': 0,
3260 'PG': 10,
3261 'PG-13': 13,
3262 'R': 16,
3263 'NC': 18,
3264}
fac55558
PH
3265
3266
a8795327 3267TV_PARENTAL_GUIDELINES = {
5a16c9d9
RA
3268 'TV-Y': 0,
3269 'TV-Y7': 7,
3270 'TV-G': 0,
3271 'TV-PG': 0,
3272 'TV-14': 14,
3273 'TV-MA': 17,
a8795327
S
3274}
3275
3276
146c80e2 3277def parse_age_limit(s):
19a03940 3278 # isinstance(False, int) is True. So type() must be used instead
c487cf00 3279 if type(s) is int: # noqa: E721
a8795327 3280 return s if 0 <= s <= 21 else None
19a03940 3281 elif not isinstance(s, str):
d838b1bd 3282 return None
146c80e2 3283 m = re.match(r'^(?P<age>\d{1,2})\+?$', s)
a8795327
S
3284 if m:
3285 return int(m.group('age'))
5c5fae6d 3286 s = s.upper()
a8795327
S
3287 if s in US_RATINGS:
3288 return US_RATINGS[s]
5a16c9d9 3289 m = re.match(r'^TV[_-]?(%s)$' % '|'.join(k[3:] for k in TV_PARENTAL_GUIDELINES), s)
b8361187 3290 if m:
5a16c9d9 3291 return TV_PARENTAL_GUIDELINES['TV-' + m.group(1)]
b8361187 3292 return None
146c80e2
S
3293
3294
fac55558 3295def strip_jsonp(code):
609a61e3 3296 return re.sub(
5552c9eb 3297 r'''(?sx)^
e9c671d5 3298 (?:window\.)?(?P<func_name>[a-zA-Z0-9_.$]*)
5552c9eb
YCH
3299 (?:\s*&&\s*(?P=func_name))?
3300 \s*\(\s*(?P<callback_data>.*)\);?
3301 \s*?(?://[^\n]*)*$''',
3302 r'\g<callback_data>', code)
478c2c61
PH
3303
3304
8f53dc44 3305def js_to_json(code, vars={}, *, strict=False):
5c610515 3306 # vars is a dict of var, val pairs to substitute
a71b812f
SS
3307 STRING_QUOTES = '\'"'
3308 STRING_RE = '|'.join(rf'{q}(?:\\.|[^\\{q}])*{q}' for q in STRING_QUOTES)
c843e685 3309 COMMENT_RE = r'/\*(?:(?!\*/).)*?\*/|//[^\n]*\n'
86e5f3ed 3310 SKIP_RE = fr'\s*(?:{COMMENT_RE})?\s*'
4195096e 3311 INTEGER_TABLE = (
86e5f3ed 3312 (fr'(?s)^(0[xX][0-9a-fA-F]+){SKIP_RE}:?$', 16),
3313 (fr'(?s)^(0+[0-7]+){SKIP_RE}:?$', 8),
4195096e
S
3314 )
3315
a71b812f
SS
3316 def process_escape(match):
3317 JSON_PASSTHROUGH_ESCAPES = R'"\bfnrtu'
3318 escape = match.group(1) or match.group(2)
3319
3320 return (Rf'\{escape}' if escape in JSON_PASSTHROUGH_ESCAPES
3321 else R'\u00' if escape == 'x'
3322 else '' if escape == '\n'
3323 else escape)
3324
e05f6939 3325 def fix_kv(m):
e7b6d122
PH
3326 v = m.group(0)
3327 if v in ('true', 'false', 'null'):
3328 return v
421ddcb8
C
3329 elif v in ('undefined', 'void 0'):
3330 return 'null'
8bdd16b4 3331 elif v.startswith('/*') or v.startswith('//') or v.startswith('!') or v == ',':
a71b812f
SS
3332 return ''
3333
3334 if v[0] in STRING_QUOTES:
3335 escaped = re.sub(r'(?s)(")|\\(.)', process_escape, v[1:-1])
3336 return f'"{escaped}"'
3337
3338 for regex, base in INTEGER_TABLE:
3339 im = re.match(regex, v)
3340 if im:
3341 i = int(im.group(1), base)
3342 return f'"{i}":' if v.endswith(':') else str(i)
3343
3344 if v in vars:
3345 return json.dumps(vars[v])
89ac4a19 3346
a71b812f
SS
3347 if not strict:
3348 return f'"{v}"'
5c610515 3349
a71b812f 3350 raise ValueError(f'Unknown value: {v}')
e05f6939 3351
8072ef2b 3352 def create_map(mobj):
3353 return json.dumps(dict(json.loads(js_to_json(mobj.group(1) or '[]', vars=vars))))
3354
8072ef2b 3355 code = re.sub(r'new Map\((\[.*?\])?\)', create_map, code)
8f53dc44 3356 if not strict:
3357 code = re.sub(r'new Date\((".+")\)', r'\g<1>', code)
f55523cf 3358 code = re.sub(r'new \w+\((.*?)\)', lambda m: json.dumps(m.group(0)), code)
febff4c1 3359
a71b812f
SS
3360 return re.sub(rf'''(?sx)
3361 {STRING_RE}|
3362 {COMMENT_RE}|,(?={SKIP_RE}[\]}}])|
421ddcb8 3363 void\s0|(?:(?<![0-9])[eE]|[a-df-zA-DF-Z_$])[.a-zA-Z_$0-9]*|
a71b812f
SS
3364 \b(?:0[xX][0-9a-fA-F]+|0+[0-7]+)(?:{SKIP_RE}:)?|
3365 [0-9]+(?={SKIP_RE}:)|
8bdd16b4 3366 !+
a71b812f 3367 ''', fix_kv, code)
e05f6939
PH
3368
3369
478c2c61
PH
3370def qualities(quality_ids):
3371 """ Get a numeric quality value out of a list of possible values """
3372 def q(qid):
3373 try:
3374 return quality_ids.index(qid)
3375 except ValueError:
3376 return -1
3377 return q
3378
acd69589 3379
8aa0e7cd 3380POSTPROCESS_WHEN = ('pre_process', 'after_filter', 'before_dl', 'post_process', 'after_move', 'after_video', 'playlist')
1e43a6f7 3381
3382
de6000d9 3383DEFAULT_OUTTMPL = {
3384 'default': '%(title)s [%(id)s].%(ext)s',
72755351 3385 'chapter': '%(title)s - %(section_number)03d %(section_title)s [%(id)s].%(ext)s',
de6000d9 3386}
3387OUTTMPL_TYPES = {
72755351 3388 'chapter': None,
de6000d9 3389 'subtitle': None,
3390 'thumbnail': None,
3391 'description': 'description',
3392 'annotation': 'annotations.xml',
3393 'infojson': 'info.json',
08438d2c 3394 'link': None,
3b603dbd 3395 'pl_video': None,
5112f26a 3396 'pl_thumbnail': None,
de6000d9 3397 'pl_description': 'description',
3398 'pl_infojson': 'info.json',
3399}
0a871f68 3400
143db31d 3401# As of [1] format syntax is:
3402# %[mapping_key][conversion_flags][minimum_width][.precision][length_modifier]type
3403# 1. https://docs.python.org/2/library/stdtypes.html#string-formatting
901130bb 3404STR_FORMAT_RE_TMPL = r'''(?x)
3405 (?<!%)(?P<prefix>(?:%%)*)
143db31d 3406 %
524e2e4f 3407 (?P<has_key>\((?P<key>{0})\))?
752cda38 3408 (?P<format>
524e2e4f 3409 (?P<conversion>[#0\-+ ]+)?
3410 (?P<min_width>\d+)?
3411 (?P<precision>\.\d+)?
3412 (?P<len_mod>[hlL])? # unused in python
901130bb 3413 {1} # conversion type
752cda38 3414 )
143db31d 3415'''
3416
7d1eb38a 3417
901130bb 3418STR_FORMAT_TYPES = 'diouxXeEfFgGcrs'
a020a0dc 3419
7d1eb38a 3420
a020a0dc
PH
3421def limit_length(s, length):
3422 """ Add ellipses to overly long strings """
3423 if s is None:
3424 return None
3425 ELLIPSES = '...'
3426 if len(s) > length:
3427 return s[:length - len(ELLIPSES)] + ELLIPSES
3428 return s
48844745
PH
3429
3430
3431def version_tuple(v):
5f9b8394 3432 return tuple(int(e) for e in re.split(r'[-.]', v))
48844745
PH
3433
3434
3435def is_outdated_version(version, limit, assume_new=True):
3436 if not version:
3437 return not assume_new
3438 try:
3439 return version_tuple(version) < version_tuple(limit)
3440 except ValueError:
3441 return not assume_new
732ea2f0
PH
3442
3443
3444def ytdl_is_updateable():
7a5c1cfe 3445 """ Returns if yt-dlp can be updated with -U """
735d865e 3446
5d535b4a 3447 from .update import is_non_updateable
732ea2f0 3448
5d535b4a 3449 return not is_non_updateable()
7d4111ed
PH
3450
3451
3452def args_to_str(args):
3453 # Get a short string representation for a subprocess command
702ccf2d 3454 return ' '.join(compat_shlex_quote(a) for a in args)
2ccd1b10
PH
3455
3456
9b9c5355 3457def error_to_compat_str(err):
cfb0511d 3458 return str(err)
fdae2358
S
3459
3460
a44ca5a4 3461def error_to_str(err):
3462 return f'{type(err).__name__}: {err}'
3463
3464
c460bdd5 3465def mimetype2ext(mt):
eb9ee194
S
3466 if mt is None:
3467 return None
3468
9359f3d4
F
3469 mt, _, params = mt.partition(';')
3470 mt = mt.strip()
3471
3472 FULL_MAP = {
765ac263 3473 'audio/mp4': 'm4a',
6c33d24b
YCH
3474 # Per RFC 3003, audio/mpeg can be .mp1, .mp2 or .mp3. Here use .mp3 as
3475 # it's the most popular one
3476 'audio/mpeg': 'mp3',
ba39289d 3477 'audio/x-wav': 'wav',
9359f3d4
F
3478 'audio/wav': 'wav',
3479 'audio/wave': 'wav',
3480 }
3481
3482 ext = FULL_MAP.get(mt)
765ac263
JMF
3483 if ext is not None:
3484 return ext
3485
9359f3d4 3486 SUBTYPE_MAP = {
f6861ec9 3487 '3gpp': '3gp',
cafcf657 3488 'smptett+xml': 'tt',
cafcf657 3489 'ttaf+xml': 'dfxp',
a0d8d704 3490 'ttml+xml': 'ttml',
f6861ec9 3491 'x-flv': 'flv',
a0d8d704 3492 'x-mp4-fragmented': 'mp4',
d4f05d47 3493 'x-ms-sami': 'sami',
a0d8d704 3494 'x-ms-wmv': 'wmv',
b4173f15
RA
3495 'mpegurl': 'm3u8',
3496 'x-mpegurl': 'm3u8',
3497 'vnd.apple.mpegurl': 'm3u8',
3498 'dash+xml': 'mpd',
b4173f15 3499 'f4m+xml': 'f4m',
f164b971 3500 'hds+xml': 'f4m',
e910fe2f 3501 'vnd.ms-sstr+xml': 'ism',
c2b2c7e1 3502 'quicktime': 'mov',
98ce1a3f 3503 'mp2t': 'ts',
39e7107d 3504 'x-wav': 'wav',
9359f3d4
F
3505 'filmstrip+json': 'fs',
3506 'svg+xml': 'svg',
3507 }
3508
3509 _, _, subtype = mt.rpartition('/')
3510 ext = SUBTYPE_MAP.get(subtype.lower())
3511 if ext is not None:
3512 return ext
3513
3514 SUFFIX_MAP = {
3515 'json': 'json',
3516 'xml': 'xml',
3517 'zip': 'zip',
3518 'gzip': 'gz',
3519 }
3520
3521 _, _, suffix = subtype.partition('+')
3522 ext = SUFFIX_MAP.get(suffix)
3523 if ext is not None:
3524 return ext
3525
3526 return subtype.replace('+', '.')
c460bdd5
PH
3527
3528
2814f12b
THD
3529def ext2mimetype(ext_or_url):
3530 if not ext_or_url:
3531 return None
3532 if '.' not in ext_or_url:
3533 ext_or_url = f'file.{ext_or_url}'
3534 return mimetypes.guess_type(ext_or_url)[0]
3535
3536
4f3c5e06 3537def parse_codecs(codecs_str):
3538 # http://tools.ietf.org/html/rfc6381
3539 if not codecs_str:
3540 return {}
a0566bbf 3541 split_codecs = list(filter(None, map(
dbf5416a 3542 str.strip, codecs_str.strip().strip(',').split(','))))
3fe75fdc 3543 vcodec, acodec, scodec, hdr = None, None, None, None
a0566bbf 3544 for full_codec in split_codecs:
d816f61f 3545 parts = re.sub(r'0+(?=\d)', '', full_codec).split('.')
3546 if parts[0] in ('avc1', 'avc2', 'avc3', 'avc4', 'vp9', 'vp8', 'hev1', 'hev2',
3547 'h263', 'h264', 'mp4v', 'hvc1', 'av1', 'theora', 'dvh1', 'dvhe'):
3548 if vcodec:
3549 continue
3550 vcodec = full_codec
3551 if parts[0] in ('dvh1', 'dvhe'):
3552 hdr = 'DV'
3553 elif parts[0] == 'av1' and traverse_obj(parts, 3) == '10':
3554 hdr = 'HDR10'
3555 elif parts[:2] == ['vp9', '2']:
3556 hdr = 'HDR10'
3557 elif parts[0] in ('flac', 'mp4a', 'opus', 'vorbis', 'mp3', 'aac',
3558 'ac-3', 'ec-3', 'eac3', 'dtsc', 'dtse', 'dtsh', 'dtsl'):
3559 acodec = acodec or full_codec
3560 elif parts[0] in ('stpp', 'wvtt'):
3561 scodec = scodec or full_codec
4f3c5e06 3562 else:
19a03940 3563 write_string(f'WARNING: Unknown codec {full_codec}\n')
3fe75fdc 3564 if vcodec or acodec or scodec:
4f3c5e06 3565 return {
3566 'vcodec': vcodec or 'none',
3567 'acodec': acodec or 'none',
176f1866 3568 'dynamic_range': hdr,
3fe75fdc 3569 **({'scodec': scodec} if scodec is not None else {}),
4f3c5e06 3570 }
b69fd25c 3571 elif len(split_codecs) == 2:
3572 return {
3573 'vcodec': split_codecs[0],
3574 'acodec': split_codecs[1],
3575 }
4f3c5e06 3576 return {}
3577
3578
fc61aff4
LL
3579def get_compatible_ext(*, vcodecs, acodecs, vexts, aexts, preferences=None):
3580 assert len(vcodecs) == len(vexts) and len(acodecs) == len(aexts)
3581
3582 allow_mkv = not preferences or 'mkv' in preferences
3583
3584 if allow_mkv and max(len(acodecs), len(vcodecs)) > 1:
3585 return 'mkv' # TODO: any other format allows this?
3586
3587 # TODO: All codecs supported by parse_codecs isn't handled here
3588 COMPATIBLE_CODECS = {
3589 'mp4': {
3590 'av1', 'hevc', 'avc1', 'mp4a', # fourcc (m3u8, mpd)
81b6102d 3591 'h264', 'aacl', 'ec-3', # Set in ISM
fc61aff4
LL
3592 },
3593 'webm': {
3594 'av1', 'vp9', 'vp8', 'opus', 'vrbs',
3595 'vp9x', 'vp8x', # in the webm spec
3596 },
3597 }
3598
8f84770a 3599 sanitize_codec = functools.partial(try_get, getter=lambda x: x[0].split('.')[0].replace('0', ''))
3600 vcodec, acodec = sanitize_codec(vcodecs), sanitize_codec(acodecs)
fc61aff4
LL
3601
3602 for ext in preferences or COMPATIBLE_CODECS.keys():
3603 codec_set = COMPATIBLE_CODECS.get(ext, set())
3604 if ext == 'mkv' or codec_set.issuperset((vcodec, acodec)):
3605 return ext
3606
3607 COMPATIBLE_EXTS = (
3608 {'mp3', 'mp4', 'm4a', 'm4p', 'm4b', 'm4r', 'm4v', 'ismv', 'isma', 'mov'},
3609 {'webm'},
3610 )
3611 for ext in preferences or vexts:
3612 current_exts = {ext, *vexts, *aexts}
3613 if ext == 'mkv' or current_exts == {ext} or any(
3614 ext_sets.issuperset(current_exts) for ext_sets in COMPATIBLE_EXTS):
3615 return ext
3616 return 'mkv' if allow_mkv else preferences[-1]
3617
3618
2ccd1b10 3619def urlhandle_detect_ext(url_handle):
79298173 3620 getheader = url_handle.headers.get
2ccd1b10 3621
b55ee18f
PH
3622 cd = getheader('Content-Disposition')
3623 if cd:
3624 m = re.match(r'attachment;\s*filename="(?P<filename>[^"]+)"', cd)
3625 if m:
3626 e = determine_ext(m.group('filename'), default_ext=None)
3627 if e:
3628 return e
3629
c460bdd5 3630 return mimetype2ext(getheader('Content-Type'))
05900629
PH
3631
3632
1e399778
YCH
3633def encode_data_uri(data, mime_type):
3634 return 'data:%s;base64,%s' % (mime_type, base64.b64encode(data).decode('ascii'))
3635
3636
05900629 3637def age_restricted(content_limit, age_limit):
6ec6cb4e 3638 """ Returns True iff the content should be blocked """
05900629
PH
3639
3640 if age_limit is None: # No limit set
3641 return False
3642 if content_limit is None:
3643 return False # Content available for everyone
3644 return age_limit < content_limit
61ca9a80
PH
3645
3646
88f60feb 3647# List of known byte-order-marks (BOM)
a904a7f8
L
3648BOMS = [
3649 (b'\xef\xbb\xbf', 'utf-8'),
3650 (b'\x00\x00\xfe\xff', 'utf-32-be'),
3651 (b'\xff\xfe\x00\x00', 'utf-32-le'),
3652 (b'\xff\xfe', 'utf-16-le'),
3653 (b'\xfe\xff', 'utf-16-be'),
3654]
a904a7f8
L
3655
3656
61ca9a80
PH
3657def is_html(first_bytes):
3658 """ Detect whether a file contains HTML by examining its first bytes. """
3659
80e8493e 3660 encoding = 'utf-8'
61ca9a80 3661 for bom, enc in BOMS:
80e8493e 3662 while first_bytes.startswith(bom):
3663 encoding, first_bytes = enc, first_bytes[len(bom):]
61ca9a80 3664
80e8493e 3665 return re.match(r'^\s*<', first_bytes.decode(encoding, 'replace'))
a055469f
PH
3666
3667
3668def determine_protocol(info_dict):
3669 protocol = info_dict.get('protocol')
3670 if protocol is not None:
3671 return protocol
3672
7de837a5 3673 url = sanitize_url(info_dict['url'])
a055469f
PH
3674 if url.startswith('rtmp'):
3675 return 'rtmp'
3676 elif url.startswith('mms'):
3677 return 'mms'
3678 elif url.startswith('rtsp'):
3679 return 'rtsp'
3680
3681 ext = determine_ext(url)
3682 if ext == 'm3u8':
deae7c17 3683 return 'm3u8' if info_dict.get('is_live') else 'm3u8_native'
a055469f
PH
3684 elif ext == 'f4m':
3685 return 'f4m'
3686
14f25df2 3687 return urllib.parse.urlparse(url).scheme
cfb56d1a
PH
3688
3689
c5e3f849 3690def render_table(header_row, data, delim=False, extra_gap=0, hide_empty=False):
3691 """ Render a list of rows, each as a list of values.
3692 Text after a \t will be right aligned """
ec11a9f4 3693 def width(string):
c5e3f849 3694 return len(remove_terminal_sequences(string).replace('\t', ''))
76d321f6 3695
3696 def get_max_lens(table):
ec11a9f4 3697 return [max(width(str(v)) for v in col) for col in zip(*table)]
76d321f6 3698
3699 def filter_using_list(row, filterArray):
d16df59d 3700 return [col for take, col in itertools.zip_longest(filterArray, row, fillvalue=True) if take]
76d321f6 3701
d16df59d 3702 max_lens = get_max_lens(data) if hide_empty else []
3703 header_row = filter_using_list(header_row, max_lens)
3704 data = [filter_using_list(row, max_lens) for row in data]
76d321f6 3705
cfb56d1a 3706 table = [header_row] + data
76d321f6 3707 max_lens = get_max_lens(table)
c5e3f849 3708 extra_gap += 1
76d321f6 3709 if delim:
c5e3f849 3710 table = [header_row, [delim * (ml + extra_gap) for ml in max_lens]] + data
1ed7953a 3711 table[1][-1] = table[1][-1][:-extra_gap * len(delim)] # Remove extra_gap from end of delimiter
ec11a9f4 3712 for row in table:
3713 for pos, text in enumerate(map(str, row)):
c5e3f849 3714 if '\t' in text:
3715 row[pos] = text.replace('\t', ' ' * (max_lens[pos] - width(text))) + ' ' * extra_gap
3716 else:
3717 row[pos] = text + ' ' * (max_lens[pos] - width(text) + extra_gap)
3718 ret = '\n'.join(''.join(row).rstrip() for row in table)
ec11a9f4 3719 return ret
347de493
PH
3720
3721
8f18aca8 3722def _match_one(filter_part, dct, incomplete):
77b87f05 3723 # TODO: Generalize code with YoutubeDL._build_format_filter
a047eeb6 3724 STRING_OPERATORS = {
3725 '*=': operator.contains,
3726 '^=': lambda attr, value: attr.startswith(value),
3727 '$=': lambda attr, value: attr.endswith(value),
3728 '~=': lambda attr, value: re.search(value, attr),
3729 }
347de493 3730 COMPARISON_OPERATORS = {
a047eeb6 3731 **STRING_OPERATORS,
3732 '<=': operator.le, # "<=" must be defined above "<"
347de493 3733 '<': operator.lt,
347de493 3734 '>=': operator.ge,
a047eeb6 3735 '>': operator.gt,
347de493 3736 '=': operator.eq,
347de493 3737 }
a047eeb6 3738
6db9c4d5 3739 if isinstance(incomplete, bool):
3740 is_incomplete = lambda _: incomplete
3741 else:
3742 is_incomplete = lambda k: k in incomplete
3743
64fa820c 3744 operator_rex = re.compile(r'''(?x)
347de493 3745 (?P<key>[a-z_]+)
77b87f05 3746 \s*(?P<negation>!\s*)?(?P<op>%s)(?P<none_inclusive>\s*\?)?\s*
347de493 3747 (?:
a047eeb6 3748 (?P<quote>["\'])(?P<quotedstrval>.+?)(?P=quote)|
3749 (?P<strval>.+?)
347de493 3750 )
347de493 3751 ''' % '|'.join(map(re.escape, COMPARISON_OPERATORS.keys())))
64fa820c 3752 m = operator_rex.fullmatch(filter_part.strip())
347de493 3753 if m:
18f96d12 3754 m = m.groupdict()
3755 unnegated_op = COMPARISON_OPERATORS[m['op']]
3756 if m['negation']:
77b87f05
MT
3757 op = lambda attr, value: not unnegated_op(attr, value)
3758 else:
3759 op = unnegated_op
18f96d12 3760 comparison_value = m['quotedstrval'] or m['strval'] or m['intval']
3761 if m['quote']:
3762 comparison_value = comparison_value.replace(r'\%s' % m['quote'], m['quote'])
3763 actual_value = dct.get(m['key'])
3764 numeric_comparison = None
f9934b96 3765 if isinstance(actual_value, (int, float)):
e5a088dc
S
3766 # If the original field is a string and matching comparisonvalue is
3767 # a number we should respect the origin of the original field
3768 # and process comparison value as a string (see
18f96d12 3769 # https://github.com/ytdl-org/youtube-dl/issues/11082)
347de493 3770 try:
18f96d12 3771 numeric_comparison = int(comparison_value)
347de493 3772 except ValueError:
18f96d12 3773 numeric_comparison = parse_filesize(comparison_value)
3774 if numeric_comparison is None:
3775 numeric_comparison = parse_filesize(f'{comparison_value}B')
3776 if numeric_comparison is None:
3777 numeric_comparison = parse_duration(comparison_value)
3778 if numeric_comparison is not None and m['op'] in STRING_OPERATORS:
3779 raise ValueError('Operator %s only supports string values!' % m['op'])
347de493 3780 if actual_value is None:
6db9c4d5 3781 return is_incomplete(m['key']) or m['none_inclusive']
18f96d12 3782 return op(actual_value, comparison_value if numeric_comparison is None else numeric_comparison)
347de493
PH
3783
3784 UNARY_OPERATORS = {
1cc47c66
S
3785 '': lambda v: (v is True) if isinstance(v, bool) else (v is not None),
3786 '!': lambda v: (v is False) if isinstance(v, bool) else (v is None),
347de493 3787 }
64fa820c 3788 operator_rex = re.compile(r'''(?x)
347de493 3789 (?P<op>%s)\s*(?P<key>[a-z_]+)
347de493 3790 ''' % '|'.join(map(re.escape, UNARY_OPERATORS.keys())))
64fa820c 3791 m = operator_rex.fullmatch(filter_part.strip())
347de493
PH
3792 if m:
3793 op = UNARY_OPERATORS[m.group('op')]
3794 actual_value = dct.get(m.group('key'))
6db9c4d5 3795 if is_incomplete(m.group('key')) and actual_value is None:
8f18aca8 3796 return True
347de493
PH
3797 return op(actual_value)
3798
3799 raise ValueError('Invalid filter part %r' % filter_part)
3800
3801
8f18aca8 3802def match_str(filter_str, dct, incomplete=False):
6db9c4d5 3803 """ Filter a dictionary with a simple string syntax.
3804 @returns Whether the filter passes
3805 @param incomplete Set of keys that is expected to be missing from dct.
3806 Can be True/False to indicate all/none of the keys may be missing.
3807 All conditions on incomplete keys pass if the key is missing
8f18aca8 3808 """
347de493 3809 return all(
8f18aca8 3810 _match_one(filter_part.replace(r'\&', '&'), dct, incomplete)
a047eeb6 3811 for filter_part in re.split(r'(?<!\\)&', filter_str))
347de493
PH
3812
3813
b1a7cd05 3814def match_filter_func(filters):
3815 if not filters:
d1b5f70b 3816 return None
492272fe 3817 filters = set(variadic(filters))
d1b5f70b 3818
492272fe 3819 interactive = '-' in filters
3820 if interactive:
3821 filters.remove('-')
3822
3823 def _match_func(info_dict, incomplete=False):
3824 if not filters or any(match_str(f, info_dict, incomplete) for f in filters):
3825 return NO_DEFAULT if interactive and not incomplete else None
347de493 3826 else:
3bec830a 3827 video_title = info_dict.get('title') or info_dict.get('id') or 'entry'
b1a7cd05 3828 filter_str = ') | ('.join(map(str.strip, filters))
3829 return f'{video_title} does not pass filter ({filter_str}), skipping ..'
347de493 3830 return _match_func
91410c9b
PH
3831
3832
f2df4071 3833class download_range_func:
3834 def __init__(self, chapters, ranges):
3835 self.chapters, self.ranges = chapters, ranges
3836
3837 def __call__(self, info_dict, ydl):
0500ee3d 3838 if not self.ranges and not self.chapters:
3839 yield {}
3840
5ec1b6b7 3841 warning = ('There are no chapters matching the regex' if info_dict.get('chapters')
56ba69e4 3842 else 'Cannot match chapters since chapter information is unavailable')
f2df4071 3843 for regex in self.chapters or []:
5ec1b6b7 3844 for i, chapter in enumerate(info_dict.get('chapters') or []):
3845 if re.search(regex, chapter['title']):
3846 warning = None
3847 yield {**chapter, 'index': i}
f2df4071 3848 if self.chapters and warning:
5ec1b6b7 3849 ydl.to_screen(f'[info] {info_dict["id"]}: {warning}')
3850
f2df4071 3851 yield from ({'start_time': start, 'end_time': end} for start, end in self.ranges or [])
5ec1b6b7 3852
f2df4071 3853 def __eq__(self, other):
3854 return (isinstance(other, download_range_func)
3855 and self.chapters == other.chapters and self.ranges == other.ranges)
5ec1b6b7 3856
3857
bf6427d2
YCH
3858def parse_dfxp_time_expr(time_expr):
3859 if not time_expr:
d631d5f9 3860 return
bf6427d2 3861
1d485a1a 3862 mobj = re.match(rf'^(?P<time_offset>{NUMBER_RE})s?$', time_expr)
bf6427d2
YCH
3863 if mobj:
3864 return float(mobj.group('time_offset'))
3865
db2fe38b 3866 mobj = re.match(r'^(\d+):(\d\d):(\d\d(?:(?:\.|:)\d+)?)$', time_expr)
bf6427d2 3867 if mobj:
db2fe38b 3868 return 3600 * int(mobj.group(1)) + 60 * int(mobj.group(2)) + float(mobj.group(3).replace(':', '.'))
bf6427d2
YCH
3869
3870
c1c924ab 3871def srt_subtitles_timecode(seconds):
aa7785f8 3872 return '%02d:%02d:%02d,%03d' % timetuple_from_msec(seconds * 1000)
3873
3874
3875def ass_subtitles_timecode(seconds):
3876 time = timetuple_from_msec(seconds * 1000)
3877 return '%01d:%02d:%02d.%02d' % (*time[:-1], time.milliseconds / 10)
bf6427d2
YCH
3878
3879
3880def dfxp2srt(dfxp_data):
3869028f
YCH
3881 '''
3882 @param dfxp_data A bytes-like object containing DFXP data
3883 @returns A unicode object containing converted SRT data
3884 '''
5b995f71 3885 LEGACY_NAMESPACES = (
3869028f
YCH
3886 (b'http://www.w3.org/ns/ttml', [
3887 b'http://www.w3.org/2004/11/ttaf1',
3888 b'http://www.w3.org/2006/04/ttaf1',
3889 b'http://www.w3.org/2006/10/ttaf1',
5b995f71 3890 ]),
3869028f
YCH
3891 (b'http://www.w3.org/ns/ttml#styling', [
3892 b'http://www.w3.org/ns/ttml#style',
5b995f71
RA
3893 ]),
3894 )
3895
3896 SUPPORTED_STYLING = [
3897 'color',
3898 'fontFamily',
3899 'fontSize',
3900 'fontStyle',
3901 'fontWeight',
3902 'textDecoration'
3903 ]
3904
4e335771 3905 _x = functools.partial(xpath_with_ns, ns_map={
261f4730 3906 'xml': 'http://www.w3.org/XML/1998/namespace',
4e335771 3907 'ttml': 'http://www.w3.org/ns/ttml',
5b995f71 3908 'tts': 'http://www.w3.org/ns/ttml#styling',
4e335771 3909 })
bf6427d2 3910
5b995f71
RA
3911 styles = {}
3912 default_style = {}
3913
86e5f3ed 3914 class TTMLPElementParser:
5b995f71
RA
3915 _out = ''
3916 _unclosed_elements = []
3917 _applied_styles = []
bf6427d2 3918
2b14cb56 3919 def start(self, tag, attrib):
5b995f71
RA
3920 if tag in (_x('ttml:br'), 'br'):
3921 self._out += '\n'
3922 else:
3923 unclosed_elements = []
3924 style = {}
3925 element_style_id = attrib.get('style')
3926 if default_style:
3927 style.update(default_style)
3928 if element_style_id:
3929 style.update(styles.get(element_style_id, {}))
3930 for prop in SUPPORTED_STYLING:
3931 prop_val = attrib.get(_x('tts:' + prop))
3932 if prop_val:
3933 style[prop] = prop_val
3934 if style:
3935 font = ''
3936 for k, v in sorted(style.items()):
3937 if self._applied_styles and self._applied_styles[-1].get(k) == v:
3938 continue
3939 if k == 'color':
3940 font += ' color="%s"' % v
3941 elif k == 'fontSize':
3942 font += ' size="%s"' % v
3943 elif k == 'fontFamily':
3944 font += ' face="%s"' % v
3945 elif k == 'fontWeight' and v == 'bold':
3946 self._out += '<b>'
3947 unclosed_elements.append('b')
3948 elif k == 'fontStyle' and v == 'italic':
3949 self._out += '<i>'
3950 unclosed_elements.append('i')
3951 elif k == 'textDecoration' and v == 'underline':
3952 self._out += '<u>'
3953 unclosed_elements.append('u')
3954 if font:
3955 self._out += '<font' + font + '>'
3956 unclosed_elements.append('font')
3957 applied_style = {}
3958 if self._applied_styles:
3959 applied_style.update(self._applied_styles[-1])
3960 applied_style.update(style)
3961 self._applied_styles.append(applied_style)
3962 self._unclosed_elements.append(unclosed_elements)
bf6427d2 3963
2b14cb56 3964 def end(self, tag):
5b995f71
RA
3965 if tag not in (_x('ttml:br'), 'br'):
3966 unclosed_elements = self._unclosed_elements.pop()
3967 for element in reversed(unclosed_elements):
3968 self._out += '</%s>' % element
3969 if unclosed_elements and self._applied_styles:
3970 self._applied_styles.pop()
bf6427d2 3971
2b14cb56 3972 def data(self, data):
5b995f71 3973 self._out += data
2b14cb56 3974
3975 def close(self):
5b995f71 3976 return self._out.strip()
2b14cb56 3977
3978 def parse_node(node):
3979 target = TTMLPElementParser()
3980 parser = xml.etree.ElementTree.XMLParser(target=target)
3981 parser.feed(xml.etree.ElementTree.tostring(node))
3982 return parser.close()
bf6427d2 3983
5b995f71
RA
3984 for k, v in LEGACY_NAMESPACES:
3985 for ns in v:
3986 dfxp_data = dfxp_data.replace(ns, k)
3987
3869028f 3988 dfxp = compat_etree_fromstring(dfxp_data)
bf6427d2 3989 out = []
5b995f71 3990 paras = dfxp.findall(_x('.//ttml:p')) or dfxp.findall('.//p')
1b0427e6
YCH
3991
3992 if not paras:
3993 raise ValueError('Invalid dfxp/TTML subtitle')
bf6427d2 3994
5b995f71
RA
3995 repeat = False
3996 while True:
3997 for style in dfxp.findall(_x('.//ttml:style')):
261f4730
RA
3998 style_id = style.get('id') or style.get(_x('xml:id'))
3999 if not style_id:
4000 continue
5b995f71
RA
4001 parent_style_id = style.get('style')
4002 if parent_style_id:
4003 if parent_style_id not in styles:
4004 repeat = True
4005 continue
4006 styles[style_id] = styles[parent_style_id].copy()
4007 for prop in SUPPORTED_STYLING:
4008 prop_val = style.get(_x('tts:' + prop))
4009 if prop_val:
4010 styles.setdefault(style_id, {})[prop] = prop_val
4011 if repeat:
4012 repeat = False
4013 else:
4014 break
4015
4016 for p in ('body', 'div'):
4017 ele = xpath_element(dfxp, [_x('.//ttml:' + p), './/' + p])
4018 if ele is None:
4019 continue
4020 style = styles.get(ele.get('style'))
4021 if not style:
4022 continue
4023 default_style.update(style)
4024
bf6427d2 4025 for para, index in zip(paras, itertools.count(1)):
d631d5f9 4026 begin_time = parse_dfxp_time_expr(para.attrib.get('begin'))
7dff0363 4027 end_time = parse_dfxp_time_expr(para.attrib.get('end'))
d631d5f9
YCH
4028 dur = parse_dfxp_time_expr(para.attrib.get('dur'))
4029 if begin_time is None:
4030 continue
7dff0363 4031 if not end_time:
d631d5f9
YCH
4032 if not dur:
4033 continue
4034 end_time = begin_time + dur
bf6427d2
YCH
4035 out.append('%d\n%s --> %s\n%s\n\n' % (
4036 index,
c1c924ab
YCH
4037 srt_subtitles_timecode(begin_time),
4038 srt_subtitles_timecode(end_time),
bf6427d2
YCH
4039 parse_node(para)))
4040
4041 return ''.join(out)
4042
4043
c487cf00 4044def cli_option(params, command_option, param, separator=None):
66e289ba 4045 param = params.get(param)
c487cf00 4046 return ([] if param is None
4047 else [command_option, str(param)] if separator is None
4048 else [f'{command_option}{separator}{param}'])
66e289ba
S
4049
4050
4051def cli_bool_option(params, command_option, param, true_value='true', false_value='false', separator=None):
4052 param = params.get(param)
c487cf00 4053 assert param in (True, False, None)
4054 return cli_option({True: true_value, False: false_value}, command_option, param, separator)
66e289ba
S
4055
4056
4057def cli_valueless_option(params, command_option, param, expected_value=True):
c487cf00 4058 return [command_option] if params.get(param) == expected_value else []
66e289ba
S
4059
4060
e92caff5 4061def cli_configuration_args(argdict, keys, default=[], use_compat=True):
eab9b2bc 4062 if isinstance(argdict, (list, tuple)): # for backward compatibility
e92caff5 4063 if use_compat:
5b1ecbb3 4064 return argdict
4065 else:
4066 argdict = None
eab9b2bc 4067 if argdict is None:
5b1ecbb3 4068 return default
eab9b2bc 4069 assert isinstance(argdict, dict)
4070
e92caff5 4071 assert isinstance(keys, (list, tuple))
4072 for key_list in keys:
e92caff5 4073 arg_list = list(filter(
4074 lambda x: x is not None,
6606817a 4075 [argdict.get(key.lower()) for key in variadic(key_list)]))
e92caff5 4076 if arg_list:
4077 return [arg for args in arg_list for arg in args]
4078 return default
66e289ba 4079
6251555f 4080
330690a2 4081def _configuration_args(main_key, argdict, exe, keys=None, default=[], use_compat=True):
4082 main_key, exe = main_key.lower(), exe.lower()
4083 root_key = exe if main_key == exe else f'{main_key}+{exe}'
4084 keys = [f'{root_key}{k}' for k in (keys or [''])]
4085 if root_key in keys:
4086 if main_key != exe:
4087 keys.append((main_key, exe))
4088 keys.append('default')
4089 else:
4090 use_compat = False
4091 return cli_configuration_args(argdict, keys, default, use_compat)
4092
66e289ba 4093
86e5f3ed 4094class ISO639Utils:
39672624
YCH
4095 # See http://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt
4096 _lang_map = {
4097 'aa': 'aar',
4098 'ab': 'abk',
4099 'ae': 'ave',
4100 'af': 'afr',
4101 'ak': 'aka',
4102 'am': 'amh',
4103 'an': 'arg',
4104 'ar': 'ara',
4105 'as': 'asm',
4106 'av': 'ava',
4107 'ay': 'aym',
4108 'az': 'aze',
4109 'ba': 'bak',
4110 'be': 'bel',
4111 'bg': 'bul',
4112 'bh': 'bih',
4113 'bi': 'bis',
4114 'bm': 'bam',
4115 'bn': 'ben',
4116 'bo': 'bod',
4117 'br': 'bre',
4118 'bs': 'bos',
4119 'ca': 'cat',
4120 'ce': 'che',
4121 'ch': 'cha',
4122 'co': 'cos',
4123 'cr': 'cre',
4124 'cs': 'ces',
4125 'cu': 'chu',
4126 'cv': 'chv',
4127 'cy': 'cym',
4128 'da': 'dan',
4129 'de': 'deu',
4130 'dv': 'div',
4131 'dz': 'dzo',
4132 'ee': 'ewe',
4133 'el': 'ell',
4134 'en': 'eng',
4135 'eo': 'epo',
4136 'es': 'spa',
4137 'et': 'est',
4138 'eu': 'eus',
4139 'fa': 'fas',
4140 'ff': 'ful',
4141 'fi': 'fin',
4142 'fj': 'fij',
4143 'fo': 'fao',
4144 'fr': 'fra',
4145 'fy': 'fry',
4146 'ga': 'gle',
4147 'gd': 'gla',
4148 'gl': 'glg',
4149 'gn': 'grn',
4150 'gu': 'guj',
4151 'gv': 'glv',
4152 'ha': 'hau',
4153 'he': 'heb',
b7acc835 4154 'iw': 'heb', # Replaced by he in 1989 revision
39672624
YCH
4155 'hi': 'hin',
4156 'ho': 'hmo',
4157 'hr': 'hrv',
4158 'ht': 'hat',
4159 'hu': 'hun',
4160 'hy': 'hye',
4161 'hz': 'her',
4162 'ia': 'ina',
4163 'id': 'ind',
b7acc835 4164 'in': 'ind', # Replaced by id in 1989 revision
39672624
YCH
4165 'ie': 'ile',
4166 'ig': 'ibo',
4167 'ii': 'iii',
4168 'ik': 'ipk',
4169 'io': 'ido',
4170 'is': 'isl',
4171 'it': 'ita',
4172 'iu': 'iku',
4173 'ja': 'jpn',
4174 'jv': 'jav',
4175 'ka': 'kat',
4176 'kg': 'kon',
4177 'ki': 'kik',
4178 'kj': 'kua',
4179 'kk': 'kaz',
4180 'kl': 'kal',
4181 'km': 'khm',
4182 'kn': 'kan',
4183 'ko': 'kor',
4184 'kr': 'kau',
4185 'ks': 'kas',
4186 'ku': 'kur',
4187 'kv': 'kom',
4188 'kw': 'cor',
4189 'ky': 'kir',
4190 'la': 'lat',
4191 'lb': 'ltz',
4192 'lg': 'lug',
4193 'li': 'lim',
4194 'ln': 'lin',
4195 'lo': 'lao',
4196 'lt': 'lit',
4197 'lu': 'lub',
4198 'lv': 'lav',
4199 'mg': 'mlg',
4200 'mh': 'mah',
4201 'mi': 'mri',
4202 'mk': 'mkd',
4203 'ml': 'mal',
4204 'mn': 'mon',
4205 'mr': 'mar',
4206 'ms': 'msa',
4207 'mt': 'mlt',
4208 'my': 'mya',
4209 'na': 'nau',
4210 'nb': 'nob',
4211 'nd': 'nde',
4212 'ne': 'nep',
4213 'ng': 'ndo',
4214 'nl': 'nld',
4215 'nn': 'nno',
4216 'no': 'nor',
4217 'nr': 'nbl',
4218 'nv': 'nav',
4219 'ny': 'nya',
4220 'oc': 'oci',
4221 'oj': 'oji',
4222 'om': 'orm',
4223 'or': 'ori',
4224 'os': 'oss',
4225 'pa': 'pan',
4226 'pi': 'pli',
4227 'pl': 'pol',
4228 'ps': 'pus',
4229 'pt': 'por',
4230 'qu': 'que',
4231 'rm': 'roh',
4232 'rn': 'run',
4233 'ro': 'ron',
4234 'ru': 'rus',
4235 'rw': 'kin',
4236 'sa': 'san',
4237 'sc': 'srd',
4238 'sd': 'snd',
4239 'se': 'sme',
4240 'sg': 'sag',
4241 'si': 'sin',
4242 'sk': 'slk',
4243 'sl': 'slv',
4244 'sm': 'smo',
4245 'sn': 'sna',
4246 'so': 'som',
4247 'sq': 'sqi',
4248 'sr': 'srp',
4249 'ss': 'ssw',
4250 'st': 'sot',
4251 'su': 'sun',
4252 'sv': 'swe',
4253 'sw': 'swa',
4254 'ta': 'tam',
4255 'te': 'tel',
4256 'tg': 'tgk',
4257 'th': 'tha',
4258 'ti': 'tir',
4259 'tk': 'tuk',
4260 'tl': 'tgl',
4261 'tn': 'tsn',
4262 'to': 'ton',
4263 'tr': 'tur',
4264 'ts': 'tso',
4265 'tt': 'tat',
4266 'tw': 'twi',
4267 'ty': 'tah',
4268 'ug': 'uig',
4269 'uk': 'ukr',
4270 'ur': 'urd',
4271 'uz': 'uzb',
4272 've': 'ven',
4273 'vi': 'vie',
4274 'vo': 'vol',
4275 'wa': 'wln',
4276 'wo': 'wol',
4277 'xh': 'xho',
4278 'yi': 'yid',
e9a50fba 4279 'ji': 'yid', # Replaced by yi in 1989 revision
39672624
YCH
4280 'yo': 'yor',
4281 'za': 'zha',
4282 'zh': 'zho',
4283 'zu': 'zul',
4284 }
4285
4286 @classmethod
4287 def short2long(cls, code):
4288 """Convert language code from ISO 639-1 to ISO 639-2/T"""
4289 return cls._lang_map.get(code[:2])
4290
4291 @classmethod
4292 def long2short(cls, code):
4293 """Convert language code from ISO 639-2/T to ISO 639-1"""
4294 for short_name, long_name in cls._lang_map.items():
4295 if long_name == code:
4296 return short_name
4297
4298
86e5f3ed 4299class ISO3166Utils:
4eb10f66
YCH
4300 # From http://data.okfn.org/data/core/country-list
4301 _country_map = {
4302 'AF': 'Afghanistan',
4303 'AX': 'Åland Islands',
4304 'AL': 'Albania',
4305 'DZ': 'Algeria',
4306 'AS': 'American Samoa',
4307 'AD': 'Andorra',
4308 'AO': 'Angola',
4309 'AI': 'Anguilla',
4310 'AQ': 'Antarctica',
4311 'AG': 'Antigua and Barbuda',
4312 'AR': 'Argentina',
4313 'AM': 'Armenia',
4314 'AW': 'Aruba',
4315 'AU': 'Australia',
4316 'AT': 'Austria',
4317 'AZ': 'Azerbaijan',
4318 'BS': 'Bahamas',
4319 'BH': 'Bahrain',
4320 'BD': 'Bangladesh',
4321 'BB': 'Barbados',
4322 'BY': 'Belarus',
4323 'BE': 'Belgium',
4324 'BZ': 'Belize',
4325 'BJ': 'Benin',
4326 'BM': 'Bermuda',
4327 'BT': 'Bhutan',
4328 'BO': 'Bolivia, Plurinational State of',
4329 'BQ': 'Bonaire, Sint Eustatius and Saba',
4330 'BA': 'Bosnia and Herzegovina',
4331 'BW': 'Botswana',
4332 'BV': 'Bouvet Island',
4333 'BR': 'Brazil',
4334 'IO': 'British Indian Ocean Territory',
4335 'BN': 'Brunei Darussalam',
4336 'BG': 'Bulgaria',
4337 'BF': 'Burkina Faso',
4338 'BI': 'Burundi',
4339 'KH': 'Cambodia',
4340 'CM': 'Cameroon',
4341 'CA': 'Canada',
4342 'CV': 'Cape Verde',
4343 'KY': 'Cayman Islands',
4344 'CF': 'Central African Republic',
4345 'TD': 'Chad',
4346 'CL': 'Chile',
4347 'CN': 'China',
4348 'CX': 'Christmas Island',
4349 'CC': 'Cocos (Keeling) Islands',
4350 'CO': 'Colombia',
4351 'KM': 'Comoros',
4352 'CG': 'Congo',
4353 'CD': 'Congo, the Democratic Republic of the',
4354 'CK': 'Cook Islands',
4355 'CR': 'Costa Rica',
4356 'CI': 'Côte d\'Ivoire',
4357 'HR': 'Croatia',
4358 'CU': 'Cuba',
4359 'CW': 'Curaçao',
4360 'CY': 'Cyprus',
4361 'CZ': 'Czech Republic',
4362 'DK': 'Denmark',
4363 'DJ': 'Djibouti',
4364 'DM': 'Dominica',
4365 'DO': 'Dominican Republic',
4366 'EC': 'Ecuador',
4367 'EG': 'Egypt',
4368 'SV': 'El Salvador',
4369 'GQ': 'Equatorial Guinea',
4370 'ER': 'Eritrea',
4371 'EE': 'Estonia',
4372 'ET': 'Ethiopia',
4373 'FK': 'Falkland Islands (Malvinas)',
4374 'FO': 'Faroe Islands',
4375 'FJ': 'Fiji',
4376 'FI': 'Finland',
4377 'FR': 'France',
4378 'GF': 'French Guiana',
4379 'PF': 'French Polynesia',
4380 'TF': 'French Southern Territories',
4381 'GA': 'Gabon',
4382 'GM': 'Gambia',
4383 'GE': 'Georgia',
4384 'DE': 'Germany',
4385 'GH': 'Ghana',
4386 'GI': 'Gibraltar',
4387 'GR': 'Greece',
4388 'GL': 'Greenland',
4389 'GD': 'Grenada',
4390 'GP': 'Guadeloupe',
4391 'GU': 'Guam',
4392 'GT': 'Guatemala',
4393 'GG': 'Guernsey',
4394 'GN': 'Guinea',
4395 'GW': 'Guinea-Bissau',
4396 'GY': 'Guyana',
4397 'HT': 'Haiti',
4398 'HM': 'Heard Island and McDonald Islands',
4399 'VA': 'Holy See (Vatican City State)',
4400 'HN': 'Honduras',
4401 'HK': 'Hong Kong',
4402 'HU': 'Hungary',
4403 'IS': 'Iceland',
4404 'IN': 'India',
4405 'ID': 'Indonesia',
4406 'IR': 'Iran, Islamic Republic of',
4407 'IQ': 'Iraq',
4408 'IE': 'Ireland',
4409 'IM': 'Isle of Man',
4410 'IL': 'Israel',
4411 'IT': 'Italy',
4412 'JM': 'Jamaica',
4413 'JP': 'Japan',
4414 'JE': 'Jersey',
4415 'JO': 'Jordan',
4416 'KZ': 'Kazakhstan',
4417 'KE': 'Kenya',
4418 'KI': 'Kiribati',
4419 'KP': 'Korea, Democratic People\'s Republic of',
4420 'KR': 'Korea, Republic of',
4421 'KW': 'Kuwait',
4422 'KG': 'Kyrgyzstan',
4423 'LA': 'Lao People\'s Democratic Republic',
4424 'LV': 'Latvia',
4425 'LB': 'Lebanon',
4426 'LS': 'Lesotho',
4427 'LR': 'Liberia',
4428 'LY': 'Libya',
4429 'LI': 'Liechtenstein',
4430 'LT': 'Lithuania',
4431 'LU': 'Luxembourg',
4432 'MO': 'Macao',
4433 'MK': 'Macedonia, the Former Yugoslav Republic of',
4434 'MG': 'Madagascar',
4435 'MW': 'Malawi',
4436 'MY': 'Malaysia',
4437 'MV': 'Maldives',
4438 'ML': 'Mali',
4439 'MT': 'Malta',
4440 'MH': 'Marshall Islands',
4441 'MQ': 'Martinique',
4442 'MR': 'Mauritania',
4443 'MU': 'Mauritius',
4444 'YT': 'Mayotte',
4445 'MX': 'Mexico',
4446 'FM': 'Micronesia, Federated States of',
4447 'MD': 'Moldova, Republic of',
4448 'MC': 'Monaco',
4449 'MN': 'Mongolia',
4450 'ME': 'Montenegro',
4451 'MS': 'Montserrat',
4452 'MA': 'Morocco',
4453 'MZ': 'Mozambique',
4454 'MM': 'Myanmar',
4455 'NA': 'Namibia',
4456 'NR': 'Nauru',
4457 'NP': 'Nepal',
4458 'NL': 'Netherlands',
4459 'NC': 'New Caledonia',
4460 'NZ': 'New Zealand',
4461 'NI': 'Nicaragua',
4462 'NE': 'Niger',
4463 'NG': 'Nigeria',
4464 'NU': 'Niue',
4465 'NF': 'Norfolk Island',
4466 'MP': 'Northern Mariana Islands',
4467 'NO': 'Norway',
4468 'OM': 'Oman',
4469 'PK': 'Pakistan',
4470 'PW': 'Palau',
4471 'PS': 'Palestine, State of',
4472 'PA': 'Panama',
4473 'PG': 'Papua New Guinea',
4474 'PY': 'Paraguay',
4475 'PE': 'Peru',
4476 'PH': 'Philippines',
4477 'PN': 'Pitcairn',
4478 'PL': 'Poland',
4479 'PT': 'Portugal',
4480 'PR': 'Puerto Rico',
4481 'QA': 'Qatar',
4482 'RE': 'Réunion',
4483 'RO': 'Romania',
4484 'RU': 'Russian Federation',
4485 'RW': 'Rwanda',
4486 'BL': 'Saint Barthélemy',
4487 'SH': 'Saint Helena, Ascension and Tristan da Cunha',
4488 'KN': 'Saint Kitts and Nevis',
4489 'LC': 'Saint Lucia',
4490 'MF': 'Saint Martin (French part)',
4491 'PM': 'Saint Pierre and Miquelon',
4492 'VC': 'Saint Vincent and the Grenadines',
4493 'WS': 'Samoa',
4494 'SM': 'San Marino',
4495 'ST': 'Sao Tome and Principe',
4496 'SA': 'Saudi Arabia',
4497 'SN': 'Senegal',
4498 'RS': 'Serbia',
4499 'SC': 'Seychelles',
4500 'SL': 'Sierra Leone',
4501 'SG': 'Singapore',
4502 'SX': 'Sint Maarten (Dutch part)',
4503 'SK': 'Slovakia',
4504 'SI': 'Slovenia',
4505 'SB': 'Solomon Islands',
4506 'SO': 'Somalia',
4507 'ZA': 'South Africa',
4508 'GS': 'South Georgia and the South Sandwich Islands',
4509 'SS': 'South Sudan',
4510 'ES': 'Spain',
4511 'LK': 'Sri Lanka',
4512 'SD': 'Sudan',
4513 'SR': 'Suriname',
4514 'SJ': 'Svalbard and Jan Mayen',
4515 'SZ': 'Swaziland',
4516 'SE': 'Sweden',
4517 'CH': 'Switzerland',
4518 'SY': 'Syrian Arab Republic',
4519 'TW': 'Taiwan, Province of China',
4520 'TJ': 'Tajikistan',
4521 'TZ': 'Tanzania, United Republic of',
4522 'TH': 'Thailand',
4523 'TL': 'Timor-Leste',
4524 'TG': 'Togo',
4525 'TK': 'Tokelau',
4526 'TO': 'Tonga',
4527 'TT': 'Trinidad and Tobago',
4528 'TN': 'Tunisia',
4529 'TR': 'Turkey',
4530 'TM': 'Turkmenistan',
4531 'TC': 'Turks and Caicos Islands',
4532 'TV': 'Tuvalu',
4533 'UG': 'Uganda',
4534 'UA': 'Ukraine',
4535 'AE': 'United Arab Emirates',
4536 'GB': 'United Kingdom',
4537 'US': 'United States',
4538 'UM': 'United States Minor Outlying Islands',
4539 'UY': 'Uruguay',
4540 'UZ': 'Uzbekistan',
4541 'VU': 'Vanuatu',
4542 'VE': 'Venezuela, Bolivarian Republic of',
4543 'VN': 'Viet Nam',
4544 'VG': 'Virgin Islands, British',
4545 'VI': 'Virgin Islands, U.S.',
4546 'WF': 'Wallis and Futuna',
4547 'EH': 'Western Sahara',
4548 'YE': 'Yemen',
4549 'ZM': 'Zambia',
4550 'ZW': 'Zimbabwe',
2f97cc61 4551 # Not ISO 3166 codes, but used for IP blocks
4552 'AP': 'Asia/Pacific Region',
4553 'EU': 'Europe',
4eb10f66
YCH
4554 }
4555
4556 @classmethod
4557 def short2full(cls, code):
4558 """Convert an ISO 3166-2 country code to the corresponding full name"""
4559 return cls._country_map.get(code.upper())
4560
4561
86e5f3ed 4562class GeoUtils:
773f291d
S
4563 # Major IPv4 address blocks per country
4564 _country_ip_map = {
53896ca5 4565 'AD': '46.172.224.0/19',
773f291d
S
4566 'AE': '94.200.0.0/13',
4567 'AF': '149.54.0.0/17',
4568 'AG': '209.59.64.0/18',
4569 'AI': '204.14.248.0/21',
4570 'AL': '46.99.0.0/16',
4571 'AM': '46.70.0.0/15',
4572 'AO': '105.168.0.0/13',
53896ca5
S
4573 'AP': '182.50.184.0/21',
4574 'AQ': '23.154.160.0/24',
773f291d
S
4575 'AR': '181.0.0.0/12',
4576 'AS': '202.70.112.0/20',
53896ca5 4577 'AT': '77.116.0.0/14',
773f291d
S
4578 'AU': '1.128.0.0/11',
4579 'AW': '181.41.0.0/18',
53896ca5
S
4580 'AX': '185.217.4.0/22',
4581 'AZ': '5.197.0.0/16',
773f291d
S
4582 'BA': '31.176.128.0/17',
4583 'BB': '65.48.128.0/17',
4584 'BD': '114.130.0.0/16',
4585 'BE': '57.0.0.0/8',
53896ca5 4586 'BF': '102.178.0.0/15',
773f291d
S
4587 'BG': '95.42.0.0/15',
4588 'BH': '37.131.0.0/17',
4589 'BI': '154.117.192.0/18',
4590 'BJ': '137.255.0.0/16',
53896ca5 4591 'BL': '185.212.72.0/23',
773f291d
S
4592 'BM': '196.12.64.0/18',
4593 'BN': '156.31.0.0/16',
4594 'BO': '161.56.0.0/16',
4595 'BQ': '161.0.80.0/20',
53896ca5 4596 'BR': '191.128.0.0/12',
773f291d
S
4597 'BS': '24.51.64.0/18',
4598 'BT': '119.2.96.0/19',
4599 'BW': '168.167.0.0/16',
4600 'BY': '178.120.0.0/13',
4601 'BZ': '179.42.192.0/18',
4602 'CA': '99.224.0.0/11',
4603 'CD': '41.243.0.0/16',
53896ca5
S
4604 'CF': '197.242.176.0/21',
4605 'CG': '160.113.0.0/16',
773f291d 4606 'CH': '85.0.0.0/13',
53896ca5 4607 'CI': '102.136.0.0/14',
773f291d
S
4608 'CK': '202.65.32.0/19',
4609 'CL': '152.172.0.0/14',
53896ca5 4610 'CM': '102.244.0.0/14',
773f291d
S
4611 'CN': '36.128.0.0/10',
4612 'CO': '181.240.0.0/12',
4613 'CR': '201.192.0.0/12',
4614 'CU': '152.206.0.0/15',
4615 'CV': '165.90.96.0/19',
4616 'CW': '190.88.128.0/17',
53896ca5 4617 'CY': '31.153.0.0/16',
773f291d
S
4618 'CZ': '88.100.0.0/14',
4619 'DE': '53.0.0.0/8',
4620 'DJ': '197.241.0.0/17',
4621 'DK': '87.48.0.0/12',
4622 'DM': '192.243.48.0/20',
4623 'DO': '152.166.0.0/15',
4624 'DZ': '41.96.0.0/12',
4625 'EC': '186.68.0.0/15',
4626 'EE': '90.190.0.0/15',
4627 'EG': '156.160.0.0/11',
4628 'ER': '196.200.96.0/20',
4629 'ES': '88.0.0.0/11',
4630 'ET': '196.188.0.0/14',
4631 'EU': '2.16.0.0/13',
4632 'FI': '91.152.0.0/13',
4633 'FJ': '144.120.0.0/16',
53896ca5 4634 'FK': '80.73.208.0/21',
773f291d
S
4635 'FM': '119.252.112.0/20',
4636 'FO': '88.85.32.0/19',
4637 'FR': '90.0.0.0/9',
4638 'GA': '41.158.0.0/15',
4639 'GB': '25.0.0.0/8',
4640 'GD': '74.122.88.0/21',
4641 'GE': '31.146.0.0/16',
4642 'GF': '161.22.64.0/18',
4643 'GG': '62.68.160.0/19',
53896ca5
S
4644 'GH': '154.160.0.0/12',
4645 'GI': '95.164.0.0/16',
773f291d
S
4646 'GL': '88.83.0.0/19',
4647 'GM': '160.182.0.0/15',
4648 'GN': '197.149.192.0/18',
4649 'GP': '104.250.0.0/19',
4650 'GQ': '105.235.224.0/20',
4651 'GR': '94.64.0.0/13',
4652 'GT': '168.234.0.0/16',
4653 'GU': '168.123.0.0/16',
4654 'GW': '197.214.80.0/20',
4655 'GY': '181.41.64.0/18',
4656 'HK': '113.252.0.0/14',
4657 'HN': '181.210.0.0/16',
4658 'HR': '93.136.0.0/13',
4659 'HT': '148.102.128.0/17',
4660 'HU': '84.0.0.0/14',
4661 'ID': '39.192.0.0/10',
4662 'IE': '87.32.0.0/12',
4663 'IL': '79.176.0.0/13',
4664 'IM': '5.62.80.0/20',
4665 'IN': '117.192.0.0/10',
4666 'IO': '203.83.48.0/21',
4667 'IQ': '37.236.0.0/14',
4668 'IR': '2.176.0.0/12',
4669 'IS': '82.221.0.0/16',
4670 'IT': '79.0.0.0/10',
4671 'JE': '87.244.64.0/18',
4672 'JM': '72.27.0.0/17',
4673 'JO': '176.29.0.0/16',
53896ca5 4674 'JP': '133.0.0.0/8',
773f291d
S
4675 'KE': '105.48.0.0/12',
4676 'KG': '158.181.128.0/17',
4677 'KH': '36.37.128.0/17',
4678 'KI': '103.25.140.0/22',
4679 'KM': '197.255.224.0/20',
53896ca5 4680 'KN': '198.167.192.0/19',
773f291d
S
4681 'KP': '175.45.176.0/22',
4682 'KR': '175.192.0.0/10',
4683 'KW': '37.36.0.0/14',
4684 'KY': '64.96.0.0/15',
4685 'KZ': '2.72.0.0/13',
4686 'LA': '115.84.64.0/18',
4687 'LB': '178.135.0.0/16',
53896ca5 4688 'LC': '24.92.144.0/20',
773f291d
S
4689 'LI': '82.117.0.0/19',
4690 'LK': '112.134.0.0/15',
53896ca5 4691 'LR': '102.183.0.0/16',
773f291d
S
4692 'LS': '129.232.0.0/17',
4693 'LT': '78.56.0.0/13',
4694 'LU': '188.42.0.0/16',
4695 'LV': '46.109.0.0/16',
4696 'LY': '41.252.0.0/14',
4697 'MA': '105.128.0.0/11',
4698 'MC': '88.209.64.0/18',
4699 'MD': '37.246.0.0/16',
4700 'ME': '178.175.0.0/17',
4701 'MF': '74.112.232.0/21',
4702 'MG': '154.126.0.0/17',
4703 'MH': '117.103.88.0/21',
4704 'MK': '77.28.0.0/15',
4705 'ML': '154.118.128.0/18',
4706 'MM': '37.111.0.0/17',
4707 'MN': '49.0.128.0/17',
4708 'MO': '60.246.0.0/16',
4709 'MP': '202.88.64.0/20',
4710 'MQ': '109.203.224.0/19',
4711 'MR': '41.188.64.0/18',
4712 'MS': '208.90.112.0/22',
4713 'MT': '46.11.0.0/16',
4714 'MU': '105.16.0.0/12',
4715 'MV': '27.114.128.0/18',
53896ca5 4716 'MW': '102.70.0.0/15',
773f291d
S
4717 'MX': '187.192.0.0/11',
4718 'MY': '175.136.0.0/13',
4719 'MZ': '197.218.0.0/15',
4720 'NA': '41.182.0.0/16',
4721 'NC': '101.101.0.0/18',
4722 'NE': '197.214.0.0/18',
4723 'NF': '203.17.240.0/22',
4724 'NG': '105.112.0.0/12',
4725 'NI': '186.76.0.0/15',
4726 'NL': '145.96.0.0/11',
4727 'NO': '84.208.0.0/13',
4728 'NP': '36.252.0.0/15',
4729 'NR': '203.98.224.0/19',
4730 'NU': '49.156.48.0/22',
4731 'NZ': '49.224.0.0/14',
4732 'OM': '5.36.0.0/15',
4733 'PA': '186.72.0.0/15',
4734 'PE': '186.160.0.0/14',
4735 'PF': '123.50.64.0/18',
4736 'PG': '124.240.192.0/19',
4737 'PH': '49.144.0.0/13',
4738 'PK': '39.32.0.0/11',
4739 'PL': '83.0.0.0/11',
4740 'PM': '70.36.0.0/20',
4741 'PR': '66.50.0.0/16',
4742 'PS': '188.161.0.0/16',
4743 'PT': '85.240.0.0/13',
4744 'PW': '202.124.224.0/20',
4745 'PY': '181.120.0.0/14',
4746 'QA': '37.210.0.0/15',
53896ca5 4747 'RE': '102.35.0.0/16',
773f291d 4748 'RO': '79.112.0.0/13',
53896ca5 4749 'RS': '93.86.0.0/15',
773f291d 4750 'RU': '5.136.0.0/13',
53896ca5 4751 'RW': '41.186.0.0/16',
773f291d
S
4752 'SA': '188.48.0.0/13',
4753 'SB': '202.1.160.0/19',
4754 'SC': '154.192.0.0/11',
53896ca5 4755 'SD': '102.120.0.0/13',
773f291d 4756 'SE': '78.64.0.0/12',
53896ca5 4757 'SG': '8.128.0.0/10',
773f291d
S
4758 'SI': '188.196.0.0/14',
4759 'SK': '78.98.0.0/15',
53896ca5 4760 'SL': '102.143.0.0/17',
773f291d
S
4761 'SM': '89.186.32.0/19',
4762 'SN': '41.82.0.0/15',
53896ca5 4763 'SO': '154.115.192.0/18',
773f291d
S
4764 'SR': '186.179.128.0/17',
4765 'SS': '105.235.208.0/21',
4766 'ST': '197.159.160.0/19',
4767 'SV': '168.243.0.0/16',
4768 'SX': '190.102.0.0/20',
4769 'SY': '5.0.0.0/16',
4770 'SZ': '41.84.224.0/19',
4771 'TC': '65.255.48.0/20',
4772 'TD': '154.68.128.0/19',
4773 'TG': '196.168.0.0/14',
4774 'TH': '171.96.0.0/13',
4775 'TJ': '85.9.128.0/18',
4776 'TK': '27.96.24.0/21',
4777 'TL': '180.189.160.0/20',
4778 'TM': '95.85.96.0/19',
4779 'TN': '197.0.0.0/11',
4780 'TO': '175.176.144.0/21',
4781 'TR': '78.160.0.0/11',
4782 'TT': '186.44.0.0/15',
4783 'TV': '202.2.96.0/19',
4784 'TW': '120.96.0.0/11',
4785 'TZ': '156.156.0.0/14',
53896ca5
S
4786 'UA': '37.52.0.0/14',
4787 'UG': '102.80.0.0/13',
4788 'US': '6.0.0.0/8',
773f291d 4789 'UY': '167.56.0.0/13',
53896ca5 4790 'UZ': '84.54.64.0/18',
773f291d 4791 'VA': '212.77.0.0/19',
53896ca5 4792 'VC': '207.191.240.0/21',
773f291d 4793 'VE': '186.88.0.0/13',
53896ca5 4794 'VG': '66.81.192.0/20',
773f291d
S
4795 'VI': '146.226.0.0/16',
4796 'VN': '14.160.0.0/11',
4797 'VU': '202.80.32.0/20',
4798 'WF': '117.20.32.0/21',
4799 'WS': '202.4.32.0/19',
4800 'YE': '134.35.0.0/16',
4801 'YT': '41.242.116.0/22',
4802 'ZA': '41.0.0.0/11',
53896ca5
S
4803 'ZM': '102.144.0.0/13',
4804 'ZW': '102.177.192.0/18',
773f291d
S
4805 }
4806
4807 @classmethod
5f95927a
S
4808 def random_ipv4(cls, code_or_block):
4809 if len(code_or_block) == 2:
4810 block = cls._country_ip_map.get(code_or_block.upper())
4811 if not block:
4812 return None
4813 else:
4814 block = code_or_block
773f291d 4815 addr, preflen = block.split('/')
ac668111 4816 addr_min = struct.unpack('!L', socket.inet_aton(addr))[0]
773f291d 4817 addr_max = addr_min | (0xffffffff >> int(preflen))
14f25df2 4818 return str(socket.inet_ntoa(
ac668111 4819 struct.pack('!L', random.randint(addr_min, addr_max))))
773f291d
S
4820
4821
ac668111 4822class PerRequestProxyHandler(urllib.request.ProxyHandler):
2461f79d
PH
4823 def __init__(self, proxies=None):
4824 # Set default handlers
4825 for type in ('http', 'https'):
4826 setattr(self, '%s_open' % type,
4827 lambda r, proxy='__noproxy__', type=type, meth=self.proxy_open:
4828 meth(r, proxy, type))
ac668111 4829 urllib.request.ProxyHandler.__init__(self, proxies)
2461f79d 4830
91410c9b 4831 def proxy_open(self, req, proxy, type):
2461f79d 4832 req_proxy = req.headers.get('Ytdl-request-proxy')
91410c9b
PH
4833 if req_proxy is not None:
4834 proxy = req_proxy
2461f79d
PH
4835 del req.headers['Ytdl-request-proxy']
4836
4837 if proxy == '__noproxy__':
4838 return None # No Proxy
14f25df2 4839 if urllib.parse.urlparse(proxy).scheme.lower() in ('socks', 'socks4', 'socks4a', 'socks5'):
71aff188 4840 req.add_header('Ytdl-socks-proxy', proxy)
7a5c1cfe 4841 # yt-dlp's http/https handlers do wrapping the socket with socks
71aff188 4842 return None
ac668111 4843 return urllib.request.ProxyHandler.proxy_open(
91410c9b 4844 self, req, proxy, type)
5bc880b9
YCH
4845
4846
0a5445dd
YCH
4847# Both long_to_bytes and bytes_to_long are adapted from PyCrypto, which is
4848# released into Public Domain
4849# https://github.com/dlitz/pycrypto/blob/master/lib/Crypto/Util/number.py#L387
4850
4851def long_to_bytes(n, blocksize=0):
4852 """long_to_bytes(n:long, blocksize:int) : string
4853 Convert a long integer to a byte string.
4854
4855 If optional blocksize is given and greater than zero, pad the front of the
4856 byte string with binary zeros so that the length is a multiple of
4857 blocksize.
4858 """
4859 # after much testing, this algorithm was deemed to be the fastest
4860 s = b''
4861 n = int(n)
4862 while n > 0:
ac668111 4863 s = struct.pack('>I', n & 0xffffffff) + s
0a5445dd
YCH
4864 n = n >> 32
4865 # strip off leading zeros
4866 for i in range(len(s)):
4867 if s[i] != b'\000'[0]:
4868 break
4869 else:
4870 # only happens when n == 0
4871 s = b'\000'
4872 i = 0
4873 s = s[i:]
4874 # add back some pad bytes. this could be done more efficiently w.r.t. the
4875 # de-padding being done above, but sigh...
4876 if blocksize > 0 and len(s) % blocksize:
4877 s = (blocksize - len(s) % blocksize) * b'\000' + s
4878 return s
4879
4880
4881def bytes_to_long(s):
4882 """bytes_to_long(string) : long
4883 Convert a byte string to a long integer.
4884
4885 This is (essentially) the inverse of long_to_bytes().
4886 """
4887 acc = 0
4888 length = len(s)
4889 if length % 4:
4890 extra = (4 - length % 4)
4891 s = b'\000' * extra + s
4892 length = length + extra
4893 for i in range(0, length, 4):
ac668111 4894 acc = (acc << 32) + struct.unpack('>I', s[i:i + 4])[0]
0a5445dd
YCH
4895 return acc
4896
4897
5bc880b9
YCH
4898def ohdave_rsa_encrypt(data, exponent, modulus):
4899 '''
4900 Implement OHDave's RSA algorithm. See http://www.ohdave.com/rsa/
4901
4902 Input:
4903 data: data to encrypt, bytes-like object
4904 exponent, modulus: parameter e and N of RSA algorithm, both integer
4905 Output: hex string of encrypted data
4906
4907 Limitation: supports one block encryption only
4908 '''
4909
4910 payload = int(binascii.hexlify(data[::-1]), 16)
4911 encrypted = pow(payload, exponent, modulus)
4912 return '%x' % encrypted
81bdc8fd
YCH
4913
4914
f48409c7
YCH
4915def pkcs1pad(data, length):
4916 """
4917 Padding input data with PKCS#1 scheme
4918
4919 @param {int[]} data input data
4920 @param {int} length target length
4921 @returns {int[]} padded data
4922 """
4923 if len(data) > length - 11:
4924 raise ValueError('Input data too long for PKCS#1 padding')
4925
4926 pseudo_random = [random.randint(0, 254) for _ in range(length - len(data) - 3)]
4927 return [0, 2] + pseudo_random + [0] + data
4928
4929
7b2c3f47 4930def _base_n_table(n, table):
4931 if not table and not n:
4932 raise ValueError('Either table or n must be specified')
612f2be5 4933 table = (table or '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ')[:n]
4934
44f14eb4 4935 if n and n != len(table):
612f2be5 4936 raise ValueError(f'base {n} exceeds table length {len(table)}')
4937 return table
59f898b7 4938
5eb6bdce 4939
7b2c3f47 4940def encode_base_n(num, n=None, table=None):
4941 """Convert given int to a base-n string"""
612f2be5 4942 table = _base_n_table(n, table)
7b2c3f47 4943 if not num:
5eb6bdce
YCH
4944 return table[0]
4945
7b2c3f47 4946 result, base = '', len(table)
81bdc8fd 4947 while num:
7b2c3f47 4948 result = table[num % base] + result
612f2be5 4949 num = num // base
7b2c3f47 4950 return result
4951
4952
4953def decode_base_n(string, n=None, table=None):
4954 """Convert given base-n string to int"""
4955 table = {char: index for index, char in enumerate(_base_n_table(n, table))}
4956 result, base = 0, len(table)
4957 for char in string:
4958 result = result * base + table[char]
4959 return result
4960
4961
4962def decode_base(value, digits):
da4db748 4963 deprecation_warning(f'{__name__}.decode_base is deprecated and may be removed '
4964 f'in a future version. Use {__name__}.decode_base_n instead')
7b2c3f47 4965 return decode_base_n(value, table=digits)
f52354a8
YCH
4966
4967
4968def decode_packed_codes(code):
06b3fe29 4969 mobj = re.search(PACKED_CODES_RE, code)
a0566bbf 4970 obfuscated_code, base, count, symbols = mobj.groups()
f52354a8
YCH
4971 base = int(base)
4972 count = int(count)
4973 symbols = symbols.split('|')
4974 symbol_table = {}
4975
4976 while count:
4977 count -= 1
5eb6bdce 4978 base_n_count = encode_base_n(count, base)
f52354a8
YCH
4979 symbol_table[base_n_count] = symbols[count] or base_n_count
4980
4981 return re.sub(
4982 r'\b(\w+)\b', lambda mobj: symbol_table[mobj.group(0)],
a0566bbf 4983 obfuscated_code)
e154c651 4984
4985
1ced2221
S
4986def caesar(s, alphabet, shift):
4987 if shift == 0:
4988 return s
4989 l = len(alphabet)
4990 return ''.join(
4991 alphabet[(alphabet.index(c) + shift) % l] if c in alphabet else c
4992 for c in s)
4993
4994
4995def rot47(s):
4996 return caesar(s, r'''!"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~''', 47)
4997
4998
e154c651 4999def parse_m3u8_attributes(attrib):
5000 info = {}
5001 for (key, val) in re.findall(r'(?P<key>[A-Z0-9-]+)=(?P<val>"[^"]+"|[^",]+)(?:,|$)', attrib):
5002 if val.startswith('"'):
5003 val = val[1:-1]
5004 info[key] = val
5005 return info
1143535d
YCH
5006
5007
5008def urshift(val, n):
5009 return val >> n if val >= 0 else (val + 0x100000000) >> n
d3f8e038
YCH
5010
5011
5012# Based on png2str() written by @gdkchan and improved by @yokrysty
067aa17e 5013# Originally posted at https://github.com/ytdl-org/youtube-dl/issues/9706
d3f8e038
YCH
5014def decode_png(png_data):
5015 # Reference: https://www.w3.org/TR/PNG/
5016 header = png_data[8:]
5017
5018 if png_data[:8] != b'\x89PNG\x0d\x0a\x1a\x0a' or header[4:8] != b'IHDR':
86e5f3ed 5019 raise OSError('Not a valid PNG file.')
d3f8e038
YCH
5020
5021 int_map = {1: '>B', 2: '>H', 4: '>I'}
ac668111 5022 unpack_integer = lambda x: struct.unpack(int_map[len(x)], x)[0]
d3f8e038
YCH
5023
5024 chunks = []
5025
5026 while header:
5027 length = unpack_integer(header[:4])
5028 header = header[4:]
5029
5030 chunk_type = header[:4]
5031 header = header[4:]
5032
5033 chunk_data = header[:length]
5034 header = header[length:]
5035
5036 header = header[4:] # Skip CRC
5037
5038 chunks.append({
5039 'type': chunk_type,
5040 'length': length,
5041 'data': chunk_data
5042 })
5043
5044 ihdr = chunks[0]['data']
5045
5046 width = unpack_integer(ihdr[:4])
5047 height = unpack_integer(ihdr[4:8])
5048
5049 idat = b''
5050
5051 for chunk in chunks:
5052 if chunk['type'] == b'IDAT':
5053 idat += chunk['data']
5054
5055 if not idat:
86e5f3ed 5056 raise OSError('Unable to read PNG data.')
d3f8e038
YCH
5057
5058 decompressed_data = bytearray(zlib.decompress(idat))
5059
5060 stride = width * 3
5061 pixels = []
5062
5063 def _get_pixel(idx):
5064 x = idx % stride
5065 y = idx // stride
5066 return pixels[y][x]
5067
5068 for y in range(height):
5069 basePos = y * (1 + stride)
5070 filter_type = decompressed_data[basePos]
5071
5072 current_row = []
5073
5074 pixels.append(current_row)
5075
5076 for x in range(stride):
5077 color = decompressed_data[1 + basePos + x]
5078 basex = y * stride + x
5079 left = 0
5080 up = 0
5081
5082 if x > 2:
5083 left = _get_pixel(basex - 3)
5084 if y > 0:
5085 up = _get_pixel(basex - stride)
5086
5087 if filter_type == 1: # Sub
5088 color = (color + left) & 0xff
5089 elif filter_type == 2: # Up
5090 color = (color + up) & 0xff
5091 elif filter_type == 3: # Average
5092 color = (color + ((left + up) >> 1)) & 0xff
5093 elif filter_type == 4: # Paeth
5094 a = left
5095 b = up
5096 c = 0
5097
5098 if x > 2 and y > 0:
5099 c = _get_pixel(basex - stride - 3)
5100
5101 p = a + b - c
5102
5103 pa = abs(p - a)
5104 pb = abs(p - b)
5105 pc = abs(p - c)
5106
5107 if pa <= pb and pa <= pc:
5108 color = (color + a) & 0xff
5109 elif pb <= pc:
5110 color = (color + b) & 0xff
5111 else:
5112 color = (color + c) & 0xff
5113
5114 current_row.append(color)
5115
5116 return width, height, pixels
efa97bdc
YCH
5117
5118
5119def write_xattr(path, key, value):
6f7563be 5120 # Windows: Write xattrs to NTFS Alternate Data Streams:
5121 # http://en.wikipedia.org/wiki/NTFS#Alternate_data_streams_.28ADS.29
5122 if compat_os_name == 'nt':
5123 assert ':' not in key
5124 assert os.path.exists(path)
efa97bdc
YCH
5125
5126 try:
6f7563be 5127 with open(f'{path}:{key}', 'wb') as f:
5128 f.write(value)
86e5f3ed 5129 except OSError as e:
efa97bdc 5130 raise XAttrMetadataError(e.errno, e.strerror)
6f7563be 5131 return
efa97bdc 5132
6f7563be 5133 # UNIX Method 1. Use xattrs/pyxattrs modules
efa97bdc 5134
6f7563be 5135 setxattr = None
5136 if getattr(xattr, '_yt_dlp__identifier', None) == 'pyxattr':
5137 # Unicode arguments are not supported in pyxattr until version 0.5.0
5138 # See https://github.com/ytdl-org/youtube-dl/issues/5498
5139 if version_tuple(xattr.__version__) >= (0, 5, 0):
5140 setxattr = xattr.set
5141 elif xattr:
5142 setxattr = xattr.setxattr
efa97bdc 5143
6f7563be 5144 if setxattr:
5145 try:
5146 setxattr(path, key, value)
5147 except OSError as e:
5148 raise XAttrMetadataError(e.errno, e.strerror)
5149 return
efa97bdc 5150
6f7563be 5151 # UNIX Method 2. Use setfattr/xattr executables
5152 exe = ('setfattr' if check_executable('setfattr', ['--version'])
5153 else 'xattr' if check_executable('xattr', ['-h']) else None)
5154 if not exe:
5155 raise XAttrUnavailableError(
5156 'Couldn\'t find a tool to set the xattrs. Install either the python "xattr" or "pyxattr" modules or the '
5157 + ('"xattr" binary' if sys.platform != 'linux' else 'GNU "attr" package (which contains the "setfattr" tool)'))
efa97bdc 5158
0f06bcd7 5159 value = value.decode()
6f7563be 5160 try:
f0c9fb96 5161 _, stderr, returncode = Popen.run(
6f7563be 5162 [exe, '-w', key, value, path] if exe == 'xattr' else [exe, '-n', key, '-v', value, path],
e121e3ce 5163 text=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE, stdin=subprocess.PIPE)
6f7563be 5164 except OSError as e:
5165 raise XAttrMetadataError(e.errno, e.strerror)
f0c9fb96 5166 if returncode:
5167 raise XAttrMetadataError(returncode, stderr)
0c265486
YCH
5168
5169
5170def random_birthday(year_field, month_field, day_field):
aa374bc7
AS
5171 start_date = datetime.date(1950, 1, 1)
5172 end_date = datetime.date(1995, 12, 31)
5173 offset = random.randint(0, (end_date - start_date).days)
5174 random_date = start_date + datetime.timedelta(offset)
0c265486 5175 return {
aa374bc7
AS
5176 year_field: str(random_date.year),
5177 month_field: str(random_date.month),
5178 day_field: str(random_date.day),
0c265486 5179 }
732044af 5180
c76eb41b 5181
732044af 5182# Templates for internet shortcut files, which are plain text files.
e5a998f3 5183DOT_URL_LINK_TEMPLATE = '''\
732044af 5184[InternetShortcut]
5185URL=%(url)s
e5a998f3 5186'''
732044af 5187
e5a998f3 5188DOT_WEBLOC_LINK_TEMPLATE = '''\
732044af 5189<?xml version="1.0" encoding="UTF-8"?>
5190<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
5191<plist version="1.0">
5192<dict>
5193\t<key>URL</key>
5194\t<string>%(url)s</string>
5195</dict>
5196</plist>
e5a998f3 5197'''
732044af 5198
e5a998f3 5199DOT_DESKTOP_LINK_TEMPLATE = '''\
732044af 5200[Desktop Entry]
5201Encoding=UTF-8
5202Name=%(filename)s
5203Type=Link
5204URL=%(url)s
5205Icon=text-html
e5a998f3 5206'''
732044af 5207
08438d2c 5208LINK_TEMPLATES = {
5209 'url': DOT_URL_LINK_TEMPLATE,
5210 'desktop': DOT_DESKTOP_LINK_TEMPLATE,
5211 'webloc': DOT_WEBLOC_LINK_TEMPLATE,
5212}
5213
732044af 5214
5215def iri_to_uri(iri):
5216 """
5217 Converts an IRI (Internationalized Resource Identifier, allowing Unicode characters) to a URI (Uniform Resource Identifier, ASCII-only).
5218
5219 The function doesn't add an additional layer of escaping; e.g., it doesn't escape `%3C` as `%253C`. Instead, it percent-escapes characters with an underlying UTF-8 encoding *besides* those already escaped, leaving the URI intact.
5220 """
5221
14f25df2 5222 iri_parts = urllib.parse.urlparse(iri)
732044af 5223
5224 if '[' in iri_parts.netloc:
5225 raise ValueError('IPv6 URIs are not, yet, supported.')
5226 # Querying `.netloc`, when there's only one bracket, also raises a ValueError.
5227
5228 # The `safe` argument values, that the following code uses, contain the characters that should not be percent-encoded. Everything else but letters, digits and '_.-' will be percent-encoded with an underlying UTF-8 encoding. Everything already percent-encoded will be left as is.
5229
5230 net_location = ''
5231 if iri_parts.username:
f9934b96 5232 net_location += urllib.parse.quote(iri_parts.username, safe=r"!$%&'()*+,~")
732044af 5233 if iri_parts.password is not None:
f9934b96 5234 net_location += ':' + urllib.parse.quote(iri_parts.password, safe=r"!$%&'()*+,~")
732044af 5235 net_location += '@'
5236
0f06bcd7 5237 net_location += iri_parts.hostname.encode('idna').decode() # Punycode for Unicode hostnames.
732044af 5238 # The 'idna' encoding produces ASCII text.
5239 if iri_parts.port is not None and iri_parts.port != 80:
5240 net_location += ':' + str(iri_parts.port)
5241
f9934b96 5242 return urllib.parse.urlunparse(
732044af 5243 (iri_parts.scheme,
5244 net_location,
5245
f9934b96 5246 urllib.parse.quote_plus(iri_parts.path, safe=r"!$%&'()*+,/:;=@|~"),
732044af 5247
5248 # Unsure about the `safe` argument, since this is a legacy way of handling parameters.
f9934b96 5249 urllib.parse.quote_plus(iri_parts.params, safe=r"!$%&'()*+,/:;=@|~"),
732044af 5250
5251 # Not totally sure about the `safe` argument, since the source does not explicitly mention the query URI component.
f9934b96 5252 urllib.parse.quote_plus(iri_parts.query, safe=r"!$%&'()*+,/:;=?@{|}~"),
732044af 5253
f9934b96 5254 urllib.parse.quote_plus(iri_parts.fragment, safe=r"!#$%&'()*+,/:;=?@{|}~")))
732044af 5255
5256 # Source for `safe` arguments: https://url.spec.whatwg.org/#percent-encoded-bytes.
5257
5258
5259def to_high_limit_path(path):
5260 if sys.platform in ['win32', 'cygwin']:
5261 # Work around MAX_PATH limitation on Windows. The maximum allowed length for the individual path segments may still be quite limited.
e5a998f3 5262 return '\\\\?\\' + os.path.abspath(path)
732044af 5263
5264 return path
76d321f6 5265
c76eb41b 5266
7b2c3f47 5267def format_field(obj, field=None, template='%s', ignore=NO_DEFAULT, default='', func=IDENTITY):
e0ddbd02 5268 val = traverse_obj(obj, *variadic(field))
7b2c3f47 5269 if (not val and val != 0) if ignore is NO_DEFAULT else val in variadic(ignore):
e0ddbd02 5270 return default
7b2c3f47 5271 return template % func(val)
00dd0cd5 5272
5273
5274def clean_podcast_url(url):
5275 return re.sub(r'''(?x)
5276 (?:
5277 (?:
5278 chtbl\.com/track|
5279 media\.blubrry\.com| # https://create.blubrry.com/resources/podcast-media-download-statistics/getting-started/
5280 play\.podtrac\.com
5281 )/[^/]+|
5282 (?:dts|www)\.podtrac\.com/(?:pts/)?redirect\.[0-9a-z]{3,4}| # http://analytics.podtrac.com/how-to-measure
5283 flex\.acast\.com|
5284 pd(?:
5285 cn\.co| # https://podcorn.com/analytics-prefix/
5286 st\.fm # https://podsights.com/docs/
5287 )/e
5288 )/''', '', url)
ffcb8191
THD
5289
5290
5291_HEX_TABLE = '0123456789abcdef'
5292
5293
5294def random_uuidv4():
5295 return re.sub(r'[xy]', lambda x: _HEX_TABLE[random.randint(0, 15)], 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx')
0202b52a 5296
5297
5298def make_dir(path, to_screen=None):
5299 try:
5300 dn = os.path.dirname(path)
5301 if dn and not os.path.exists(dn):
5302 os.makedirs(dn)
5303 return True
86e5f3ed 5304 except OSError as err:
0202b52a 5305 if callable(to_screen) is not None:
5306 to_screen('unable to create directory ' + error_to_compat_str(err))
5307 return False
f74980cb 5308
5309
5310def get_executable_path():
b5899f4f 5311 from .update import _get_variant_and_executable_path
c487cf00 5312
b5899f4f 5313 return os.path.dirname(os.path.abspath(_get_variant_and_executable_path()[1]))
f74980cb 5314
5315
2f567473 5316def load_plugins(name, suffix, namespace):
3ae5e797 5317 classes = {}
19a03940 5318 with contextlib.suppress(FileNotFoundError):
019a94f7
ÁS
5319 plugins_spec = importlib.util.spec_from_file_location(
5320 name, os.path.join(get_executable_path(), 'ytdlp_plugins', name, '__init__.py'))
5321 plugins = importlib.util.module_from_spec(plugins_spec)
5322 sys.modules[plugins_spec.name] = plugins
5323 plugins_spec.loader.exec_module(plugins)
f74980cb 5324 for name in dir(plugins):
2f567473 5325 if name in namespace:
5326 continue
5327 if not name.endswith(suffix):
f74980cb 5328 continue
5329 klass = getattr(plugins, name)
3ae5e797 5330 classes[name] = namespace[name] = klass
f74980cb 5331 return classes
06167fbb 5332
5333
325ebc17 5334def traverse_obj(
f99bbfc9 5335 obj, *paths, default=NO_DEFAULT, expected_type=None, get_all=True,
325ebc17 5336 casesense=True, is_user_input=False, traverse_string=False):
ab029d7e
SS
5337 """
5338 Safely traverse nested `dict`s and `Sequence`s
5339
5340 >>> obj = [{}, {"key": "value"}]
5341 >>> traverse_obj(obj, (1, "key"))
5342 "value"
5343
5344 Each of the provided `paths` is tested and the first producing a valid result will be returned.
f99bbfc9 5345 The next path will also be tested if the path branched but no results could be found.
7b0127e1 5346 Supported values for traversal are `Mapping`, `Sequence` and `re.Match`.
ab029d7e
SS
5347 A value of None is treated as the absence of a value.
5348
5349 The paths will be wrapped in `variadic`, so that `'key'` is conveniently the same as `('key', )`.
5350
5351 The keys in the path can be one of:
5352 - `None`: Return the current object.
7b0127e1 5353 - `str`/`int`: Return `obj[key]`. For `re.Match, return `obj.group(key)`.
ab029d7e
SS
5354 - `slice`: Branch out and return all values in `obj[key]`.
5355 - `Ellipsis`: Branch out and return a list of all values.
5356 - `tuple`/`list`: Branch out and return a list of all matching values.
5357 Read as: `[traverse_obj(obj, branch) for branch in branches]`.
5358 - `function`: Branch out and return values filtered by the function.
5359 Read as: `[value for key, value in obj if function(key, value)]`.
5360 For `Sequence`s, `key` is the index of the value.
5361 - `dict` Transform the current object and return a matching dict.
5362 Read as: `{key: traverse_obj(obj, path) for key, path in dct.items()}`.
5363
7b0127e1 5364 `tuple`, `list`, and `dict` all support nested paths and branches.
ab029d7e
SS
5365
5366 @params paths Paths which to traverse by.
5367 @param default Value to return if the paths do not match.
5368 @param expected_type If a `type`, only accept final values of this type.
5369 If any other callable, try to call the function on each result.
5370 @param get_all If `False`, return the first matching result, otherwise all matching ones.
5371 @param casesense If `False`, consider string dictionary keys as case insensitive.
5372
5373 The following are only meant to be used by YoutubeDL.prepare_outtmpl and are not part of the API
5374
5375 @param is_user_input Whether the keys are generated from user input.
5376 If `True` strings get converted to `int`/`slice` if needed.
5377 @param traverse_string Whether to traverse into objects as strings.
5378 If `True`, any non-compatible object will first be
5379 converted into a string and then traversed into.
5380
5381
5382 @returns The result of the object traversal.
5383 If successful, `get_all=True`, and the path branches at least once,
5384 then a list of results is returned instead.
f99bbfc9 5385 A list is always returned if the last path branches and no `default` is given.
ab029d7e
SS
5386 """
5387 is_sequence = lambda x: isinstance(x, collections.abc.Sequence) and not isinstance(x, (str, bytes))
5388 casefold = lambda k: k.casefold() if isinstance(k, str) else k
325ebc17 5389
352d63fd 5390 if isinstance(expected_type, type):
5391 type_test = lambda val: val if isinstance(val, expected_type) else None
352d63fd 5392 else:
ab029d7e
SS
5393 type_test = lambda val: try_call(expected_type or IDENTITY, args=(val,))
5394
5395 def apply_key(key, obj):
5396 if obj is None:
5397 return
5398
5399 elif key is None:
5400 yield obj
5401
5402 elif isinstance(key, (list, tuple)):
5403 for branch in key:
5404 _, result = apply_path(obj, branch)
5405 yield from result
5406
5407 elif key is ...:
5408 if isinstance(obj, collections.abc.Mapping):
5409 yield from obj.values()
5410 elif is_sequence(obj):
5411 yield from obj
7b0127e1
SS
5412 elif isinstance(obj, re.Match):
5413 yield from obj.groups()
ab029d7e
SS
5414 elif traverse_string:
5415 yield from str(obj)
5416
5417 elif callable(key):
5418 if is_sequence(obj):
5419 iter_obj = enumerate(obj)
5420 elif isinstance(obj, collections.abc.Mapping):
5421 iter_obj = obj.items()
7b0127e1
SS
5422 elif isinstance(obj, re.Match):
5423 iter_obj = enumerate((obj.group(), *obj.groups()))
ab029d7e
SS
5424 elif traverse_string:
5425 iter_obj = enumerate(str(obj))
352d63fd 5426 else:
ab029d7e
SS
5427 return
5428 yield from (v for k, v in iter_obj if try_call(key, args=(k, v)))
5429
5430 elif isinstance(key, dict):
5431 iter_obj = ((k, _traverse_obj(obj, v)) for k, v in key.items())
5432 yield {k: v if v is not None else default for k, v in iter_obj
f99bbfc9 5433 if v is not None or default is not NO_DEFAULT}
ab029d7e 5434
7b0127e1 5435 elif isinstance(obj, collections.abc.Mapping):
ab029d7e
SS
5436 yield (obj.get(key) if casesense or (key in obj)
5437 else next((v for k, v in obj.items() if casefold(k) == key), None))
5438
7b0127e1
SS
5439 elif isinstance(obj, re.Match):
5440 if isinstance(key, int) or casesense:
5441 with contextlib.suppress(IndexError):
5442 yield obj.group(key)
5443 return
5444
5445 if not isinstance(key, str):
5446 return
5447
5448 yield next((v for k, v in obj.groupdict().items() if casefold(k) == key), None)
5449
ab029d7e
SS
5450 else:
5451 if is_user_input:
5452 key = (int_or_none(key) if ':' not in key
5453 else slice(*map(int_or_none, key.split(':'))))
5454
5455 if not isinstance(key, (int, slice)):
5456 return
5457
5458 if not is_sequence(obj):
5459 if not traverse_string:
5460 return
5461 obj = str(obj)
5462
5463 with contextlib.suppress(IndexError):
5464 yield obj[key]
5465
5466 def apply_path(start_obj, path):
5467 objs = (start_obj,)
5468 has_branched = False
5469
5470 for key in variadic(path):
5471 if is_user_input and key == ':':
5472 key = ...
5473
5474 if not casesense and isinstance(key, str):
5475 key = key.casefold()
5476
5477 if key is ... or isinstance(key, (list, tuple)) or callable(key):
5478 has_branched = True
5479
5480 key_func = functools.partial(apply_key, key)
5481 objs = itertools.chain.from_iterable(map(key_func, objs))
5482
5483 return has_branched, objs
5484
f99bbfc9 5485 def _traverse_obj(obj, path, use_list=True):
ab029d7e
SS
5486 has_branched, results = apply_path(obj, path)
5487 results = LazyList(x for x in map(type_test, results) if x is not None)
ab029d7e 5488
f99bbfc9
SS
5489 if get_all and has_branched:
5490 return results.exhaust() if results or use_list else None
5491
5492 return results[0] if results else None
5493
5494 for index, path in enumerate(paths, 1):
5495 use_list = default is NO_DEFAULT and index == len(paths)
5496 result = _traverse_obj(obj, path, use_list)
ab029d7e
SS
5497 if result is not None:
5498 return result
5499
f99bbfc9 5500 return None if default is NO_DEFAULT else default
324ad820 5501
5502
5503def traverse_dict(dictn, keys, casesense=True):
da4db748 5504 deprecation_warning(f'"{__name__}.traverse_dict" is deprecated and may be removed '
5505 f'in a future version. Use "{__name__}.traverse_obj" instead')
ee8dd27a 5506 return traverse_obj(dictn, keys, casesense=casesense, is_user_input=True, traverse_string=True)
6606817a 5507
5508
ff91cf74 5509def get_first(obj, keys, **kwargs):
5510 return traverse_obj(obj, (..., *variadic(keys)), **kwargs, get_all=False)
5511
5512
3e9b66d7
LNO
5513def time_seconds(**kwargs):
5514 t = datetime.datetime.now(datetime.timezone(datetime.timedelta(**kwargs)))
5515 return t.timestamp()
5516
5517
49fa4d9a
N
5518# create a JSON Web Signature (jws) with HS256 algorithm
5519# the resulting format is in JWS Compact Serialization
5520# implemented following JWT https://www.rfc-editor.org/rfc/rfc7519.html
5521# implemented following JWS https://www.rfc-editor.org/rfc/rfc7515.html
5522def jwt_encode_hs256(payload_data, key, headers={}):
5523 header_data = {
5524 'alg': 'HS256',
5525 'typ': 'JWT',
5526 }
5527 if headers:
5528 header_data.update(headers)
0f06bcd7 5529 header_b64 = base64.b64encode(json.dumps(header_data).encode())
5530 payload_b64 = base64.b64encode(json.dumps(payload_data).encode())
5531 h = hmac.new(key.encode(), header_b64 + b'.' + payload_b64, hashlib.sha256)
49fa4d9a
N
5532 signature_b64 = base64.b64encode(h.digest())
5533 token = header_b64 + b'.' + payload_b64 + b'.' + signature_b64
5534 return token
819e0531 5535
5536
16b0d7e6 5537# can be extended in future to verify the signature and parse header and return the algorithm used if it's not HS256
5538def jwt_decode_hs256(jwt):
5539 header_b64, payload_b64, signature_b64 = jwt.split('.')
2c98d998 5540 # add trailing ='s that may have been stripped, superfluous ='s are ignored
5541 payload_data = json.loads(base64.urlsafe_b64decode(f'{payload_b64}==='))
16b0d7e6 5542 return payload_data
5543
5544
53973b4d 5545WINDOWS_VT_MODE = False if compat_os_name == 'nt' else None
5546
5547
7a32c70d 5548@functools.cache
819e0531 5549def supports_terminal_sequences(stream):
5550 if compat_os_name == 'nt':
8a82af35 5551 if not WINDOWS_VT_MODE:
819e0531 5552 return False
5553 elif not os.getenv('TERM'):
5554 return False
5555 try:
5556 return stream.isatty()
5557 except BaseException:
5558 return False
5559
5560
53973b4d 5561def windows_enable_vt_mode(): # TODO: Do this the proper way https://bugs.python.org/issue30075
8a82af35 5562 if get_windows_version() < (10, 0, 10586):
53973b4d 5563 return
5564 global WINDOWS_VT_MODE
53973b4d 5565 try:
f0c9fb96 5566 Popen.run('', shell=True)
53973b4d 5567 except Exception:
5568 return
5569
5570 WINDOWS_VT_MODE = True
5571 supports_terminal_sequences.cache_clear()
5572
5573
ec11a9f4 5574_terminal_sequences_re = re.compile('\033\\[[^m]+m')
5575
5576
5577def remove_terminal_sequences(string):
5578 return _terminal_sequences_re.sub('', string)
5579
5580
5581def number_of_digits(number):
5582 return len('%d' % number)
34921b43 5583
5584
5585def join_nonempty(*values, delim='-', from_dict=None):
5586 if from_dict is not None:
7b2c3f47 5587 values = (traverse_obj(from_dict, variadic(v)) for v in values)
34921b43 5588 return delim.join(map(str, filter(None, values)))
06e57990 5589
5590
27231526
ZM
5591def scale_thumbnails_to_max_format_width(formats, thumbnails, url_width_re):
5592 """
5593 Find the largest format dimensions in terms of video width and, for each thumbnail:
5594 * Modify the URL: Match the width with the provided regex and replace with the former width
5595 * Update dimensions
5596
5597 This function is useful with video services that scale the provided thumbnails on demand
5598 """
5599 _keys = ('width', 'height')
5600 max_dimensions = max(
86e5f3ed 5601 (tuple(format.get(k) or 0 for k in _keys) for format in formats),
27231526
ZM
5602 default=(0, 0))
5603 if not max_dimensions[0]:
5604 return thumbnails
5605 return [
5606 merge_dicts(
5607 {'url': re.sub(url_width_re, str(max_dimensions[0]), thumbnail['url'])},
5608 dict(zip(_keys, max_dimensions)), thumbnail)
5609 for thumbnail in thumbnails
5610 ]
5611
5612
93c8410d
LNO
5613def parse_http_range(range):
5614 """ Parse value of "Range" or "Content-Range" HTTP header into tuple. """
5615 if not range:
5616 return None, None, None
5617 crg = re.search(r'bytes[ =](\d+)-(\d+)?(?:/(\d+))?', range)
5618 if not crg:
5619 return None, None, None
5620 return int(crg.group(1)), int_or_none(crg.group(2)), int_or_none(crg.group(3))
5621
5622
6b9e832d 5623def read_stdin(what):
5624 eof = 'Ctrl+Z' if compat_os_name == 'nt' else 'Ctrl+D'
5625 write_string(f'Reading {what} from STDIN - EOF ({eof}) to end:\n')
5626 return sys.stdin
5627
5628
a904a7f8
L
5629def determine_file_encoding(data):
5630 """
88f60feb 5631 Detect the text encoding used
a904a7f8
L
5632 @returns (encoding, bytes to skip)
5633 """
5634
88f60feb 5635 # BOM marks are given priority over declarations
a904a7f8 5636 for bom, enc in BOMS:
a904a7f8
L
5637 if data.startswith(bom):
5638 return enc, len(bom)
5639
88f60feb 5640 # Strip off all null bytes to match even when UTF-16 or UTF-32 is used.
5641 # We ignore the endianness to get a good enough match
a904a7f8 5642 data = data.replace(b'\0', b'')
88f60feb 5643 mobj = re.match(rb'(?m)^#\s*coding\s*:\s*(\S+)\s*$', data)
5644 return mobj.group(1).decode() if mobj else None, 0
a904a7f8
L
5645
5646
06e57990 5647class Config:
5648 own_args = None
9e491463 5649 parsed_args = None
06e57990 5650 filename = None
5651 __initialized = False
5652
5653 def __init__(self, parser, label=None):
9e491463 5654 self.parser, self.label = parser, label
06e57990 5655 self._loaded_paths, self.configs = set(), []
5656
5657 def init(self, args=None, filename=None):
5658 assert not self.__initialized
284a60c5 5659 self.own_args, self.filename = args, filename
5660 return self.load_configs()
5661
5662 def load_configs(self):
65662dff 5663 directory = ''
284a60c5 5664 if self.filename:
5665 location = os.path.realpath(self.filename)
65662dff 5666 directory = os.path.dirname(location)
06e57990 5667 if location in self._loaded_paths:
5668 return False
5669 self._loaded_paths.add(location)
5670
284a60c5 5671 self.__initialized = True
5672 opts, _ = self.parser.parse_known_args(self.own_args)
5673 self.parsed_args = self.own_args
9e491463 5674 for location in opts.config_locations or []:
6b9e832d 5675 if location == '-':
1060f82f 5676 if location in self._loaded_paths:
5677 continue
5678 self._loaded_paths.add(location)
6b9e832d 5679 self.append_config(shlex.split(read_stdin('options'), comments=True), label='stdin')
5680 continue
65662dff 5681 location = os.path.join(directory, expand_path(location))
06e57990 5682 if os.path.isdir(location):
5683 location = os.path.join(location, 'yt-dlp.conf')
5684 if not os.path.exists(location):
9e491463 5685 self.parser.error(f'config location {location} does not exist')
06e57990 5686 self.append_config(self.read_file(location), location)
5687 return True
5688
5689 def __str__(self):
5690 label = join_nonempty(
5691 self.label, 'config', f'"{self.filename}"' if self.filename else '',
5692 delim=' ')
5693 return join_nonempty(
5694 self.own_args is not None and f'{label[0].upper()}{label[1:]}: {self.hide_login_info(self.own_args)}',
5695 *(f'\n{c}'.replace('\n', '\n| ')[1:] for c in self.configs),
5696 delim='\n')
5697
7a32c70d 5698 @staticmethod
06e57990 5699 def read_file(filename, default=[]):
5700 try:
a904a7f8 5701 optionf = open(filename, 'rb')
86e5f3ed 5702 except OSError:
06e57990 5703 return default # silently skip if file is not present
a904a7f8
L
5704 try:
5705 enc, skip = determine_file_encoding(optionf.read(512))
5706 optionf.seek(skip, io.SEEK_SET)
5707 except OSError:
5708 enc = None # silently skip read errors
06e57990 5709 try:
5710 # FIXME: https://github.com/ytdl-org/youtube-dl/commit/dfe5fa49aed02cf36ba9f743b11b0903554b5e56
a904a7f8 5711 contents = optionf.read().decode(enc or preferredencoding())
f9934b96 5712 res = shlex.split(contents, comments=True)
44a6fcff 5713 except Exception as err:
5714 raise ValueError(f'Unable to parse "{filename}": {err}')
06e57990 5715 finally:
5716 optionf.close()
5717 return res
5718
7a32c70d 5719 @staticmethod
06e57990 5720 def hide_login_info(opts):
86e5f3ed 5721 PRIVATE_OPTS = {'-p', '--password', '-u', '--username', '--video-password', '--ap-password', '--ap-username'}
06e57990 5722 eqre = re.compile('^(?P<key>' + ('|'.join(re.escape(po) for po in PRIVATE_OPTS)) + ')=.+$')
5723
5724 def _scrub_eq(o):
5725 m = eqre.match(o)
5726 if m:
5727 return m.group('key') + '=PRIVATE'
5728 else:
5729 return o
5730
5731 opts = list(map(_scrub_eq, opts))
5732 for idx, opt in enumerate(opts):
5733 if opt in PRIVATE_OPTS and idx + 1 < len(opts):
5734 opts[idx + 1] = 'PRIVATE'
5735 return opts
5736
5737 def append_config(self, *args, label=None):
9e491463 5738 config = type(self)(self.parser, label)
06e57990 5739 config._loaded_paths = self._loaded_paths
5740 if config.init(*args):
5741 self.configs.append(config)
5742
7a32c70d 5743 @property
06e57990 5744 def all_args(self):
5745 for config in reversed(self.configs):
5746 yield from config.all_args
9e491463 5747 yield from self.parsed_args or []
5748
5749 def parse_known_args(self, **kwargs):
5750 return self.parser.parse_known_args(self.all_args, **kwargs)
06e57990 5751
5752 def parse_args(self):
9e491463 5753 return self.parser.parse_args(self.all_args)
da42679b
LNO
5754
5755
d5d1df8a 5756class WebSocketsWrapper:
da42679b 5757 """Wraps websockets module to use in non-async scopes"""
abfecb7b 5758 pool = None
da42679b 5759
3cea3edd 5760 def __init__(self, url, headers=None, connect=True):
059bc4db 5761 self.loop = asyncio.new_event_loop()
9cd08050 5762 # XXX: "loop" is deprecated
5763 self.conn = websockets.connect(
5764 url, extra_headers=headers, ping_interval=None,
5765 close_timeout=float('inf'), loop=self.loop, ping_timeout=float('inf'))
3cea3edd
LNO
5766 if connect:
5767 self.__enter__()
15dfb392 5768 atexit.register(self.__exit__, None, None, None)
da42679b
LNO
5769
5770 def __enter__(self):
3cea3edd 5771 if not self.pool:
9cd08050 5772 self.pool = self.run_with_loop(self.conn.__aenter__(), self.loop)
da42679b
LNO
5773 return self
5774
5775 def send(self, *args):
5776 self.run_with_loop(self.pool.send(*args), self.loop)
5777
5778 def recv(self, *args):
5779 return self.run_with_loop(self.pool.recv(*args), self.loop)
5780
5781 def __exit__(self, type, value, traceback):
5782 try:
5783 return self.run_with_loop(self.conn.__aexit__(type, value, traceback), self.loop)
5784 finally:
5785 self.loop.close()
15dfb392 5786 self._cancel_all_tasks(self.loop)
da42679b
LNO
5787
5788 # taken from https://github.com/python/cpython/blob/3.9/Lib/asyncio/runners.py with modifications
5789 # for contributors: If there's any new library using asyncio needs to be run in non-async, move these function out of this class
7a32c70d 5790 @staticmethod
da42679b 5791 def run_with_loop(main, loop):
059bc4db 5792 if not asyncio.iscoroutine(main):
da42679b
LNO
5793 raise ValueError(f'a coroutine was expected, got {main!r}')
5794
5795 try:
5796 return loop.run_until_complete(main)
5797 finally:
5798 loop.run_until_complete(loop.shutdown_asyncgens())
5799 if hasattr(loop, 'shutdown_default_executor'):
5800 loop.run_until_complete(loop.shutdown_default_executor())
5801
7a32c70d 5802 @staticmethod
da42679b 5803 def _cancel_all_tasks(loop):
059bc4db 5804 to_cancel = asyncio.all_tasks(loop)
da42679b
LNO
5805
5806 if not to_cancel:
5807 return
5808
5809 for task in to_cancel:
5810 task.cancel()
5811
9cd08050 5812 # XXX: "loop" is removed in python 3.10+
da42679b 5813 loop.run_until_complete(
059bc4db 5814 asyncio.gather(*to_cancel, loop=loop, return_exceptions=True))
da42679b
LNO
5815
5816 for task in to_cancel:
5817 if task.cancelled():
5818 continue
5819 if task.exception() is not None:
5820 loop.call_exception_handler({
5821 'message': 'unhandled exception during asyncio.run() shutdown',
5822 'exception': task.exception(),
5823 'task': task,
5824 })
5825
5826
8b7539d2 5827def merge_headers(*dicts):
08d30158 5828 """Merge dicts of http headers case insensitively, prioritizing the latter ones"""
76aa9913 5829 return {k.title(): v for k, v in itertools.chain.from_iterable(map(dict.items, dicts))}
28787f16 5830
5831
b1f94422 5832def cached_method(f):
5833 """Cache a method"""
5834 signature = inspect.signature(f)
5835
7a32c70d 5836 @functools.wraps(f)
b1f94422 5837 def wrapper(self, *args, **kwargs):
5838 bound_args = signature.bind(self, *args, **kwargs)
5839 bound_args.apply_defaults()
d5d1df8a 5840 key = tuple(bound_args.arguments.values())[1:]
b1f94422 5841
d5d1df8a 5842 cache = vars(self).setdefault('__cached_method__cache', {}).setdefault(f.__name__, {})
b1f94422 5843 if key not in cache:
5844 cache[key] = f(self, *args, **kwargs)
5845 return cache[key]
5846 return wrapper
5847
5848
28787f16 5849class classproperty:
b1f94422 5850 """property access for class methods"""
c487cf00 5851
5852 def __init__(self, func):
5853 functools.update_wrapper(self, func)
5854 self.func = func
28787f16 5855
5856 def __get__(self, _, cls):
c487cf00 5857 return self.func(cls)
19a03940 5858
5859
64fa820c 5860class Namespace(types.SimpleNamespace):
591bb9d3 5861 """Immutable namespace"""
591bb9d3 5862
7896214c 5863 def __iter__(self):
64fa820c 5864 return iter(self.__dict__.values())
7896214c 5865
7a32c70d 5866 @property
64fa820c 5867 def items_(self):
5868 return self.__dict__.items()
9b8ee23b 5869
5870
8dc59305 5871MEDIA_EXTENSIONS = Namespace(
5872 common_video=('avi', 'flv', 'mkv', 'mov', 'mp4', 'webm'),
5873 video=('3g2', '3gp', 'f4v', 'mk3d', 'divx', 'mpg', 'ogv', 'm4v', 'wmv'),
5874 common_audio=('aiff', 'alac', 'flac', 'm4a', 'mka', 'mp3', 'ogg', 'opus', 'wav'),
5875 audio=('aac', 'ape', 'asf', 'f4a', 'f4b', 'm4b', 'm4p', 'm4r', 'oga', 'ogx', 'spx', 'vorbis', 'wma'),
5876 thumbnails=('jpg', 'png', 'webp'),
5877 storyboards=('mhtml', ),
5878 subtitles=('srt', 'vtt', 'ass', 'lrc'),
5879 manifests=('f4f', 'f4m', 'm3u8', 'smil', 'mpd'),
5880)
5881MEDIA_EXTENSIONS.video += MEDIA_EXTENSIONS.common_video
5882MEDIA_EXTENSIONS.audio += MEDIA_EXTENSIONS.common_audio
5883
5884KNOWN_EXTENSIONS = (*MEDIA_EXTENSIONS.video, *MEDIA_EXTENSIONS.audio, *MEDIA_EXTENSIONS.manifests)
5885
5886
be5c1ae8 5887class RetryManager:
5888 """Usage:
5889 for retry in RetryManager(...):
5890 try:
5891 ...
5892 except SomeException as err:
5893 retry.error = err
5894 continue
5895 """
5896 attempt, _error = 0, None
5897
5898 def __init__(self, _retries, _error_callback, **kwargs):
5899 self.retries = _retries or 0
5900 self.error_callback = functools.partial(_error_callback, **kwargs)
5901
5902 def _should_retry(self):
5903 return self._error is not NO_DEFAULT and self.attempt <= self.retries
5904
7a32c70d 5905 @property
be5c1ae8 5906 def error(self):
5907 if self._error is NO_DEFAULT:
5908 return None
5909 return self._error
5910
7a32c70d 5911 @error.setter
be5c1ae8 5912 def error(self, value):
5913 self._error = value
5914
5915 def __iter__(self):
5916 while self._should_retry():
5917 self.error = NO_DEFAULT
5918 self.attempt += 1
5919 yield self
5920 if self.error:
5921 self.error_callback(self.error, self.attempt, self.retries)
5922
7a32c70d 5923 @staticmethod
be5c1ae8 5924 def report_retry(e, count, retries, *, sleep_func, info, warn, error=None, suffix=None):
5925 """Utility function for reporting retries"""
5926 if count > retries:
5927 if error:
5928 return error(f'{e}. Giving up after {count - 1} retries') if count > 1 else error(str(e))
5929 raise e
5930
5931 if not count:
5932 return warn(e)
5933 elif isinstance(e, ExtractorError):
3ce29336 5934 e = remove_end(str_or_none(e.cause) or e.orig_msg, '.')
be5c1ae8 5935 warn(f'{e}. Retrying{format_field(suffix, None, " %s")} ({count}/{retries})...')
5936
5937 delay = float_or_none(sleep_func(n=count - 1)) if callable(sleep_func) else sleep_func
5938 if delay:
5939 info(f'Sleeping {delay:.2f} seconds ...')
5940 time.sleep(delay)
5941
5942
0647d925 5943def make_archive_id(ie, video_id):
5944 ie_key = ie if isinstance(ie, str) else ie.ie_key()
5945 return f'{ie_key.lower()} {video_id}'
5946
5947
a1c5bd82 5948def truncate_string(s, left, right=0):
5949 assert left > 3 and right >= 0
5950 if s is None or len(s) <= left + right:
5951 return s
5952 return f'{s[:left-3]}...{s[-right:]}'
5953
5954
5314b521 5955def orderedSet_from_options(options, alias_dict, *, use_regex=False, start=None):
5956 assert 'all' in alias_dict, '"all" alias is required'
5957 requested = list(start or [])
5958 for val in options:
5959 discard = val.startswith('-')
5960 if discard:
5961 val = val[1:]
5962
5963 if val in alias_dict:
5964 val = alias_dict[val] if not discard else [
5965 i[1:] if i.startswith('-') else f'-{i}' for i in alias_dict[val]]
5966 # NB: Do not allow regex in aliases for performance
5967 requested = orderedSet_from_options(val, alias_dict, start=requested)
5968 continue
5969
5970 current = (filter(re.compile(val, re.I).fullmatch, alias_dict['all']) if use_regex
5971 else [val] if val in alias_dict['all'] else None)
5972 if current is None:
5973 raise ValueError(val)
5974
5975 if discard:
5976 for item in current:
5977 while item in requested:
5978 requested.remove(item)
5979 else:
5980 requested.extend(current)
5981
5982 return orderedSet(requested)
5983
5984
9b8ee23b 5985# Deprecated
5986has_certifi = bool(certifi)
5987has_websockets = bool(websockets)