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