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