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