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