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