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