You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2828 lines
84 KiB

10 years ago
10 years ago
10 years ago
8 years ago
8 years ago
8 years ago
8 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
[utils] Remove Content-encoding from headers after decompression With cn_verification_proxy, our http_response() is called twice, one from PerRequestProxyHandler.proxy_open() and another from normal YoutubeDL.urlopen(). As a result, for proxies honoring Accept-Encoding, the following bug occurs: $ youtube-dl -vs --cn-verification-proxy https://secure.uku.im:993 "test:letv" [debug] System config: [] [debug] User config: [] [debug] Command-line args: ['-vs', '--cn-verification-proxy', 'https://secure.uku.im:993', 'test:letv'] [debug] Encodings: locale UTF-8, fs utf-8, out UTF-8, pref UTF-8 [debug] youtube-dl version 2015.12.23 [debug] Git HEAD: 97f18fa [debug] Python version 3.5.1 - Linux-4.3.3-1-ARCH-x86_64-with-arch-Arch-Linux [debug] exe versions: ffmpeg 2.8.4, ffprobe 2.8.4, rtmpdump 2.4 [debug] Proxy map: {} [TestURL] Test URL: http://www.letv.com/ptv/vplay/22005890.html [Letv] 22005890: Downloading webpage [Letv] 22005890: Downloading playJson data ERROR: Unable to download JSON metadata: Not a gzipped file (b'{"') (caused by OSError('Not a gzipped file (b\'{"\')',)); please report this issue on https://yt-dl.org/bug . Make sure you are using the latest version; see https://yt-dl.org/update on how to update. Be sure to call youtube-dl with the --verbose flag and include its complete output. File "/home/yen/Executables/Multimedia/youtube-dl/youtube_dl/extractor/common.py", line 330, in _request_webpage return self._downloader.urlopen(url_or_request) File "/home/yen/Executables/Multimedia/youtube-dl/youtube_dl/YoutubeDL.py", line 1886, in urlopen return self._opener.open(req, timeout=self._socket_timeout) File "/usr/lib/python3.5/urllib/request.py", line 471, in open response = meth(req, response) File "/home/yen/Executables/Multimedia/youtube-dl/youtube_dl/utils.py", line 773, in http_response raise original_ioerror File "/home/yen/Executables/Multimedia/youtube-dl/youtube_dl/utils.py", line 761, in http_response uncompressed = io.BytesIO(gz.read()) File "/usr/lib/python3.5/gzip.py", line 274, in read return self._buffer.read(size) File "/usr/lib/python3.5/gzip.py", line 461, in read if not self._read_gzip_header(): File "/usr/lib/python3.5/gzip.py", line 409, in _read_gzip_header raise OSError('Not a gzipped file (%r)' % magic)
9 years ago
[utils] Remove Content-encoding from headers after decompression With cn_verification_proxy, our http_response() is called twice, one from PerRequestProxyHandler.proxy_open() and another from normal YoutubeDL.urlopen(). As a result, for proxies honoring Accept-Encoding, the following bug occurs: $ youtube-dl -vs --cn-verification-proxy https://secure.uku.im:993 "test:letv" [debug] System config: [] [debug] User config: [] [debug] Command-line args: ['-vs', '--cn-verification-proxy', 'https://secure.uku.im:993', 'test:letv'] [debug] Encodings: locale UTF-8, fs utf-8, out UTF-8, pref UTF-8 [debug] youtube-dl version 2015.12.23 [debug] Git HEAD: 97f18fa [debug] Python version 3.5.1 - Linux-4.3.3-1-ARCH-x86_64-with-arch-Arch-Linux [debug] exe versions: ffmpeg 2.8.4, ffprobe 2.8.4, rtmpdump 2.4 [debug] Proxy map: {} [TestURL] Test URL: http://www.letv.com/ptv/vplay/22005890.html [Letv] 22005890: Downloading webpage [Letv] 22005890: Downloading playJson data ERROR: Unable to download JSON metadata: Not a gzipped file (b'{"') (caused by OSError('Not a gzipped file (b\'{"\')',)); please report this issue on https://yt-dl.org/bug . Make sure you are using the latest version; see https://yt-dl.org/update on how to update. Be sure to call youtube-dl with the --verbose flag and include its complete output. File "/home/yen/Executables/Multimedia/youtube-dl/youtube_dl/extractor/common.py", line 330, in _request_webpage return self._downloader.urlopen(url_or_request) File "/home/yen/Executables/Multimedia/youtube-dl/youtube_dl/YoutubeDL.py", line 1886, in urlopen return self._opener.open(req, timeout=self._socket_timeout) File "/usr/lib/python3.5/urllib/request.py", line 471, in open response = meth(req, response) File "/home/yen/Executables/Multimedia/youtube-dl/youtube_dl/utils.py", line 773, in http_response raise original_ioerror File "/home/yen/Executables/Multimedia/youtube-dl/youtube_dl/utils.py", line 761, in http_response uncompressed = io.BytesIO(gz.read()) File "/usr/lib/python3.5/gzip.py", line 274, in read return self._buffer.read(size) File "/usr/lib/python3.5/gzip.py", line 461, in read if not self._read_gzip_header(): File "/usr/lib/python3.5/gzip.py", line 409, in _read_gzip_header raise OSError('Not a gzipped file (%r)' % magic)
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
8 years ago
10 years ago
10 years ago
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from __future__ import unicode_literals
  4. import base64
  5. import binascii
  6. import calendar
  7. import codecs
  8. import contextlib
  9. import ctypes
  10. import datetime
  11. import email.utils
  12. import errno
  13. import functools
  14. import gzip
  15. import io
  16. import itertools
  17. import json
  18. import locale
  19. import math
  20. import operator
  21. import os
  22. import pipes
  23. import platform
  24. import re
  25. import socket
  26. import ssl
  27. import subprocess
  28. import sys
  29. import tempfile
  30. import traceback
  31. import xml.etree.ElementTree
  32. import zlib
  33. from .compat import (
  34. compat_HTMLParser,
  35. compat_basestring,
  36. compat_chr,
  37. compat_etree_fromstring,
  38. compat_html_entities,
  39. compat_http_client,
  40. compat_kwargs,
  41. compat_parse_qs,
  42. compat_shlex_quote,
  43. compat_socket_create_connection,
  44. compat_str,
  45. compat_struct_pack,
  46. compat_urllib_error,
  47. compat_urllib_parse,
  48. compat_urllib_parse_urlencode,
  49. compat_urllib_parse_urlparse,
  50. compat_urllib_parse_unquote_plus,
  51. compat_urllib_request,
  52. compat_urlparse,
  53. compat_xpath,
  54. )
  55. from .socks import (
  56. ProxyType,
  57. sockssocket,
  58. )
  59. def register_socks_protocols():
  60. # "Register" SOCKS protocols
  61. # In Python < 2.6.5, urlsplit() suffers from bug https://bugs.python.org/issue7904
  62. # URLs with protocols not in urlparse.uses_netloc are not handled correctly
  63. for scheme in ('socks', 'socks4', 'socks4a', 'socks5'):
  64. if scheme not in compat_urlparse.uses_netloc:
  65. compat_urlparse.uses_netloc.append(scheme)
  66. # This is not clearly defined otherwise
  67. compiled_regex_type = type(re.compile(''))
  68. std_headers = {
  69. 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:10.0) Gecko/20150101 Firefox/44.0 (Chrome)',
  70. 'Accept-Charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',
  71. 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
  72. 'Accept-Encoding': 'gzip, deflate',
  73. 'Accept-Language': 'en-us,en;q=0.5',
  74. }
  75. NO_DEFAULT = object()
  76. ENGLISH_MONTH_NAMES = [
  77. 'January', 'February', 'March', 'April', 'May', 'June',
  78. 'July', 'August', 'September', 'October', 'November', 'December']
  79. KNOWN_EXTENSIONS = (
  80. 'mp4', 'm4a', 'm4p', 'm4b', 'm4r', 'm4v', 'aac',
  81. 'flv', 'f4v', 'f4a', 'f4b',
  82. 'webm', 'ogg', 'ogv', 'oga', 'ogx', 'spx', 'opus',
  83. 'mkv', 'mka', 'mk3d',
  84. 'avi', 'divx',
  85. 'mov',
  86. 'asf', 'wmv', 'wma',
  87. '3gp', '3g2',
  88. 'mp3',
  89. 'flac',
  90. 'ape',
  91. 'wav',
  92. 'f4f', 'f4m', 'm3u8', 'smil')
  93. # needed for sanitizing filenames in restricted mode
  94. ACCENT_CHARS = dict(zip('ÂÃÄÀÁÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖØŒÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõöøœùúûüýþÿ',
  95. itertools.chain('AAAAAA', ['AE'], 'CEEEEIIIIDNOOOOOO', ['OE'], 'UUUUYP', ['ss'],
  96. 'aaaaaa', ['ae'], 'ceeeeiiiionoooooo', ['oe'], 'uuuuypy')))
  97. def preferredencoding():
  98. """Get preferred encoding.
  99. Returns the best encoding scheme for the system, based on
  100. locale.getpreferredencoding() and some further tweaks.
  101. """
  102. try:
  103. pref = locale.getpreferredencoding()
  104. 'TEST'.encode(pref)
  105. except Exception:
  106. pref = 'UTF-8'
  107. return pref
  108. def write_json_file(obj, fn):
  109. """ Encode obj as JSON and write it to fn, atomically if possible """
  110. fn = encodeFilename(fn)
  111. if sys.version_info < (3, 0) and sys.platform != 'win32':
  112. encoding = get_filesystem_encoding()
  113. # os.path.basename returns a bytes object, but NamedTemporaryFile
  114. # will fail if the filename contains non ascii characters unless we
  115. # use a unicode object
  116. path_basename = lambda f: os.path.basename(fn).decode(encoding)
  117. # the same for os.path.dirname
  118. path_dirname = lambda f: os.path.dirname(fn).decode(encoding)
  119. else:
  120. path_basename = os.path.basename
  121. path_dirname = os.path.dirname
  122. args = {
  123. 'suffix': '.tmp',
  124. 'prefix': path_basename(fn) + '.',
  125. 'dir': path_dirname(fn),
  126. 'delete': False,
  127. }
  128. # In Python 2.x, json.dump expects a bytestream.
  129. # In Python 3.x, it writes to a character stream
  130. if sys.version_info < (3, 0):
  131. args['mode'] = 'wb'
  132. else:
  133. args.update({
  134. 'mode': 'w',
  135. 'encoding': 'utf-8',
  136. })
  137. tf = tempfile.NamedTemporaryFile(**compat_kwargs(args))
  138. try:
  139. with tf:
  140. json.dump(obj, tf)
  141. if sys.platform == 'win32':
  142. # Need to remove existing file on Windows, else os.rename raises
  143. # WindowsError or FileExistsError.
  144. try:
  145. os.unlink(fn)
  146. except OSError:
  147. pass
  148. os.rename(tf.name, fn)
  149. except Exception:
  150. try:
  151. os.remove(tf.name)
  152. except OSError:
  153. pass
  154. raise
  155. if sys.version_info >= (2, 7):
  156. def find_xpath_attr(node, xpath, key, val=None):
  157. """ Find the xpath xpath[@key=val] """
  158. assert re.match(r'^[a-zA-Z_-]+$', key)
  159. expr = xpath + ('[@%s]' % key if val is None else "[@%s='%s']" % (key, val))
  160. return node.find(expr)
  161. else:
  162. def find_xpath_attr(node, xpath, key, val=None):
  163. for f in node.findall(compat_xpath(xpath)):
  164. if key not in f.attrib:
  165. continue
  166. if val is None or f.attrib.get(key) == val:
  167. return f
  168. return None
  169. # On python2.6 the xml.etree.ElementTree.Element methods don't support
  170. # the namespace parameter
  171. def xpath_with_ns(path, ns_map):
  172. components = [c.split(':') for c in path.split('/')]
  173. replaced = []
  174. for c in components:
  175. if len(c) == 1:
  176. replaced.append(c[0])
  177. else:
  178. ns, tag = c
  179. replaced.append('{%s}%s' % (ns_map[ns], tag))
  180. return '/'.join(replaced)
  181. def xpath_element(node, xpath, name=None, fatal=False, default=NO_DEFAULT):
  182. def _find_xpath(xpath):
  183. return node.find(compat_xpath(xpath))
  184. if isinstance(xpath, (str, compat_str)):
  185. n = _find_xpath(xpath)
  186. else:
  187. for xp in xpath:
  188. n = _find_xpath(xp)
  189. if n is not None:
  190. break
  191. if n is None:
  192. if default is not NO_DEFAULT:
  193. return default
  194. elif fatal:
  195. name = xpath if name is None else name
  196. raise ExtractorError('Could not find XML element %s' % name)
  197. else:
  198. return None
  199. return n
  200. def xpath_text(node, xpath, name=None, fatal=False, default=NO_DEFAULT):
  201. n = xpath_element(node, xpath, name, fatal=fatal, default=default)
  202. if n is None or n == default:
  203. return n
  204. if n.text is None:
  205. if default is not NO_DEFAULT:
  206. return default
  207. elif fatal:
  208. name = xpath if name is None else name
  209. raise ExtractorError('Could not find XML element\'s text %s' % name)
  210. else:
  211. return None
  212. return n.text
  213. def xpath_attr(node, xpath, key, name=None, fatal=False, default=NO_DEFAULT):
  214. n = find_xpath_attr(node, xpath, key)
  215. if n is None:
  216. if default is not NO_DEFAULT:
  217. return default
  218. elif fatal:
  219. name = '%s[@%s]' % (xpath, key) if name is None else name
  220. raise ExtractorError('Could not find XML attribute %s' % name)
  221. else:
  222. return None
  223. return n.attrib[key]
  224. def get_element_by_id(id, html):
  225. """Return the content of the tag with the specified ID in the passed HTML document"""
  226. return get_element_by_attribute('id', id, html)
  227. def get_element_by_attribute(attribute, value, html):
  228. """Return the content of the tag with the specified attribute in the passed HTML document"""
  229. m = re.search(r'''(?xs)
  230. <([a-zA-Z0-9:._-]+)
  231. (?:\s+[a-zA-Z0-9:._-]+(?:=[a-zA-Z0-9:._-]*|="[^"]*"|='[^']*'))*?
  232. \s+%s=['"]?%s['"]?
  233. (?:\s+[a-zA-Z0-9:._-]+(?:=[a-zA-Z0-9:._-]*|="[^"]*"|='[^']*'))*?
  234. \s*>
  235. (?P<content>.*?)
  236. </\1>
  237. ''' % (re.escape(attribute), re.escape(value)), html)
  238. if not m:
  239. return None
  240. res = m.group('content')
  241. if res.startswith('"') or res.startswith("'"):
  242. res = res[1:-1]
  243. return unescapeHTML(res)
  244. class HTMLAttributeParser(compat_HTMLParser):
  245. """Trivial HTML parser to gather the attributes for a single element"""
  246. def __init__(self):
  247. self.attrs = {}
  248. compat_HTMLParser.__init__(self)
  249. def handle_starttag(self, tag, attrs):
  250. self.attrs = dict(attrs)
  251. def extract_attributes(html_element):
  252. """Given a string for an HTML element such as
  253. <el
  254. a="foo" B="bar" c="&98;az" d=boz
  255. empty= noval entity="&amp;"
  256. sq='"' dq="'"
  257. >
  258. Decode and return a dictionary of attributes.
  259. {
  260. 'a': 'foo', 'b': 'bar', c: 'baz', d: 'boz',
  261. 'empty': '', 'noval': None, 'entity': '&',
  262. 'sq': '"', 'dq': '\''
  263. }.
  264. NB HTMLParser is stricter in Python 2.6 & 3.2 than in later versions,
  265. but the cases in the unit test will work for all of 2.6, 2.7, 3.2-3.5.
  266. """
  267. parser = HTMLAttributeParser()
  268. parser.feed(html_element)
  269. parser.close()
  270. return parser.attrs
  271. def clean_html(html):
  272. """Clean an HTML snippet into a readable string"""
  273. if html is None: # Convenience for sanitizing descriptions etc.
  274. return html
  275. # Newline vs <br />
  276. html = html.replace('\n', ' ')
  277. html = re.sub(r'\s*<\s*br\s*/?\s*>\s*', '\n', html)
  278. html = re.sub(r'<\s*/\s*p\s*>\s*<\s*p[^>]*>', '\n', html)
  279. # Strip html tags
  280. html = re.sub('<.*?>', '', html)
  281. # Replace html entities
  282. html = unescapeHTML(html)
  283. return html.strip()
  284. def sanitize_open(filename, open_mode):
  285. """Try to open the given filename, and slightly tweak it if this fails.
  286. Attempts to open the given filename. If this fails, it tries to change
  287. the filename slightly, step by step, until it's either able to open it
  288. or it fails and raises a final exception, like the standard open()
  289. function.
  290. It returns the tuple (stream, definitive_file_name).
  291. """
  292. try:
  293. if filename == '-':
  294. if sys.platform == 'win32':
  295. import msvcrt
  296. msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
  297. return (sys.stdout.buffer if hasattr(sys.stdout, 'buffer') else sys.stdout, filename)
  298. stream = open(encodeFilename(filename), open_mode)
  299. return (stream, filename)
  300. except (IOError, OSError) as err:
  301. if err.errno in (errno.EACCES,):
  302. raise
  303. # In case of error, try to remove win32 forbidden chars
  304. alt_filename = sanitize_path(filename)
  305. if alt_filename == filename:
  306. raise
  307. else:
  308. # An exception here should be caught in the caller
  309. stream = open(encodeFilename(alt_filename), open_mode)
  310. return (stream, alt_filename)
  311. def timeconvert(timestr):
  312. """Convert RFC 2822 defined time string into system timestamp"""
  313. timestamp = None
  314. timetuple = email.utils.parsedate_tz(timestr)
  315. if timetuple is not None:
  316. timestamp = email.utils.mktime_tz(timetuple)
  317. return timestamp
  318. def sanitize_filename(s, restricted=False, is_id=False):
  319. """Sanitizes a string so it could be used as part of a filename.
  320. If restricted is set, use a stricter subset of allowed characters.
  321. Set is_id if this is not an arbitrary string, but an ID that should be kept if possible
  322. """
  323. def replace_insane(char):
  324. if restricted and char in ACCENT_CHARS:
  325. return ACCENT_CHARS[char]
  326. if char == '?' or ord(char) < 32 or ord(char) == 127:
  327. return ''
  328. elif char == '"':
  329. return '' if restricted else '\''
  330. elif char == ':':
  331. return '_-' if restricted else ' -'
  332. elif char in '\\/|*<>':
  333. return '_'
  334. if restricted and (char in '!&\'()[]{}$;`^,#' or char.isspace()):
  335. return '_'
  336. if restricted and ord(char) > 127:
  337. return '_'
  338. return char
  339. # Handle timestamps
  340. s = re.sub(r'[0-9]+(?::[0-9]+)+', lambda m: m.group(0).replace(':', '_'), s)
  341. result = ''.join(map(replace_insane, s))
  342. if not is_id:
  343. while '__' in result:
  344. result = result.replace('__', '_')
  345. result = result.strip('_')
  346. # Common case of "Foreign band name - English song title"
  347. if restricted and result.startswith('-_'):
  348. result = result[2:]
  349. if result.startswith('-'):
  350. result = '_' + result[len('-'):]
  351. result = result.lstrip('.')
  352. if not result:
  353. result = '_'
  354. return result
  355. def sanitize_path(s):
  356. """Sanitizes and normalizes path on Windows"""
  357. if sys.platform != 'win32':
  358. return s
  359. drive_or_unc, _ = os.path.splitdrive(s)
  360. if sys.version_info < (2, 7) and not drive_or_unc:
  361. drive_or_unc, _ = os.path.splitunc(s)
  362. norm_path = os.path.normpath(remove_start(s, drive_or_unc)).split(os.path.sep)
  363. if drive_or_unc:
  364. norm_path.pop(0)
  365. sanitized_path = [
  366. path_part if path_part in ['.', '..'] else re.sub('(?:[/<>:"\\|\\\\?\\*]|[\s.]$)', '#', path_part)
  367. for path_part in norm_path]
  368. if drive_or_unc:
  369. sanitized_path.insert(0, drive_or_unc + os.path.sep)
  370. return os.path.join(*sanitized_path)
  371. # Prepend protocol-less URLs with `http:` scheme in order to mitigate the number of
  372. # unwanted failures due to missing protocol
  373. def sanitize_url(url):
  374. return 'http:%s' % url if url.startswith('//') else url
  375. def sanitized_Request(url, *args, **kwargs):
  376. return compat_urllib_request.Request(sanitize_url(url), *args, **kwargs)
  377. def orderedSet(iterable):
  378. """ Remove all duplicates from the input iterable """
  379. res = []
  380. for el in iterable:
  381. if el not in res:
  382. res.append(el)
  383. return res
  384. def _htmlentity_transform(entity):
  385. """Transforms an HTML entity to a character."""
  386. # Known non-numeric HTML entity
  387. if entity in compat_html_entities.name2codepoint:
  388. return compat_chr(compat_html_entities.name2codepoint[entity])
  389. mobj = re.match(r'#(x[0-9a-fA-F]+|[0-9]+)', entity)
  390. if mobj is not None:
  391. numstr = mobj.group(1)
  392. if numstr.startswith('x'):
  393. base = 16
  394. numstr = '0%s' % numstr
  395. else:
  396. base = 10
  397. # See https://github.com/rg3/youtube-dl/issues/7518
  398. try:
  399. return compat_chr(int(numstr, base))
  400. except ValueError:
  401. pass
  402. # Unknown entity in name, return its literal representation
  403. return '&%s;' % entity
  404. def unescapeHTML(s):
  405. if s is None:
  406. return None
  407. assert type(s) == compat_str
  408. return re.sub(
  409. r'&([^;]+);', lambda m: _htmlentity_transform(m.group(1)), s)
  410. def get_subprocess_encoding():
  411. if sys.platform == 'win32' and sys.getwindowsversion()[0] >= 5:
  412. # For subprocess calls, encode with locale encoding
  413. # Refer to http://stackoverflow.com/a/9951851/35070
  414. encoding = preferredencoding()
  415. else:
  416. encoding = sys.getfilesystemencoding()
  417. if encoding is None:
  418. encoding = 'utf-8'
  419. return encoding
  420. def encodeFilename(s, for_subprocess=False):
  421. """
  422. @param s The name of the file
  423. """
  424. assert type(s) == compat_str
  425. # Python 3 has a Unicode API
  426. if sys.version_info >= (3, 0):
  427. return s
  428. # Pass '' directly to use Unicode APIs on Windows 2000 and up
  429. # (Detecting Windows NT 4 is tricky because 'major >= 4' would
  430. # match Windows 9x series as well. Besides, NT 4 is obsolete.)
  431. if not for_subprocess and sys.platform == 'win32' and sys.getwindowsversion()[0] >= 5:
  432. return s
  433. # Jython assumes filenames are Unicode strings though reported as Python 2.x compatible
  434. if sys.platform.startswith('java'):
  435. return s
  436. return s.encode(get_subprocess_encoding(), 'ignore')
  437. def decodeFilename(b, for_subprocess=False):
  438. if sys.version_info >= (3, 0):
  439. return b
  440. if not isinstance(b, bytes):
  441. return b
  442. return b.decode(get_subprocess_encoding(), 'ignore')
  443. def encodeArgument(s):
  444. if not isinstance(s, compat_str):
  445. # Legacy code that uses byte strings
  446. # Uncomment the following line after fixing all post processors
  447. # assert False, 'Internal error: %r should be of type %r, is %r' % (s, compat_str, type(s))
  448. s = s.decode('ascii')
  449. return encodeFilename(s, True)
  450. def decodeArgument(b):
  451. return decodeFilename(b, True)
  452. def decodeOption(optval):
  453. if optval is None:
  454. return optval
  455. if isinstance(optval, bytes):
  456. optval = optval.decode(preferredencoding())
  457. assert isinstance(optval, compat_str)
  458. return optval
  459. def formatSeconds(secs):
  460. if secs > 3600:
  461. return '%d:%02d:%02d' % (secs // 3600, (secs % 3600) // 60, secs % 60)
  462. elif secs > 60:
  463. return '%d:%02d' % (secs // 60, secs % 60)
  464. else:
  465. return '%d' % secs
  466. def make_HTTPS_handler(params, **kwargs):
  467. opts_no_check_certificate = params.get('nocheckcertificate', False)
  468. if hasattr(ssl, 'create_default_context'): # Python >= 3.4 or 2.7.9
  469. context = ssl.create_default_context(ssl.Purpose.SERVER_AUTH)
  470. if opts_no_check_certificate:
  471. context.check_hostname = False
  472. context.verify_mode = ssl.CERT_NONE
  473. try:
  474. return YoutubeDLHTTPSHandler(params, context=context, **kwargs)
  475. except TypeError:
  476. # Python 2.7.8
  477. # (create_default_context present but HTTPSHandler has no context=)
  478. pass
  479. if sys.version_info < (3, 2):
  480. return YoutubeDLHTTPSHandler(params, **kwargs)
  481. else: # Python < 3.4
  482. context = ssl.SSLContext(ssl.PROTOCOL_TLSv1)
  483. context.verify_mode = (ssl.CERT_NONE
  484. if opts_no_check_certificate
  485. else ssl.CERT_REQUIRED)
  486. context.set_default_verify_paths()
  487. return YoutubeDLHTTPSHandler(params, context=context, **kwargs)
  488. def bug_reports_message():
  489. if ytdl_is_updateable():
  490. update_cmd = 'type youtube-dl -U to update'
  491. else:
  492. update_cmd = 'see https://yt-dl.org/update on how to update'
  493. msg = '; please report this issue on https://yt-dl.org/bug .'
  494. msg += ' Make sure you are using the latest version; %s.' % update_cmd
  495. msg += ' Be sure to call youtube-dl with the --verbose flag and include its complete output.'
  496. return msg
  497. class ExtractorError(Exception):
  498. """Error during info extraction."""
  499. def __init__(self, msg, tb=None, expected=False, cause=None, video_id=None):
  500. """ tb, if given, is the original traceback (so that it can be printed out).
  501. If expected is set, this is a normal error message and most likely not a bug in youtube-dl.
  502. """
  503. if sys.exc_info()[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError):
  504. expected = True
  505. if video_id is not None:
  506. msg = video_id + ': ' + msg
  507. if cause:
  508. msg += ' (caused by %r)' % cause
  509. if not expected:
  510. msg += bug_reports_message()
  511. super(ExtractorError, self).__init__(msg)
  512. self.traceback = tb
  513. self.exc_info = sys.exc_info() # preserve original exception
  514. self.cause = cause
  515. self.video_id = video_id
  516. def format_traceback(self):
  517. if self.traceback is None:
  518. return None
  519. return ''.join(traceback.format_tb(self.traceback))
  520. class UnsupportedError(ExtractorError):
  521. def __init__(self, url):
  522. super(UnsupportedError, self).__init__(
  523. 'Unsupported URL: %s' % url, expected=True)
  524. self.url = url
  525. class RegexNotFoundError(ExtractorError):
  526. """Error when a regex didn't match"""
  527. pass
  528. class DownloadError(Exception):
  529. """Download Error exception.
  530. This exception may be thrown by FileDownloader objects if they are not
  531. configured to continue on errors. They will contain the appropriate
  532. error message.
  533. """
  534. def __init__(self, msg, exc_info=None):
  535. """ exc_info, if given, is the original exception that caused the trouble (as returned by sys.exc_info()). """
  536. super(DownloadError, self).__init__(msg)
  537. self.exc_info = exc_info
  538. class SameFileError(Exception):
  539. """Same File exception.
  540. This exception will be thrown by FileDownloader objects if they detect
  541. multiple files would have to be downloaded to the same file on disk.
  542. """
  543. pass
  544. class PostProcessingError(Exception):
  545. """Post Processing exception.
  546. This exception may be raised by PostProcessor's .run() method to
  547. indicate an error in the postprocessing task.
  548. """
  549. def __init__(self, msg):
  550. self.msg = msg
  551. class MaxDownloadsReached(Exception):
  552. """ --max-downloads limit has been reached. """
  553. pass
  554. class UnavailableVideoError(Exception):
  555. """Unavailable Format exception.
  556. This exception will be thrown when a video is requested
  557. in a format that is not available for that video.
  558. """
  559. pass
  560. class ContentTooShortError(Exception):
  561. """Content Too Short exception.
  562. This exception may be raised by FileDownloader objects when a file they
  563. download is too small for what the server announced first, indicating
  564. the connection was probably interrupted.
  565. """
  566. def __init__(self, downloaded, expected):
  567. # Both in bytes
  568. self.downloaded = downloaded
  569. self.expected = expected
  570. def _create_http_connection(ydl_handler, http_class, is_https, *args, **kwargs):
  571. # Working around python 2 bug (see http://bugs.python.org/issue17849) by limiting
  572. # expected HTTP responses to meet HTTP/1.0 or later (see also
  573. # https://github.com/rg3/youtube-dl/issues/6727)
  574. if sys.version_info < (3, 0):
  575. kwargs[b'strict'] = True
  576. hc = http_class(*args, **kwargs)
  577. source_address = ydl_handler._params.get('source_address')
  578. if source_address is not None:
  579. sa = (source_address, 0)
  580. if hasattr(hc, 'source_address'): # Python 2.7+
  581. hc.source_address = sa
  582. else: # Python 2.6
  583. def _hc_connect(self, *args, **kwargs):
  584. sock = compat_socket_create_connection(
  585. (self.host, self.port), self.timeout, sa)
  586. if is_https:
  587. self.sock = ssl.wrap_socket(
  588. sock, self.key_file, self.cert_file,
  589. ssl_version=ssl.PROTOCOL_TLSv1)
  590. else:
  591. self.sock = sock
  592. hc.connect = functools.partial(_hc_connect, hc)
  593. return hc
  594. def handle_youtubedl_headers(headers):
  595. filtered_headers = headers
  596. if 'Youtubedl-no-compression' in filtered_headers:
  597. filtered_headers = dict((k, v) for k, v in filtered_headers.items() if k.lower() != 'accept-encoding')
  598. del filtered_headers['Youtubedl-no-compression']
  599. return filtered_headers
  600. class YoutubeDLHandler(compat_urllib_request.HTTPHandler):
  601. """Handler for HTTP requests and responses.
  602. This class, when installed with an OpenerDirector, automatically adds
  603. the standard headers to every HTTP request and handles gzipped and
  604. deflated responses from web servers. If compression is to be avoided in
  605. a particular request, the original request in the program code only has
  606. to include the HTTP header "Youtubedl-no-compression", which will be
  607. removed before making the real request.
  608. Part of this code was copied from:
  609. http://techknack.net/python-urllib2-handlers/
  610. Andrew Rowls, the author of that code, agreed to release it to the
  611. public domain.
  612. """
  613. def __init__(self, params, *args, **kwargs):
  614. compat_urllib_request.HTTPHandler.__init__(self, *args, **kwargs)
  615. self._params = params
  616. def http_open(self, req):
  617. conn_class = compat_http_client.HTTPConnection
  618. socks_proxy = req.headers.get('Ytdl-socks-proxy')
  619. if socks_proxy:
  620. conn_class = make_socks_conn_class(conn_class, socks_proxy)
  621. del req.headers['Ytdl-socks-proxy']
  622. return self.do_open(functools.partial(
  623. _create_http_connection, self, conn_class, False),
  624. req)
  625. @staticmethod
  626. def deflate(data):
  627. try:
  628. return zlib.decompress(data, -zlib.MAX_WBITS)
  629. except zlib.error:
  630. return zlib.decompress(data)
  631. @staticmethod
  632. def addinfourl_wrapper(stream, headers, url, code):
  633. if hasattr(compat_urllib_request.addinfourl, 'getcode'):
  634. return compat_urllib_request.addinfourl(stream, headers, url, code)
  635. ret = compat_urllib_request.addinfourl(stream, headers, url)
  636. ret.code = code
  637. return ret
  638. def http_request(self, req):
  639. # According to RFC 3986, URLs can not contain non-ASCII characters, however this is not
  640. # always respected by websites, some tend to give out URLs with non percent-encoded
  641. # non-ASCII characters (see telemb.py, ard.py [#3412])
  642. # urllib chokes on URLs with non-ASCII characters (see http://bugs.python.org/issue3991)
  643. # To work around aforementioned issue we will replace request's original URL with
  644. # percent-encoded one
  645. # Since redirects are also affected (e.g. http://www.southpark.de/alle-episoden/s18e09)
  646. # the code of this workaround has been moved here from YoutubeDL.urlopen()
  647. url = req.get_full_url()
  648. url_escaped = escape_url(url)
  649. # Substitute URL if any change after escaping
  650. if url != url_escaped:
  651. req = update_Request(req, url=url_escaped)
  652. for h, v in std_headers.items():
  653. # Capitalize is needed because of Python bug 2275: http://bugs.python.org/issue2275
  654. # The dict keys are capitalized because of this bug by urllib
  655. if h.capitalize() not in req.headers:
  656. req.add_header(h, v)
  657. req.headers = handle_youtubedl_headers(req.headers)
  658. if sys.version_info < (2, 7) and '#' in req.get_full_url():
  659. # Python 2.6 is brain-dead when it comes to fragments
  660. req._Request__original = req._Request__original.partition('#')[0]
  661. req._Request__r_type = req._Request__r_type.partition('#')[0]
  662. return req
  663. def http_response(self, req, resp):
  664. old_resp = resp
  665. # gzip
  666. if resp.headers.get('Content-encoding', '') == 'gzip':
  667. content = resp.read()
  668. gz = gzip.GzipFile(fileobj=io.BytesIO(content), mode='rb')
  669. try:
  670. uncompressed = io.BytesIO(gz.read())
  671. except IOError as original_ioerror:
  672. # There may be junk add the end of the file
  673. # See http://stackoverflow.com/q/4928560/35070 for details
  674. for i in range(1, 1024):
  675. try:
  676. gz = gzip.GzipFile(fileobj=io.BytesIO(content[:-i]), mode='rb')
  677. uncompressed = io.BytesIO(gz.read())
  678. except IOError:
  679. continue
  680. break
  681. else:
  682. raise original_ioerror
  683. resp = self.addinfourl_wrapper(uncompressed, old_resp.headers, old_resp.url, old_resp.code)
  684. resp.msg = old_resp.msg
  685. del resp.headers['Content-encoding']
  686. # deflate
  687. if resp.headers.get('Content-encoding', '') == 'deflate':
  688. gz = io.BytesIO(self.deflate(resp.read()))
  689. resp = self.addinfourl_wrapper(gz, old_resp.headers, old_resp.url, old_resp.code)
  690. resp.msg = old_resp.msg
  691. del resp.headers['Content-encoding']
  692. # Percent-encode redirect URL of Location HTTP header to satisfy RFC 3986 (see
  693. # https://github.com/rg3/youtube-dl/issues/6457).
  694. if 300 <= resp.code < 400:
  695. location = resp.headers.get('Location')
  696. if location:
  697. # As of RFC 2616 default charset is iso-8859-1 that is respected by python 3
  698. if sys.version_info >= (3, 0):
  699. location = location.encode('iso-8859-1').decode('utf-8')
  700. location_escaped = escape_url(location)
  701. if location != location_escaped:
  702. del resp.headers['Location']
  703. resp.headers['Location'] = location_escaped
  704. return resp
  705. https_request = http_request
  706. https_response = http_response
  707. def make_socks_conn_class(base_class, socks_proxy):
  708. assert issubclass(base_class, (
  709. compat_http_client.HTTPConnection, compat_http_client.HTTPSConnection))
  710. url_components = compat_urlparse.urlparse(socks_proxy)
  711. if url_components.scheme.lower() == 'socks5':
  712. socks_type = ProxyType.SOCKS5
  713. elif url_components.scheme.lower() in ('socks', 'socks4'):
  714. socks_type = ProxyType.SOCKS4
  715. elif url_components.scheme.lower() == 'socks4a':
  716. socks_type = ProxyType.SOCKS4A
  717. proxy_args = (
  718. socks_type,
  719. url_components.hostname, url_components.port or 1080,
  720. True, # Remote DNS
  721. compat_urllib_parse_unquote_plus(url_components.username),
  722. compat_urllib_parse_unquote_plus(url_components.password),
  723. )
  724. class SocksConnection(base_class):
  725. def connect(self):
  726. self.sock = sockssocket()
  727. self.sock.setproxy(*proxy_args)
  728. if type(self.timeout) in (int, float):
  729. self.sock.settimeout(self.timeout)
  730. self.sock.connect((self.host, self.port))
  731. if isinstance(self, compat_http_client.HTTPSConnection):
  732. if hasattr(self, '_context'): # Python > 2.6
  733. self.sock = self._context.wrap_socket(
  734. self.sock, server_hostname=self.host)
  735. else:
  736. self.sock = ssl.wrap_socket(self.sock)
  737. return SocksConnection
  738. class YoutubeDLHTTPSHandler(compat_urllib_request.HTTPSHandler):
  739. def __init__(self, params, https_conn_class=None, *args, **kwargs):
  740. compat_urllib_request.HTTPSHandler.__init__(self, *args, **kwargs)
  741. self._https_conn_class = https_conn_class or compat_http_client.HTTPSConnection
  742. self._params = params
  743. def https_open(self, req):
  744. kwargs = {}
  745. conn_class = self._https_conn_class
  746. if hasattr(self, '_context'): # python > 2.6
  747. kwargs['context'] = self._context
  748. if hasattr(self, '_check_hostname'): # python 3.x
  749. kwargs['check_hostname'] = self._check_hostname
  750. socks_proxy = req.headers.get('Ytdl-socks-proxy')
  751. if socks_proxy:
  752. conn_class = make_socks_conn_class(conn_class, socks_proxy)
  753. del req.headers['Ytdl-socks-proxy']
  754. return self.do_open(functools.partial(
  755. _create_http_connection, self, conn_class, True),
  756. req, **kwargs)
  757. class YoutubeDLCookieProcessor(compat_urllib_request.HTTPCookieProcessor):
  758. def __init__(self, cookiejar=None):
  759. compat_urllib_request.HTTPCookieProcessor.__init__(self, cookiejar)
  760. def http_response(self, request, response):
  761. # Python 2 will choke on next HTTP request in row if there are non-ASCII
  762. # characters in Set-Cookie HTTP header of last response (see
  763. # https://github.com/rg3/youtube-dl/issues/6769).
  764. # In order to at least prevent crashing we will percent encode Set-Cookie
  765. # header before HTTPCookieProcessor starts processing it.
  766. # if sys.version_info < (3, 0) and response.headers:
  767. # for set_cookie_header in ('Set-Cookie', 'Set-Cookie2'):
  768. # set_cookie = response.headers.get(set_cookie_header)
  769. # if set_cookie:
  770. # set_cookie_escaped = compat_urllib_parse.quote(set_cookie, b"%/;:@&=+$,!~*'()?#[] ")
  771. # if set_cookie != set_cookie_escaped:
  772. # del response.headers[set_cookie_header]
  773. # response.headers[set_cookie_header] = set_cookie_escaped
  774. return compat_urllib_request.HTTPCookieProcessor.http_response(self, request, response)
  775. https_request = compat_urllib_request.HTTPCookieProcessor.http_request
  776. https_response = http_response
  777. def parse_iso8601(date_str, delimiter='T', timezone=None):
  778. """ Return a UNIX timestamp from the given date """
  779. if date_str is None:
  780. return None
  781. date_str = re.sub(r'\.[0-9]+', '', date_str)
  782. if timezone is None:
  783. m = re.search(
  784. r'(?:Z$| ?(?P<sign>\+|-)(?P<hours>[0-9]{2}):?(?P<minutes>[0-9]{2})$)',
  785. date_str)
  786. if not m:
  787. timezone = datetime.timedelta()
  788. else:
  789. date_str = date_str[:-len(m.group(0))]
  790. if not m.group('sign'):
  791. timezone = datetime.timedelta()
  792. else:
  793. sign = 1 if m.group('sign') == '+' else -1
  794. timezone = datetime.timedelta(
  795. hours=sign * int(m.group('hours')),
  796. minutes=sign * int(m.group('minutes')))
  797. try:
  798. date_format = '%Y-%m-%d{0}%H:%M:%S'.format(delimiter)
  799. dt = datetime.datetime.strptime(date_str, date_format) - timezone
  800. return calendar.timegm(dt.timetuple())
  801. except ValueError:
  802. pass
  803. def unified_strdate(date_str, day_first=True):
  804. """Return a string with the date in the format YYYYMMDD"""
  805. if date_str is None:
  806. return None
  807. upload_date = None
  808. # Replace commas
  809. date_str = date_str.replace(',', ' ')
  810. # %z (UTC offset) is only supported in python>=3.2
  811. if not re.match(r'^[0-9]{1,2}-[0-9]{1,2}-[0-9]{4}$', date_str):
  812. date_str = re.sub(r' ?(\+|-)[0-9]{2}:?[0-9]{2}$', '', date_str)
  813. # Remove AM/PM + timezone
  814. date_str = re.sub(r'(?i)\s*(?:AM|PM)(?:\s+[A-Z]+)?', '', date_str)
  815. format_expressions = [
  816. '%d %B %Y',
  817. '%d %b %Y',
  818. '%B %d %Y',
  819. '%b %d %Y',
  820. '%b %dst %Y %I:%M',
  821. '%b %dnd %Y %I:%M',
  822. '%b %dth %Y %I:%M',
  823. '%Y %m %d',
  824. '%Y-%m-%d',
  825. '%Y/%m/%d',
  826. '%Y/%m/%d %H:%M:%S',
  827. '%Y-%m-%d %H:%M:%S',
  828. '%Y-%m-%d %H:%M:%S.%f',
  829. '%d.%m.%Y %H:%M',
  830. '%d.%m.%Y %H.%M',
  831. '%Y-%m-%dT%H:%M:%SZ',
  832. '%Y-%m-%dT%H:%M:%S.%fZ',
  833. '%Y-%m-%dT%H:%M:%S.%f0Z',
  834. '%Y-%m-%dT%H:%M:%S',
  835. '%Y-%m-%dT%H:%M:%S.%f',
  836. '%Y-%m-%dT%H:%M',
  837. ]
  838. if day_first:
  839. format_expressions.extend([
  840. '%d-%m-%Y',
  841. '%d.%m.%Y',
  842. '%d/%m/%Y',
  843. '%d/%m/%y',
  844. '%d/%m/%Y %H:%M:%S',
  845. ])
  846. else:
  847. format_expressions.extend([
  848. '%m-%d-%Y',
  849. '%m.%d.%Y',
  850. '%m/%d/%Y',
  851. '%m/%d/%y',
  852. '%m/%d/%Y %H:%M:%S',
  853. ])
  854. for expression in format_expressions:
  855. try:
  856. upload_date = datetime.datetime.strptime(date_str, expression).strftime('%Y%m%d')
  857. except ValueError:
  858. pass
  859. if upload_date is None:
  860. timetuple = email.utils.parsedate_tz(date_str)
  861. if timetuple:
  862. upload_date = datetime.datetime(*timetuple[:6]).strftime('%Y%m%d')
  863. if upload_date is not None:
  864. return compat_str(upload_date)
  865. def determine_ext(url, default_ext='unknown_video'):
  866. if url is None:
  867. return default_ext
  868. guess = url.partition('?')[0].rpartition('.')[2]
  869. if re.match(r'^[A-Za-z0-9]+$', guess):
  870. return guess
  871. # Try extract ext from URLs like http://example.com/foo/bar.mp4/?download
  872. elif guess.rstrip('/') in KNOWN_EXTENSIONS:
  873. return guess.rstrip('/')
  874. else:
  875. return default_ext
  876. def subtitles_filename(filename, sub_lang, sub_format):
  877. return filename.rsplit('.', 1)[0] + '.' + sub_lang + '.' + sub_format
  878. def date_from_str(date_str):
  879. """
  880. Return a datetime object from a string in the format YYYYMMDD or
  881. (now|today)[+-][0-9](day|week|month|year)(s)?"""
  882. today = datetime.date.today()
  883. if date_str in ('now', 'today'):
  884. return today
  885. if date_str == 'yesterday':
  886. return today - datetime.timedelta(days=1)
  887. match = re.match('(now|today)(?P<sign>[+-])(?P<time>\d+)(?P<unit>day|week|month|year)(s)?', date_str)
  888. if match is not None:
  889. sign = match.group('sign')
  890. time = int(match.group('time'))
  891. if sign == '-':
  892. time = -time
  893. unit = match.group('unit')
  894. # A bad approximation?
  895. if unit == 'month':
  896. unit = 'day'
  897. time *= 30
  898. elif unit == 'year':
  899. unit = 'day'
  900. time *= 365
  901. unit += 's'
  902. delta = datetime.timedelta(**{unit: time})
  903. return today + delta
  904. return datetime.datetime.strptime(date_str, '%Y%m%d').date()
  905. def hyphenate_date(date_str):
  906. """
  907. Convert a date in 'YYYYMMDD' format to 'YYYY-MM-DD' format"""
  908. match = re.match(r'^(\d\d\d\d)(\d\d)(\d\d)$', date_str)
  909. if match is not None:
  910. return '-'.join(match.groups())
  911. else:
  912. return date_str
  913. class DateRange(object):
  914. """Represents a time interval between two dates"""
  915. def __init__(self, start=None, end=None):
  916. """start and end must be strings in the format accepted by date"""
  917. if start is not None:
  918. self.start = date_from_str(start)
  919. else:
  920. self.start = datetime.datetime.min.date()
  921. if end is not None:
  922. self.end = date_from_str(end)
  923. else:
  924. self.end = datetime.datetime.max.date()
  925. if self.start > self.end:
  926. raise ValueError('Date range: "%s" , the start date must be before the end date' % self)
  927. @classmethod
  928. def day(cls, day):
  929. """Returns a range that only contains the given day"""
  930. return cls(day, day)
  931. def __contains__(self, date):
  932. """Check if the date is in the range"""
  933. if not isinstance(date, datetime.date):
  934. date = date_from_str(date)
  935. return self.start <= date <= self.end
  936. def __str__(self):
  937. return '%s - %s' % (self.start.isoformat(), self.end.isoformat())
  938. def platform_name():
  939. """ Returns the platform name as a compat_str """
  940. res = platform.platform()
  941. if isinstance(res, bytes):
  942. res = res.decode(preferredencoding())
  943. assert isinstance(res, compat_str)
  944. return res
  945. def _windows_write_string(s, out):
  946. """ Returns True if the string was written using special methods,
  947. False if it has yet to be written out."""
  948. # Adapted from http://stackoverflow.com/a/3259271/35070
  949. import ctypes
  950. import ctypes.wintypes
  951. WIN_OUTPUT_IDS = {
  952. 1: -11,
  953. 2: -12,
  954. }
  955. try:
  956. fileno = out.fileno()
  957. except AttributeError:
  958. # If the output stream doesn't have a fileno, it's virtual
  959. return False
  960. except io.UnsupportedOperation:
  961. # Some strange Windows pseudo files?
  962. return False
  963. if fileno not in WIN_OUTPUT_IDS:
  964. return False
  965. GetStdHandle = ctypes.WINFUNCTYPE(
  966. ctypes.wintypes.HANDLE, ctypes.wintypes.DWORD)(
  967. (b'GetStdHandle', ctypes.windll.kernel32))
  968. h = GetStdHandle(WIN_OUTPUT_IDS[fileno])
  969. WriteConsoleW = ctypes.WINFUNCTYPE(
  970. ctypes.wintypes.BOOL, ctypes.wintypes.HANDLE, ctypes.wintypes.LPWSTR,
  971. ctypes.wintypes.DWORD, ctypes.POINTER(ctypes.wintypes.DWORD),
  972. ctypes.wintypes.LPVOID)((b'WriteConsoleW', ctypes.windll.kernel32))
  973. written = ctypes.wintypes.DWORD(0)
  974. GetFileType = ctypes.WINFUNCTYPE(ctypes.wintypes.DWORD, ctypes.wintypes.DWORD)((b'GetFileType', ctypes.windll.kernel32))
  975. FILE_TYPE_CHAR = 0x0002
  976. FILE_TYPE_REMOTE = 0x8000
  977. GetConsoleMode = ctypes.WINFUNCTYPE(
  978. ctypes.wintypes.BOOL, ctypes.wintypes.HANDLE,
  979. ctypes.POINTER(ctypes.wintypes.DWORD))(
  980. (b'GetConsoleMode', ctypes.windll.kernel32))
  981. INVALID_HANDLE_VALUE = ctypes.wintypes.DWORD(-1).value
  982. def not_a_console(handle):
  983. if handle == INVALID_HANDLE_VALUE or handle is None:
  984. return True
  985. return ((GetFileType(handle) & ~FILE_TYPE_REMOTE) != FILE_TYPE_CHAR or
  986. GetConsoleMode(handle, ctypes.byref(ctypes.wintypes.DWORD())) == 0)
  987. if not_a_console(h):
  988. return False
  989. def next_nonbmp_pos(s):
  990. try:
  991. return next(i for i, c in enumerate(s) if ord(c) > 0xffff)
  992. except StopIteration:
  993. return len(s)
  994. while s:
  995. count = min(next_nonbmp_pos(s), 1024)
  996. ret = WriteConsoleW(
  997. h, s, count if count else 2, ctypes.byref(written), None)
  998. if ret == 0:
  999. raise OSError('Failed to write string')
  1000. if not count: # We just wrote a non-BMP character
  1001. assert written.value == 2
  1002. s = s[1:]
  1003. else:
  1004. assert written.value > 0
  1005. s = s[written.value:]
  1006. return True
  1007. def write_string(s, out=None, encoding=None):
  1008. if out is None:
  1009. out = sys.stderr
  1010. assert type(s) == compat_str
  1011. if sys.platform == 'win32' and encoding is None and hasattr(out, 'fileno'):
  1012. if _windows_write_string(s, out):
  1013. return
  1014. if ('b' in getattr(out, 'mode', '') or
  1015. sys.version_info[0] < 3): # Python 2 lies about mode of sys.stderr
  1016. byt = s.encode(encoding or preferredencoding(), 'ignore')
  1017. out.write(byt)
  1018. elif hasattr(out, 'buffer'):
  1019. enc = encoding or getattr(out, 'encoding', None) or preferredencoding()
  1020. byt = s.encode(enc, 'ignore')
  1021. out.buffer.write(byt)
  1022. else:
  1023. out.write(s)
  1024. out.flush()
  1025. def bytes_to_intlist(bs):
  1026. if not bs:
  1027. return []
  1028. if isinstance(bs[0], int): # Python 3
  1029. return list(bs)
  1030. else:
  1031. return [ord(c) for c in bs]
  1032. def intlist_to_bytes(xs):
  1033. if not xs:
  1034. return b''
  1035. return compat_struct_pack('%dB' % len(xs), *xs)
  1036. # Cross-platform file locking
  1037. if sys.platform == 'win32':
  1038. import ctypes.wintypes
  1039. import msvcrt
  1040. class OVERLAPPED(ctypes.Structure):
  1041. _fields_ = [
  1042. ('Internal', ctypes.wintypes.LPVOID),
  1043. ('InternalHigh', ctypes.wintypes.LPVOID),
  1044. ('Offset', ctypes.wintypes.DWORD),
  1045. ('OffsetHigh', ctypes.wintypes.DWORD),
  1046. ('hEvent', ctypes.wintypes.HANDLE),
  1047. ]
  1048. kernel32 = ctypes.windll.kernel32
  1049. LockFileEx = kernel32.LockFileEx
  1050. LockFileEx.argtypes = [
  1051. ctypes.wintypes.HANDLE, # hFile
  1052. ctypes.wintypes.DWORD, # dwFlags
  1053. ctypes.wintypes.DWORD, # dwReserved
  1054. ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
  1055. ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
  1056. ctypes.POINTER(OVERLAPPED) # Overlapped
  1057. ]
  1058. LockFileEx.restype = ctypes.wintypes.BOOL
  1059. UnlockFileEx = kernel32.UnlockFileEx
  1060. UnlockFileEx.argtypes = [
  1061. ctypes.wintypes.HANDLE, # hFile
  1062. ctypes.wintypes.DWORD, # dwReserved
  1063. ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
  1064. ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
  1065. ctypes.POINTER(OVERLAPPED) # Overlapped
  1066. ]
  1067. UnlockFileEx.restype = ctypes.wintypes.BOOL
  1068. whole_low = 0xffffffff
  1069. whole_high = 0x7fffffff
  1070. def _lock_file(f, exclusive):
  1071. overlapped = OVERLAPPED()
  1072. overlapped.Offset = 0
  1073. overlapped.OffsetHigh = 0
  1074. overlapped.hEvent = 0
  1075. f._lock_file_overlapped_p = ctypes.pointer(overlapped)
  1076. handle = msvcrt.get_osfhandle(f.fileno())
  1077. if not LockFileEx(handle, 0x2 if exclusive else 0x0, 0,
  1078. whole_low, whole_high, f._lock_file_overlapped_p):
  1079. raise OSError('Locking file failed: %r' % ctypes.FormatError())
  1080. def _unlock_file(f):
  1081. assert f._lock_file_overlapped_p
  1082. handle = msvcrt.get_osfhandle(f.fileno())
  1083. if not UnlockFileEx(handle, 0,
  1084. whole_low, whole_high, f._lock_file_overlapped_p):
  1085. raise OSError('Unlocking file failed: %r' % ctypes.FormatError())
  1086. else:
  1087. # Some platforms, such as Jython, is missing fcntl
  1088. try:
  1089. import fcntl
  1090. def _lock_file(f, exclusive):
  1091. fcntl.flock(f, fcntl.LOCK_EX if exclusive else fcntl.LOCK_SH)
  1092. def _unlock_file(f):
  1093. fcntl.flock(f, fcntl.LOCK_UN)
  1094. except ImportError:
  1095. UNSUPPORTED_MSG = 'file locking is not supported on this platform'
  1096. def _lock_file(f, exclusive):
  1097. raise IOError(UNSUPPORTED_MSG)
  1098. def _unlock_file(f):
  1099. raise IOError(UNSUPPORTED_MSG)
  1100. class locked_file(object):
  1101. def __init__(self, filename, mode, encoding=None):
  1102. assert mode in ['r', 'a', 'w']
  1103. self.f = io.open(filename, mode, encoding=encoding)
  1104. self.mode = mode
  1105. def __enter__(self):
  1106. exclusive = self.mode != 'r'
  1107. try:
  1108. _lock_file(self.f, exclusive)
  1109. except IOError:
  1110. self.f.close()
  1111. raise
  1112. return self
  1113. def __exit__(self, etype, value, traceback):
  1114. try:
  1115. _unlock_file(self.f)
  1116. finally:
  1117. self.f.close()
  1118. def __iter__(self):
  1119. return iter(self.f)
  1120. def write(self, *args):
  1121. return self.f.write(*args)
  1122. def read(self, *args):
  1123. return self.f.read(*args)
  1124. def get_filesystem_encoding():
  1125. encoding = sys.getfilesystemencoding()
  1126. return encoding if encoding is not None else 'utf-8'
  1127. def shell_quote(args):
  1128. quoted_args = []
  1129. encoding = get_filesystem_encoding()
  1130. for a in args:
  1131. if isinstance(a, bytes):
  1132. # We may get a filename encoded with 'encodeFilename'
  1133. a = a.decode(encoding)
  1134. quoted_args.append(pipes.quote(a))
  1135. return ' '.join(quoted_args)
  1136. def smuggle_url(url, data):
  1137. """ Pass additional data in a URL for internal use. """
  1138. sdata = compat_urllib_parse_urlencode(
  1139. {'__youtubedl_smuggle': json.dumps(data)})
  1140. return url + '#' + sdata
  1141. def unsmuggle_url(smug_url, default=None):
  1142. if '#__youtubedl_smuggle' not in smug_url:
  1143. return smug_url, default
  1144. url, _, sdata = smug_url.rpartition('#')
  1145. jsond = compat_parse_qs(sdata)['__youtubedl_smuggle'][0]
  1146. data = json.loads(jsond)
  1147. return url, data
  1148. def format_bytes(bytes):
  1149. if bytes is None:
  1150. return 'N/A'
  1151. if type(bytes) is str:
  1152. bytes = float(bytes)
  1153. if bytes == 0.0:
  1154. exponent = 0
  1155. else:
  1156. exponent = int(math.log(bytes, 1024.0))
  1157. suffix = ['B', 'KiB', 'MiB', 'GiB', 'TiB', 'PiB', 'EiB', 'ZiB', 'YiB'][exponent]
  1158. converted = float(bytes) / float(1024 ** exponent)
  1159. return '%.2f%s' % (converted, suffix)
  1160. def lookup_unit_table(unit_table, s):
  1161. units_re = '|'.join(re.escape(u) for u in unit_table)
  1162. m = re.match(
  1163. r'(?P<num>[0-9]+(?:[,.][0-9]*)?)\s*(?P<unit>%s)\b' % units_re, s)
  1164. if not m:
  1165. return None
  1166. num_str = m.group('num').replace(',', '.')
  1167. mult = unit_table[m.group('unit')]
  1168. return int(float(num_str) * mult)
  1169. def parse_filesize(s):
  1170. if s is None:
  1171. return None
  1172. # The lower-case forms are of course incorrect and unofficial,
  1173. # but we support those too
  1174. _UNIT_TABLE = {
  1175. 'B': 1,
  1176. 'b': 1,
  1177. 'KiB': 1024,
  1178. 'KB': 1000,
  1179. 'kB': 1024,
  1180. 'Kb': 1000,
  1181. 'MiB': 1024 ** 2,
  1182. 'MB': 1000 ** 2,
  1183. 'mB': 1024 ** 2,
  1184. 'Mb': 1000 ** 2,
  1185. 'GiB': 1024 ** 3,
  1186. 'GB': 1000 ** 3,
  1187. 'gB': 1024 ** 3,
  1188. 'Gb': 1000 ** 3,
  1189. 'TiB': 1024 ** 4,
  1190. 'TB': 1000 ** 4,
  1191. 'tB': 1024 ** 4,
  1192. 'Tb': 1000 ** 4,
  1193. 'PiB': 1024 ** 5,
  1194. 'PB': 1000 ** 5,
  1195. 'pB': 1024 ** 5,
  1196. 'Pb': 1000 ** 5,
  1197. 'EiB': 1024 ** 6,
  1198. 'EB': 1000 ** 6,
  1199. 'eB': 1024 ** 6,
  1200. 'Eb': 1000 ** 6,
  1201. 'ZiB': 1024 ** 7,
  1202. 'ZB': 1000 ** 7,
  1203. 'zB': 1024 ** 7,
  1204. 'Zb': 1000 ** 7,
  1205. 'YiB': 1024 ** 8,
  1206. 'YB': 1000 ** 8,
  1207. 'yB': 1024 ** 8,
  1208. 'Yb': 1000 ** 8,
  1209. }
  1210. return lookup_unit_table(_UNIT_TABLE, s)
  1211. def parse_count(s):
  1212. if s is None:
  1213. return None
  1214. s = s.strip()
  1215. if re.match(r'^[\d,.]+$', s):
  1216. return str_to_int(s)
  1217. _UNIT_TABLE = {
  1218. 'k': 1000,
  1219. 'K': 1000,
  1220. 'm': 1000 ** 2,
  1221. 'M': 1000 ** 2,
  1222. 'kk': 1000 ** 2,
  1223. 'KK': 1000 ** 2,
  1224. }
  1225. return lookup_unit_table(_UNIT_TABLE, s)
  1226. def month_by_name(name):
  1227. """ Return the number of a month by (locale-independently) English name """
  1228. try:
  1229. return ENGLISH_MONTH_NAMES.index(name) + 1
  1230. except ValueError:
  1231. return None
  1232. def month_by_abbreviation(abbrev):
  1233. """ Return the number of a month by (locale-independently) English
  1234. abbreviations """
  1235. try:
  1236. return [s[:3] for s in ENGLISH_MONTH_NAMES].index(abbrev) + 1
  1237. except ValueError:
  1238. return None
  1239. def fix_xml_ampersands(xml_str):
  1240. """Replace all the '&' by '&amp;' in XML"""
  1241. return re.sub(
  1242. r'&(?!amp;|lt;|gt;|apos;|quot;|#x[0-9a-fA-F]{,4};|#[0-9]{,4};)',
  1243. '&amp;',
  1244. xml_str)
  1245. def setproctitle(title):
  1246. assert isinstance(title, compat_str)
  1247. # ctypes in Jython is not complete
  1248. # http://bugs.jython.org/issue2148
  1249. if sys.platform.startswith('java'):
  1250. return
  1251. try:
  1252. libc = ctypes.cdll.LoadLibrary('libc.so.6')
  1253. except OSError:
  1254. return
  1255. title_bytes = title.encode('utf-8')
  1256. buf = ctypes.create_string_buffer(len(title_bytes))
  1257. buf.value = title_bytes
  1258. try:
  1259. libc.prctl(15, buf, 0, 0, 0)
  1260. except AttributeError:
  1261. return # Strange libc, just skip this
  1262. def remove_start(s, start):
  1263. if s.startswith(start):
  1264. return s[len(start):]
  1265. return s
  1266. def remove_end(s, end):
  1267. if s.endswith(end):
  1268. return s[:-len(end)]
  1269. return s
  1270. def remove_quotes(s):
  1271. if s is None or len(s) < 2:
  1272. return s
  1273. for quote in ('"', "'", ):
  1274. if s[0] == quote and s[-1] == quote:
  1275. return s[1:-1]
  1276. return s
  1277. def url_basename(url):
  1278. path = compat_urlparse.urlparse(url).path
  1279. return path.strip('/').split('/')[-1]
  1280. class HEADRequest(compat_urllib_request.Request):
  1281. def get_method(self):
  1282. return 'HEAD'
  1283. def int_or_none(v, scale=1, default=None, get_attr=None, invscale=1):
  1284. if get_attr:
  1285. if v is not None:
  1286. v = getattr(v, get_attr, None)
  1287. if v == '':
  1288. v = None
  1289. if v is None:
  1290. return default
  1291. try:
  1292. return int(v) * invscale // scale
  1293. except ValueError:
  1294. return default
  1295. def str_or_none(v, default=None):
  1296. return default if v is None else compat_str(v)
  1297. def str_to_int(int_str):
  1298. """ A more relaxed version of int_or_none """
  1299. if int_str is None:
  1300. return None
  1301. int_str = re.sub(r'[,\.\+]', '', int_str)
  1302. return int(int_str)
  1303. def float_or_none(v, scale=1, invscale=1, default=None):
  1304. if v is None:
  1305. return default
  1306. try:
  1307. return float(v) * invscale / scale
  1308. except ValueError:
  1309. return default
  1310. def parse_duration(s):
  1311. if not isinstance(s, compat_basestring):
  1312. return None
  1313. s = s.strip()
  1314. days, hours, mins, secs, ms = [None] * 5
  1315. m = re.match(r'(?:(?:(?:(?P<days>[0-9]+):)?(?P<hours>[0-9]+):)?(?P<mins>[0-9]+):)?(?P<secs>[0-9]+)(?P<ms>\.[0-9]+)?$', s)
  1316. if m:
  1317. days, hours, mins, secs, ms = m.groups()
  1318. else:
  1319. m = re.match(
  1320. r'''(?ix)(?:P?T)?
  1321. (?:
  1322. (?P<days>[0-9]+)\s*d(?:ays?)?\s*
  1323. )?
  1324. (?:
  1325. (?P<hours>[0-9]+)\s*h(?:ours?)?\s*
  1326. )?
  1327. (?:
  1328. (?P<mins>[0-9]+)\s*m(?:in(?:ute)?s?)?\s*
  1329. )?
  1330. (?:
  1331. (?P<secs>[0-9]+)(?P<ms>\.[0-9]+)?\s*s(?:ec(?:ond)?s?)?\s*
  1332. )?$''', s)
  1333. if m:
  1334. days, hours, mins, secs, ms = m.groups()
  1335. else:
  1336. m = re.match(r'(?i)(?:(?P<hours>[0-9.]+)\s*(?:hours?)|(?P<mins>[0-9.]+)\s*(?:mins?\.?|minutes?)\s*)$', s)
  1337. if m:
  1338. hours, mins = m.groups()
  1339. else:
  1340. return None
  1341. duration = 0
  1342. if secs:
  1343. duration += float(secs)
  1344. if mins:
  1345. duration += float(mins) * 60
  1346. if hours:
  1347. duration += float(hours) * 60 * 60
  1348. if days:
  1349. duration += float(days) * 24 * 60 * 60
  1350. if ms:
  1351. duration += float(ms)
  1352. return duration
  1353. def prepend_extension(filename, ext, expected_real_ext=None):
  1354. name, real_ext = os.path.splitext(filename)
  1355. return (
  1356. '{0}.{1}{2}'.format(name, ext, real_ext)
  1357. if not expected_real_ext or real_ext[1:] == expected_real_ext
  1358. else '{0}.{1}'.format(filename, ext))
  1359. def replace_extension(filename, ext, expected_real_ext=None):
  1360. name, real_ext = os.path.splitext(filename)
  1361. return '{0}.{1}'.format(
  1362. name if not expected_real_ext or real_ext[1:] == expected_real_ext else filename,
  1363. ext)
  1364. def check_executable(exe, args=[]):
  1365. """ Checks if the given binary is installed somewhere in PATH, and returns its name.
  1366. args can be a list of arguments for a short output (like -version) """
  1367. try:
  1368. subprocess.Popen([exe] + args, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
  1369. except OSError:
  1370. return False
  1371. return exe
  1372. def get_exe_version(exe, args=['--version'],
  1373. version_re=None, unrecognized='present'):
  1374. """ Returns the version of the specified executable,
  1375. or False if the executable is not present """
  1376. try:
  1377. out, _ = subprocess.Popen(
  1378. [encodeArgument(exe)] + args,
  1379. stdout=subprocess.PIPE, stderr=subprocess.STDOUT).communicate()
  1380. except OSError:
  1381. return False
  1382. if isinstance(out, bytes): # Python 2.x
  1383. out = out.decode('ascii', 'ignore')
  1384. return detect_exe_version(out, version_re, unrecognized)
  1385. def detect_exe_version(output, version_re=None, unrecognized='present'):
  1386. assert isinstance(output, compat_str)
  1387. if version_re is None:
  1388. version_re = r'version\s+([-0-9._a-zA-Z]+)'
  1389. m = re.search(version_re, output)
  1390. if m:
  1391. return m.group(1)
  1392. else:
  1393. return unrecognized
  1394. class PagedList(object):
  1395. def __len__(self):
  1396. # This is only useful for tests
  1397. return len(self.getslice())
  1398. class OnDemandPagedList(PagedList):
  1399. def __init__(self, pagefunc, pagesize, use_cache=False):
  1400. self._pagefunc = pagefunc
  1401. self._pagesize = pagesize
  1402. self._use_cache = use_cache
  1403. if use_cache:
  1404. self._cache = {}
  1405. def getslice(self, start=0, end=None):
  1406. res = []
  1407. for pagenum in itertools.count(start // self._pagesize):
  1408. firstid = pagenum * self._pagesize
  1409. nextfirstid = pagenum * self._pagesize + self._pagesize
  1410. if start >= nextfirstid:
  1411. continue
  1412. page_results = None
  1413. if self._use_cache:
  1414. page_results = self._cache.get(pagenum)
  1415. if page_results is None:
  1416. page_results = list(self._pagefunc(pagenum))
  1417. if self._use_cache:
  1418. self._cache[pagenum] = page_results
  1419. startv = (
  1420. start % self._pagesize
  1421. if firstid <= start < nextfirstid
  1422. else 0)
  1423. endv = (
  1424. ((end - 1) % self._pagesize) + 1
  1425. if (end is not None and firstid <= end <= nextfirstid)
  1426. else None)
  1427. if startv != 0 or endv is not None:
  1428. page_results = page_results[startv:endv]
  1429. res.extend(page_results)
  1430. # A little optimization - if current page is not "full", ie. does
  1431. # not contain page_size videos then we can assume that this page
  1432. # is the last one - there are no more ids on further pages -
  1433. # i.e. no need to query again.
  1434. if len(page_results) + startv < self._pagesize:
  1435. break
  1436. # If we got the whole page, but the next page is not interesting,
  1437. # break out early as well
  1438. if end == nextfirstid:
  1439. break
  1440. return res
  1441. class InAdvancePagedList(PagedList):
  1442. def __init__(self, pagefunc, pagecount, pagesize):
  1443. self._pagefunc = pagefunc
  1444. self._pagecount = pagecount
  1445. self._pagesize = pagesize
  1446. def getslice(self, start=0, end=None):
  1447. res = []
  1448. start_page = start // self._pagesize
  1449. end_page = (
  1450. self._pagecount if end is None else (end // self._pagesize + 1))
  1451. skip_elems = start - start_page * self._pagesize
  1452. only_more = None if end is None else end - start
  1453. for pagenum in range(start_page, end_page):
  1454. page = list(self._pagefunc(pagenum))
  1455. if skip_elems:
  1456. page = page[skip_elems:]
  1457. skip_elems = None
  1458. if only_more is not None:
  1459. if len(page) < only_more:
  1460. only_more -= len(page)
  1461. else:
  1462. page = page[:only_more]
  1463. res.extend(page)
  1464. break
  1465. res.extend(page)
  1466. return res
  1467. def uppercase_escape(s):
  1468. unicode_escape = codecs.getdecoder('unicode_escape')
  1469. return re.sub(
  1470. r'\\U[0-9a-fA-F]{8}',
  1471. lambda m: unicode_escape(m.group(0))[0],
  1472. s)
  1473. def lowercase_escape(s):
  1474. unicode_escape = codecs.getdecoder('unicode_escape')
  1475. return re.sub(
  1476. r'\\u[0-9a-fA-F]{4}',
  1477. lambda m: unicode_escape(m.group(0))[0],
  1478. s)
  1479. def escape_rfc3986(s):
  1480. """Escape non-ASCII characters as suggested by RFC 3986"""
  1481. if sys.version_info < (3, 0) and isinstance(s, compat_str):
  1482. s = s.encode('utf-8')
  1483. return compat_urllib_parse.quote(s, b"%/;:@&=+$,!~*'()?#[]")
  1484. def escape_url(url):
  1485. """Escape URL as suggested by RFC 3986"""
  1486. url_parsed = compat_urllib_parse_urlparse(url)
  1487. return url_parsed._replace(
  1488. netloc=url_parsed.netloc.encode('idna').decode('ascii'),
  1489. path=escape_rfc3986(url_parsed.path),
  1490. params=escape_rfc3986(url_parsed.params),
  1491. query=escape_rfc3986(url_parsed.query),
  1492. fragment=escape_rfc3986(url_parsed.fragment)
  1493. ).geturl()
  1494. def read_batch_urls(batch_fd):
  1495. def fixup(url):
  1496. if not isinstance(url, compat_str):
  1497. url = url.decode('utf-8', 'replace')
  1498. BOM_UTF8 = '\xef\xbb\xbf'
  1499. if url.startswith(BOM_UTF8):
  1500. url = url[len(BOM_UTF8):]
  1501. url = url.strip()
  1502. if url.startswith(('#', ';', ']')):
  1503. return False
  1504. return url
  1505. with contextlib.closing(batch_fd) as fd:
  1506. return [url for url in map(fixup, fd) if url]
  1507. def urlencode_postdata(*args, **kargs):
  1508. return compat_urllib_parse_urlencode(*args, **kargs).encode('ascii')
  1509. def update_url_query(url, query):
  1510. if not query:
  1511. return url
  1512. parsed_url = compat_urlparse.urlparse(url)
  1513. qs = compat_parse_qs(parsed_url.query)
  1514. qs.update(query)
  1515. return compat_urlparse.urlunparse(parsed_url._replace(
  1516. query=compat_urllib_parse_urlencode(qs, True)))
  1517. def update_Request(req, url=None, data=None, headers={}, query={}):
  1518. req_headers = req.headers.copy()
  1519. req_headers.update(headers)
  1520. req_data = data or req.data
  1521. req_url = update_url_query(url or req.get_full_url(), query)
  1522. req_type = HEADRequest if req.get_method() == 'HEAD' else compat_urllib_request.Request
  1523. new_req = req_type(
  1524. req_url, data=req_data, headers=req_headers,
  1525. origin_req_host=req.origin_req_host, unverifiable=req.unverifiable)
  1526. if hasattr(req, 'timeout'):
  1527. new_req.timeout = req.timeout
  1528. return new_req
  1529. def dict_get(d, key_or_keys, default=None, skip_false_values=True):
  1530. if isinstance(key_or_keys, (list, tuple)):
  1531. for key in key_or_keys:
  1532. if key not in d or d[key] is None or skip_false_values and not d[key]:
  1533. continue
  1534. return d[key]
  1535. return default
  1536. return d.get(key_or_keys, default)
  1537. def encode_compat_str(string, encoding=preferredencoding(), errors='strict'):
  1538. return string if isinstance(string, compat_str) else compat_str(string, encoding, errors)
  1539. US_RATINGS = {
  1540. 'G': 0,
  1541. 'PG': 10,
  1542. 'PG-13': 13,
  1543. 'R': 16,
  1544. 'NC': 18,
  1545. }
  1546. def parse_age_limit(s):
  1547. if s is None:
  1548. return None
  1549. m = re.match(r'^(?P<age>\d{1,2})\+?$', s)
  1550. return int(m.group('age')) if m else US_RATINGS.get(s)
  1551. def strip_jsonp(code):
  1552. return re.sub(
  1553. r'(?s)^[a-zA-Z0-9_.]+\s*\(\s*(.*)\);?\s*?(?://[^\n]*)*$', r'\1', code)
  1554. def js_to_json(code):
  1555. def fix_kv(m):
  1556. v = m.group(0)
  1557. if v in ('true', 'false', 'null'):
  1558. return v
  1559. elif v.startswith('/*') or v == ',':
  1560. return ""
  1561. if v[0] in ("'", '"'):
  1562. v = re.sub(r'(?s)\\.|"', lambda m: {
  1563. '"': '\\"',
  1564. "\\'": "'",
  1565. '\\\n': '',
  1566. '\\x': '\\u00',
  1567. }.get(m.group(0), m.group(0)), v[1:-1])
  1568. INTEGER_TABLE = (
  1569. (r'^(0[xX][0-9a-fA-F]+)', 16),
  1570. (r'^(0+[0-7]+)', 8),
  1571. )
  1572. for regex, base in INTEGER_TABLE:
  1573. im = re.match(regex, v)
  1574. if im:
  1575. i = int(im.group(1), base)
  1576. return '"%d":' % i if v.endswith(':') else '%d' % i
  1577. return '"%s"' % v
  1578. return re.sub(r'''(?sx)
  1579. "(?:[^"\\]*(?:\\\\|\\['"nurtbfx/\n]))*[^"\\]*"|
  1580. '(?:[^'\\]*(?:\\\\|\\['"nurtbfx/\n]))*[^'\\]*'|
  1581. /\*.*?\*/|,(?=\s*[\]}])|
  1582. [a-zA-Z_][.a-zA-Z_0-9]*|
  1583. (?:0[xX][0-9a-fA-F]+|0+[0-7]+)(?:\s*:)?|
  1584. [0-9]+(?=\s*:)
  1585. ''', fix_kv, code)
  1586. def qualities(quality_ids):
  1587. """ Get a numeric quality value out of a list of possible values """
  1588. def q(qid):
  1589. try:
  1590. return quality_ids.index(qid)
  1591. except ValueError:
  1592. return -1
  1593. return q
  1594. DEFAULT_OUTTMPL = '%(title)s-%(id)s.%(ext)s'
  1595. def limit_length(s, length):
  1596. """ Add ellipses to overly long strings """
  1597. if s is None:
  1598. return None
  1599. ELLIPSES = '...'
  1600. if len(s) > length:
  1601. return s[:length - len(ELLIPSES)] + ELLIPSES
  1602. return s
  1603. def version_tuple(v):
  1604. return tuple(int(e) for e in re.split(r'[-.]', v))
  1605. def is_outdated_version(version, limit, assume_new=True):
  1606. if not version:
  1607. return not assume_new
  1608. try:
  1609. return version_tuple(version) < version_tuple(limit)
  1610. except ValueError:
  1611. return not assume_new
  1612. def ytdl_is_updateable():
  1613. """ Returns if youtube-dl can be updated with -U """
  1614. from zipimport import zipimporter
  1615. return isinstance(globals().get('__loader__'), zipimporter) or hasattr(sys, 'frozen')
  1616. def args_to_str(args):
  1617. # Get a short string representation for a subprocess command
  1618. return ' '.join(compat_shlex_quote(a) for a in args)
  1619. def error_to_compat_str(err):
  1620. err_str = str(err)
  1621. # On python 2 error byte string must be decoded with proper
  1622. # encoding rather than ascii
  1623. if sys.version_info[0] < 3:
  1624. err_str = err_str.decode(preferredencoding())
  1625. return err_str
  1626. def mimetype2ext(mt):
  1627. if mt is None:
  1628. return None
  1629. ext = {
  1630. 'audio/mp4': 'm4a',
  1631. }.get(mt)
  1632. if ext is not None:
  1633. return ext
  1634. _, _, res = mt.rpartition('/')
  1635. return {
  1636. '3gpp': '3gp',
  1637. 'smptett+xml': 'tt',
  1638. 'srt': 'srt',
  1639. 'ttaf+xml': 'dfxp',
  1640. 'ttml+xml': 'ttml',
  1641. 'vtt': 'vtt',
  1642. 'x-flv': 'flv',
  1643. 'x-mp4-fragmented': 'mp4',
  1644. 'x-ms-wmv': 'wmv',
  1645. }.get(res, res)
  1646. def urlhandle_detect_ext(url_handle):
  1647. try:
  1648. url_handle.headers
  1649. getheader = lambda h: url_handle.headers[h]
  1650. except AttributeError: # Python < 3
  1651. getheader = url_handle.info().getheader
  1652. cd = getheader('Content-Disposition')
  1653. if cd:
  1654. m = re.match(r'attachment;\s*filename="(?P<filename>[^"]+)"', cd)
  1655. if m:
  1656. e = determine_ext(m.group('filename'), default_ext=None)
  1657. if e:
  1658. return e
  1659. return mimetype2ext(getheader('Content-Type'))
  1660. def encode_data_uri(data, mime_type):
  1661. return 'data:%s;base64,%s' % (mime_type, base64.b64encode(data).decode('ascii'))
  1662. def age_restricted(content_limit, age_limit):
  1663. """ Returns True iff the content should be blocked """
  1664. if age_limit is None: # No limit set
  1665. return False
  1666. if content_limit is None:
  1667. return False # Content available for everyone
  1668. return age_limit < content_limit
  1669. def is_html(first_bytes):
  1670. """ Detect whether a file contains HTML by examining its first bytes. """
  1671. BOMS = [
  1672. (b'\xef\xbb\xbf', 'utf-8'),
  1673. (b'\x00\x00\xfe\xff', 'utf-32-be'),
  1674. (b'\xff\xfe\x00\x00', 'utf-32-le'),
  1675. (b'\xff\xfe', 'utf-16-le'),
  1676. (b'\xfe\xff', 'utf-16-be'),
  1677. ]
  1678. for bom, enc in BOMS:
  1679. if first_bytes.startswith(bom):
  1680. s = first_bytes[len(bom):].decode(enc, 'replace')
  1681. break
  1682. else:
  1683. s = first_bytes.decode('utf-8', 'replace')
  1684. return re.match(r'^\s*<', s)
  1685. def determine_protocol(info_dict):
  1686. protocol = info_dict.get('protocol')
  1687. if protocol is not None:
  1688. return protocol
  1689. url = info_dict['url']
  1690. if url.startswith('rtmp'):
  1691. return 'rtmp'
  1692. elif url.startswith('mms'):
  1693. return 'mms'
  1694. elif url.startswith('rtsp'):
  1695. return 'rtsp'
  1696. ext = determine_ext(url)
  1697. if ext == 'm3u8':
  1698. return 'm3u8'
  1699. elif ext == 'f4m':
  1700. return 'f4m'
  1701. return compat_urllib_parse_urlparse(url).scheme
  1702. def render_table(header_row, data):
  1703. """ Render a list of rows, each as a list of values """
  1704. table = [header_row] + data
  1705. max_lens = [max(len(compat_str(v)) for v in col) for col in zip(*table)]
  1706. format_str = ' '.join('%-' + compat_str(ml + 1) + 's' for ml in max_lens[:-1]) + '%s'
  1707. return '\n'.join(format_str % tuple(row) for row in table)
  1708. def _match_one(filter_part, dct):
  1709. COMPARISON_OPERATORS = {
  1710. '<': operator.lt,
  1711. '<=': operator.le,
  1712. '>': operator.gt,
  1713. '>=': operator.ge,
  1714. '=': operator.eq,
  1715. '!=': operator.ne,
  1716. }
  1717. operator_rex = re.compile(r'''(?x)\s*
  1718. (?P<key>[a-z_]+)
  1719. \s*(?P<op>%s)(?P<none_inclusive>\s*\?)?\s*
  1720. (?:
  1721. (?P<intval>[0-9.]+(?:[kKmMgGtTpPeEzZyY]i?[Bb]?)?)|
  1722. (?P<strval>(?![0-9.])[a-z0-9A-Z]*)
  1723. )
  1724. \s*$
  1725. ''' % '|'.join(map(re.escape, COMPARISON_OPERATORS.keys())))
  1726. m = operator_rex.search(filter_part)
  1727. if m:
  1728. op = COMPARISON_OPERATORS[m.group('op')]
  1729. if m.group('strval') is not None:
  1730. if m.group('op') not in ('=', '!='):
  1731. raise ValueError(
  1732. 'Operator %s does not support string values!' % m.group('op'))
  1733. comparison_value = m.group('strval')
  1734. else:
  1735. try:
  1736. comparison_value = int(m.group('intval'))
  1737. except ValueError:
  1738. comparison_value = parse_filesize(m.group('intval'))
  1739. if comparison_value is None:
  1740. comparison_value = parse_filesize(m.group('intval') + 'B')
  1741. if comparison_value is None:
  1742. raise ValueError(
  1743. 'Invalid integer value %r in filter part %r' % (
  1744. m.group('intval'), filter_part))
  1745. actual_value = dct.get(m.group('key'))
  1746. if actual_value is None:
  1747. return m.group('none_inclusive')
  1748. return op(actual_value, comparison_value)
  1749. UNARY_OPERATORS = {
  1750. '': lambda v: v is not None,
  1751. '!': lambda v: v is None,
  1752. }
  1753. operator_rex = re.compile(r'''(?x)\s*
  1754. (?P<op>%s)\s*(?P<key>[a-z_]+)
  1755. \s*$
  1756. ''' % '|'.join(map(re.escape, UNARY_OPERATORS.keys())))
  1757. m = operator_rex.search(filter_part)
  1758. if m:
  1759. op = UNARY_OPERATORS[m.group('op')]
  1760. actual_value = dct.get(m.group('key'))
  1761. return op(actual_value)
  1762. raise ValueError('Invalid filter part %r' % filter_part)
  1763. def match_str(filter_str, dct):
  1764. """ Filter a dictionary with a simple string syntax. Returns True (=passes filter) or false """
  1765. return all(
  1766. _match_one(filter_part, dct) for filter_part in filter_str.split('&'))
  1767. def match_filter_func(filter_str):
  1768. def _match_func(info_dict):
  1769. if match_str(filter_str, info_dict):
  1770. return None
  1771. else:
  1772. video_title = info_dict.get('title', info_dict.get('id', 'video'))
  1773. return '%s does not pass filter %s, skipping ..' % (video_title, filter_str)
  1774. return _match_func
  1775. def parse_dfxp_time_expr(time_expr):
  1776. if not time_expr:
  1777. return
  1778. mobj = re.match(r'^(?P<time_offset>\d+(?:\.\d+)?)s?$', time_expr)
  1779. if mobj:
  1780. return float(mobj.group('time_offset'))
  1781. mobj = re.match(r'^(\d+):(\d\d):(\d\d(?:(?:\.|:)\d+)?)$', time_expr)
  1782. if mobj:
  1783. return 3600 * int(mobj.group(1)) + 60 * int(mobj.group(2)) + float(mobj.group(3).replace(':', '.'))
  1784. def srt_subtitles_timecode(seconds):
  1785. return '%02d:%02d:%02d,%03d' % (seconds / 3600, (seconds % 3600) / 60, seconds % 60, (seconds % 1) * 1000)
  1786. def dfxp2srt(dfxp_data):
  1787. _x = functools.partial(xpath_with_ns, ns_map={
  1788. 'ttml': 'http://www.w3.org/ns/ttml',
  1789. 'ttaf1': 'http://www.w3.org/2006/10/ttaf1',
  1790. 'ttaf1_0604': 'http://www.w3.org/2006/04/ttaf1',
  1791. })
  1792. class TTMLPElementParser(object):
  1793. out = ''
  1794. def start(self, tag, attrib):
  1795. if tag in (_x('ttml:br'), _x('ttaf1:br'), 'br'):
  1796. self.out += '\n'
  1797. def end(self, tag):
  1798. pass
  1799. def data(self, data):
  1800. self.out += data
  1801. def close(self):
  1802. return self.out.strip()
  1803. def parse_node(node):
  1804. target = TTMLPElementParser()
  1805. parser = xml.etree.ElementTree.XMLParser(target=target)
  1806. parser.feed(xml.etree.ElementTree.tostring(node))
  1807. return parser.close()
  1808. dfxp = compat_etree_fromstring(dfxp_data.encode('utf-8'))
  1809. out = []
  1810. paras = dfxp.findall(_x('.//ttml:p')) or dfxp.findall(_x('.//ttaf1:p')) or dfxp.findall(_x('.//ttaf1_0604:p')) or dfxp.findall('.//p')
  1811. if not paras:
  1812. raise ValueError('Invalid dfxp/TTML subtitle')
  1813. for para, index in zip(paras, itertools.count(1)):
  1814. begin_time = parse_dfxp_time_expr(para.attrib.get('begin'))
  1815. end_time = parse_dfxp_time_expr(para.attrib.get('end'))
  1816. dur = parse_dfxp_time_expr(para.attrib.get('dur'))
  1817. if begin_time is None:
  1818. continue
  1819. if not end_time:
  1820. if not dur:
  1821. continue
  1822. end_time = begin_time + dur
  1823. out.append('%d\n%s --> %s\n%s\n\n' % (
  1824. index,
  1825. srt_subtitles_timecode(begin_time),
  1826. srt_subtitles_timecode(end_time),
  1827. parse_node(para)))
  1828. return ''.join(out)
  1829. def cli_option(params, command_option, param):
  1830. param = params.get(param)
  1831. return [command_option, param] if param is not None else []
  1832. def cli_bool_option(params, command_option, param, true_value='true', false_value='false', separator=None):
  1833. param = params.get(param)
  1834. assert isinstance(param, bool)
  1835. if separator:
  1836. return [command_option + separator + (true_value if param else false_value)]
  1837. return [command_option, true_value if param else false_value]
  1838. def cli_valueless_option(params, command_option, param, expected_value=True):
  1839. param = params.get(param)
  1840. return [command_option] if param == expected_value else []
  1841. def cli_configuration_args(params, param, default=[]):
  1842. ex_args = params.get(param)
  1843. if ex_args is None:
  1844. return default
  1845. assert isinstance(ex_args, list)
  1846. return ex_args
  1847. class ISO639Utils(object):
  1848. # See http://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt
  1849. _lang_map = {
  1850. 'aa': 'aar',
  1851. 'ab': 'abk',
  1852. 'ae': 'ave',
  1853. 'af': 'afr',
  1854. 'ak': 'aka',
  1855. 'am': 'amh',
  1856. 'an': 'arg',
  1857. 'ar': 'ara',
  1858. 'as': 'asm',
  1859. 'av': 'ava',
  1860. 'ay': 'aym',
  1861. 'az': 'aze',
  1862. 'ba': 'bak',
  1863. 'be': 'bel',
  1864. 'bg': 'bul',
  1865. 'bh': 'bih',
  1866. 'bi': 'bis',
  1867. 'bm': 'bam',
  1868. 'bn': 'ben',
  1869. 'bo': 'bod',
  1870. 'br': 'bre',
  1871. 'bs': 'bos',
  1872. 'ca': 'cat',
  1873. 'ce': 'che',
  1874. 'ch': 'cha',
  1875. 'co': 'cos',
  1876. 'cr': 'cre',
  1877. 'cs': 'ces',
  1878. 'cu': 'chu',
  1879. 'cv': 'chv',
  1880. 'cy': 'cym',
  1881. 'da': 'dan',
  1882. 'de': 'deu',
  1883. 'dv': 'div',
  1884. 'dz': 'dzo',
  1885. 'ee': 'ewe',
  1886. 'el': 'ell',
  1887. 'en': 'eng',
  1888. 'eo': 'epo',
  1889. 'es': 'spa',
  1890. 'et': 'est',
  1891. 'eu': 'eus',
  1892. 'fa': 'fas',
  1893. 'ff': 'ful',
  1894. 'fi': 'fin',
  1895. 'fj': 'fij',
  1896. 'fo': 'fao',
  1897. 'fr': 'fra',
  1898. 'fy': 'fry',
  1899. 'ga': 'gle',
  1900. 'gd': 'gla',
  1901. 'gl': 'glg',
  1902. 'gn': 'grn',
  1903. 'gu': 'guj',
  1904. 'gv': 'glv',
  1905. 'ha': 'hau',
  1906. 'he': 'heb',
  1907. 'hi': 'hin',
  1908. 'ho': 'hmo',
  1909. 'hr': 'hrv',
  1910. 'ht': 'hat',
  1911. 'hu': 'hun',
  1912. 'hy': 'hye',
  1913. 'hz': 'her',
  1914. 'ia': 'ina',
  1915. 'id': 'ind',
  1916. 'ie': 'ile',
  1917. 'ig': 'ibo',
  1918. 'ii': 'iii',
  1919. 'ik': 'ipk',
  1920. 'io': 'ido',
  1921. 'is': 'isl',
  1922. 'it': 'ita',
  1923. 'iu': 'iku',
  1924. 'ja': 'jpn',
  1925. 'jv': 'jav',
  1926. 'ka': 'kat',
  1927. 'kg': 'kon',
  1928. 'ki': 'kik',
  1929. 'kj': 'kua',
  1930. 'kk': 'kaz',
  1931. 'kl': 'kal',
  1932. 'km': 'khm',
  1933. 'kn': 'kan',
  1934. 'ko': 'kor',
  1935. 'kr': 'kau',
  1936. 'ks': 'kas',
  1937. 'ku': 'kur',
  1938. 'kv': 'kom',
  1939. 'kw': 'cor',
  1940. 'ky': 'kir',
  1941. 'la': 'lat',
  1942. 'lb': 'ltz',
  1943. 'lg': 'lug',
  1944. 'li': 'lim',
  1945. 'ln': 'lin',
  1946. 'lo': 'lao',
  1947. 'lt': 'lit',
  1948. 'lu': 'lub',
  1949. 'lv': 'lav',
  1950. 'mg': 'mlg',
  1951. 'mh': 'mah',
  1952. 'mi': 'mri',
  1953. 'mk': 'mkd',
  1954. 'ml': 'mal',
  1955. 'mn': 'mon',
  1956. 'mr': 'mar',
  1957. 'ms': 'msa',
  1958. 'mt': 'mlt',
  1959. 'my': 'mya',
  1960. 'na': 'nau',
  1961. 'nb': 'nob',
  1962. 'nd': 'nde',
  1963. 'ne': 'nep',
  1964. 'ng': 'ndo',
  1965. 'nl': 'nld',
  1966. 'nn': 'nno',
  1967. 'no': 'nor',
  1968. 'nr': 'nbl',
  1969. 'nv': 'nav',
  1970. 'ny': 'nya',
  1971. 'oc': 'oci',
  1972. 'oj': 'oji',
  1973. 'om': 'orm',
  1974. 'or': 'ori',
  1975. 'os': 'oss',
  1976. 'pa': 'pan',
  1977. 'pi': 'pli',
  1978. 'pl': 'pol',
  1979. 'ps': 'pus',
  1980. 'pt': 'por',
  1981. 'qu': 'que',
  1982. 'rm': 'roh',
  1983. 'rn': 'run',
  1984. 'ro': 'ron',
  1985. 'ru': 'rus',
  1986. 'rw': 'kin',
  1987. 'sa': 'san',
  1988. 'sc': 'srd',
  1989. 'sd': 'snd',
  1990. 'se': 'sme',
  1991. 'sg': 'sag',
  1992. 'si': 'sin',
  1993. 'sk': 'slk',
  1994. 'sl': 'slv',
  1995. 'sm': 'smo',
  1996. 'sn': 'sna',
  1997. 'so': 'som',
  1998. 'sq': 'sqi',
  1999. 'sr': 'srp',
  2000. 'ss': 'ssw',
  2001. 'st': 'sot',
  2002. 'su': 'sun',
  2003. 'sv': 'swe',
  2004. 'sw': 'swa',
  2005. 'ta': 'tam',
  2006. 'te': 'tel',
  2007. 'tg': 'tgk',
  2008. 'th': 'tha',
  2009. 'ti': 'tir',
  2010. 'tk': 'tuk',
  2011. 'tl': 'tgl',
  2012. 'tn': 'tsn',
  2013. 'to': 'ton',
  2014. 'tr': 'tur',
  2015. 'ts': 'tso',
  2016. 'tt': 'tat',
  2017. 'tw': 'twi',
  2018. 'ty': 'tah',
  2019. 'ug': 'uig',
  2020. 'uk': 'ukr',
  2021. 'ur': 'urd',
  2022. 'uz': 'uzb',
  2023. 've': 'ven',
  2024. 'vi': 'vie',
  2025. 'vo': 'vol',
  2026. 'wa': 'wln',
  2027. 'wo': 'wol',
  2028. 'xh': 'xho',
  2029. 'yi': 'yid',
  2030. 'yo': 'yor',
  2031. 'za': 'zha',
  2032. 'zh': 'zho',
  2033. 'zu': 'zul',
  2034. }
  2035. @classmethod
  2036. def short2long(cls, code):
  2037. """Convert language code from ISO 639-1 to ISO 639-2/T"""
  2038. return cls._lang_map.get(code[:2])
  2039. @classmethod
  2040. def long2short(cls, code):
  2041. """Convert language code from ISO 639-2/T to ISO 639-1"""
  2042. for short_name, long_name in cls._lang_map.items():
  2043. if long_name == code:
  2044. return short_name
  2045. class ISO3166Utils(object):
  2046. # From http://data.okfn.org/data/core/country-list
  2047. _country_map = {
  2048. 'AF': 'Afghanistan',
  2049. 'AX': 'Åland Islands',
  2050. 'AL': 'Albania',
  2051. 'DZ': 'Algeria',
  2052. 'AS': 'American Samoa',
  2053. 'AD': 'Andorra',
  2054. 'AO': 'Angola',
  2055. 'AI': 'Anguilla',
  2056. 'AQ': 'Antarctica',
  2057. 'AG': 'Antigua and Barbuda',
  2058. 'AR': 'Argentina',
  2059. 'AM': 'Armenia',
  2060. 'AW': 'Aruba',
  2061. 'AU': 'Australia',
  2062. 'AT': 'Austria',
  2063. 'AZ': 'Azerbaijan',
  2064. 'BS': 'Bahamas',
  2065. 'BH': 'Bahrain',
  2066. 'BD': 'Bangladesh',
  2067. 'BB': 'Barbados',
  2068. 'BY': 'Belarus',
  2069. 'BE': 'Belgium',
  2070. 'BZ': 'Belize',
  2071. 'BJ': 'Benin',
  2072. 'BM': 'Bermuda',
  2073. 'BT': 'Bhutan',
  2074. 'BO': 'Bolivia, Plurinational State of',
  2075. 'BQ': 'Bonaire, Sint Eustatius and Saba',
  2076. 'BA': 'Bosnia and Herzegovina',
  2077. 'BW': 'Botswana',
  2078. 'BV': 'Bouvet Island',
  2079. 'BR': 'Brazil',
  2080. 'IO': 'British Indian Ocean Territory',
  2081. 'BN': 'Brunei Darussalam',
  2082. 'BG': 'Bulgaria',
  2083. 'BF': 'Burkina Faso',
  2084. 'BI': 'Burundi',
  2085. 'KH': 'Cambodia',
  2086. 'CM': 'Cameroon',
  2087. 'CA': 'Canada',
  2088. 'CV': 'Cape Verde',
  2089. 'KY': 'Cayman Islands',
  2090. 'CF': 'Central African Republic',
  2091. 'TD': 'Chad',
  2092. 'CL': 'Chile',
  2093. 'CN': 'China',
  2094. 'CX': 'Christmas Island',
  2095. 'CC': 'Cocos (Keeling) Islands',
  2096. 'CO': 'Colombia',
  2097. 'KM': 'Comoros',
  2098. 'CG': 'Congo',
  2099. 'CD': 'Congo, the Democratic Republic of the',
  2100. 'CK': 'Cook Islands',
  2101. 'CR': 'Costa Rica',
  2102. 'CI': 'Côte d\'Ivoire',
  2103. 'HR': 'Croatia',
  2104. 'CU': 'Cuba',
  2105. 'CW': 'Curaçao',
  2106. 'CY': 'Cyprus',
  2107. 'CZ': 'Czech Republic',
  2108. 'DK': 'Denmark',
  2109. 'DJ': 'Djibouti',
  2110. 'DM': 'Dominica',
  2111. 'DO': 'Dominican Republic',
  2112. 'EC': 'Ecuador',
  2113. 'EG': 'Egypt',
  2114. 'SV': 'El Salvador',
  2115. 'GQ': 'Equatorial Guinea',
  2116. 'ER': 'Eritrea',
  2117. 'EE': 'Estonia',
  2118. 'ET': 'Ethiopia',
  2119. 'FK': 'Falkland Islands (Malvinas)',
  2120. 'FO': 'Faroe Islands',
  2121. 'FJ': 'Fiji',
  2122. 'FI': 'Finland',
  2123. 'FR': 'France',
  2124. 'GF': 'French Guiana',
  2125. 'PF': 'French Polynesia',
  2126. 'TF': 'French Southern Territories',
  2127. 'GA': 'Gabon',
  2128. 'GM': 'Gambia',
  2129. 'GE': 'Georgia',
  2130. 'DE': 'Germany',
  2131. 'GH': 'Ghana',
  2132. 'GI': 'Gibraltar',
  2133. 'GR': 'Greece',
  2134. 'GL': 'Greenland',
  2135. 'GD': 'Grenada',
  2136. 'GP': 'Guadeloupe',
  2137. 'GU': 'Guam',
  2138. 'GT': 'Guatemala',
  2139. 'GG': 'Guernsey',
  2140. 'GN': 'Guinea',
  2141. 'GW': 'Guinea-Bissau',
  2142. 'GY': 'Guyana',
  2143. 'HT': 'Haiti',
  2144. 'HM': 'Heard Island and McDonald Islands',
  2145. 'VA': 'Holy See (Vatican City State)',
  2146. 'HN': 'Honduras',
  2147. 'HK': 'Hong Kong',
  2148. 'HU': 'Hungary',
  2149. 'IS': 'Iceland',
  2150. 'IN': 'India',
  2151. 'ID': 'Indonesia',
  2152. 'IR': 'Iran, Islamic Republic of',
  2153. 'IQ': 'Iraq',
  2154. 'IE': 'Ireland',
  2155. 'IM': 'Isle of Man',
  2156. 'IL': 'Israel',
  2157. 'IT': 'Italy',
  2158. 'JM': 'Jamaica',
  2159. 'JP': 'Japan',
  2160. 'JE': 'Jersey',
  2161. 'JO': 'Jordan',
  2162. 'KZ': 'Kazakhstan',
  2163. 'KE': 'Kenya',
  2164. 'KI': 'Kiribati',
  2165. 'KP': 'Korea, Democratic People\'s Republic of',
  2166. 'KR': 'Korea, Republic of',
  2167. 'KW': 'Kuwait',
  2168. 'KG': 'Kyrgyzstan',
  2169. 'LA': 'Lao People\'s Democratic Republic',
  2170. 'LV': 'Latvia',
  2171. 'LB': 'Lebanon',
  2172. 'LS': 'Lesotho',
  2173. 'LR': 'Liberia',
  2174. 'LY': 'Libya',
  2175. 'LI': 'Liechtenstein',
  2176. 'LT': 'Lithuania',
  2177. 'LU': 'Luxembourg',
  2178. 'MO': 'Macao',
  2179. 'MK': 'Macedonia, the Former Yugoslav Republic of',
  2180. 'MG': 'Madagascar',
  2181. 'MW': 'Malawi',
  2182. 'MY': 'Malaysia',
  2183. 'MV': 'Maldives',
  2184. 'ML': 'Mali',
  2185. 'MT': 'Malta',
  2186. 'MH': 'Marshall Islands',
  2187. 'MQ': 'Martinique',
  2188. 'MR': 'Mauritania',
  2189. 'MU': 'Mauritius',
  2190. 'YT': 'Mayotte',
  2191. 'MX': 'Mexico',
  2192. 'FM': 'Micronesia, Federated States of',
  2193. 'MD': 'Moldova, Republic of',
  2194. 'MC': 'Monaco',
  2195. 'MN': 'Mongolia',
  2196. 'ME': 'Montenegro',
  2197. 'MS': 'Montserrat',
  2198. 'MA': 'Morocco',
  2199. 'MZ': 'Mozambique',
  2200. 'MM': 'Myanmar',
  2201. 'NA': 'Namibia',
  2202. 'NR': 'Nauru',
  2203. 'NP': 'Nepal',
  2204. 'NL': 'Netherlands',
  2205. 'NC': 'New Caledonia',
  2206. 'NZ': 'New Zealand',
  2207. 'NI': 'Nicaragua',
  2208. 'NE': 'Niger',
  2209. 'NG': 'Nigeria',
  2210. 'NU': 'Niue',
  2211. 'NF': 'Norfolk Island',
  2212. 'MP': 'Northern Mariana Islands',
  2213. 'NO': 'Norway',
  2214. 'OM': 'Oman',
  2215. 'PK': 'Pakistan',
  2216. 'PW': 'Palau',
  2217. 'PS': 'Palestine, State of',
  2218. 'PA': 'Panama',
  2219. 'PG': 'Papua New Guinea',
  2220. 'PY': 'Paraguay',
  2221. 'PE': 'Peru',
  2222. 'PH': 'Philippines',
  2223. 'PN': 'Pitcairn',
  2224. 'PL': 'Poland',
  2225. 'PT': 'Portugal',
  2226. 'PR': 'Puerto Rico',
  2227. 'QA': 'Qatar',
  2228. 'RE': 'Réunion',
  2229. 'RO': 'Romania',
  2230. 'RU': 'Russian Federation',
  2231. 'RW': 'Rwanda',
  2232. 'BL': 'Saint Barthélemy',
  2233. 'SH': 'Saint Helena, Ascension and Tristan da Cunha',
  2234. 'KN': 'Saint Kitts and Nevis',
  2235. 'LC': 'Saint Lucia',
  2236. 'MF': 'Saint Martin (French part)',
  2237. 'PM': 'Saint Pierre and Miquelon',
  2238. 'VC': 'Saint Vincent and the Grenadines',
  2239. 'WS': 'Samoa',
  2240. 'SM': 'San Marino',
  2241. 'ST': 'Sao Tome and Principe',
  2242. 'SA': 'Saudi Arabia',
  2243. 'SN': 'Senegal',
  2244. 'RS': 'Serbia',
  2245. 'SC': 'Seychelles',
  2246. 'SL': 'Sierra Leone',
  2247. 'SG': 'Singapore',
  2248. 'SX': 'Sint Maarten (Dutch part)',
  2249. 'SK': 'Slovakia',
  2250. 'SI': 'Slovenia',
  2251. 'SB': 'Solomon Islands',
  2252. 'SO': 'Somalia',
  2253. 'ZA': 'South Africa',
  2254. 'GS': 'South Georgia and the South Sandwich Islands',
  2255. 'SS': 'South Sudan',
  2256. 'ES': 'Spain',
  2257. 'LK': 'Sri Lanka',
  2258. 'SD': 'Sudan',
  2259. 'SR': 'Suriname',
  2260. 'SJ': 'Svalbard and Jan Mayen',
  2261. 'SZ': 'Swaziland',
  2262. 'SE': 'Sweden',
  2263. 'CH': 'Switzerland',
  2264. 'SY': 'Syrian Arab Republic',
  2265. 'TW': 'Taiwan, Province of China',
  2266. 'TJ': 'Tajikistan',
  2267. 'TZ': 'Tanzania, United Republic of',
  2268. 'TH': 'Thailand',
  2269. 'TL': 'Timor-Leste',
  2270. 'TG': 'Togo',
  2271. 'TK': 'Tokelau',
  2272. 'TO': 'Tonga',
  2273. 'TT': 'Trinidad and Tobago',
  2274. 'TN': 'Tunisia',
  2275. 'TR': 'Turkey',
  2276. 'TM': 'Turkmenistan',
  2277. 'TC': 'Turks and Caicos Islands',
  2278. 'TV': 'Tuvalu',
  2279. 'UG': 'Uganda',
  2280. 'UA': 'Ukraine',
  2281. 'AE': 'United Arab Emirates',
  2282. 'GB': 'United Kingdom',
  2283. 'US': 'United States',
  2284. 'UM': 'United States Minor Outlying Islands',
  2285. 'UY': 'Uruguay',
  2286. 'UZ': 'Uzbekistan',
  2287. 'VU': 'Vanuatu',
  2288. 'VE': 'Venezuela, Bolivarian Republic of',
  2289. 'VN': 'Viet Nam',
  2290. 'VG': 'Virgin Islands, British',
  2291. 'VI': 'Virgin Islands, U.S.',
  2292. 'WF': 'Wallis and Futuna',
  2293. 'EH': 'Western Sahara',
  2294. 'YE': 'Yemen',
  2295. 'ZM': 'Zambia',
  2296. 'ZW': 'Zimbabwe',
  2297. }
  2298. @classmethod
  2299. def short2full(cls, code):
  2300. """Convert an ISO 3166-2 country code to the corresponding full name"""
  2301. return cls._country_map.get(code.upper())
  2302. class PerRequestProxyHandler(compat_urllib_request.ProxyHandler):
  2303. def __init__(self, proxies=None):
  2304. # Set default handlers
  2305. for type in ('http', 'https'):
  2306. setattr(self, '%s_open' % type,
  2307. lambda r, proxy='__noproxy__', type=type, meth=self.proxy_open:
  2308. meth(r, proxy, type))
  2309. return compat_urllib_request.ProxyHandler.__init__(self, proxies)
  2310. def proxy_open(self, req, proxy, type):
  2311. req_proxy = req.headers.get('Ytdl-request-proxy')
  2312. if req_proxy is not None:
  2313. proxy = req_proxy
  2314. del req.headers['Ytdl-request-proxy']
  2315. if proxy == '__noproxy__':
  2316. return None # No Proxy
  2317. if compat_urlparse.urlparse(proxy).scheme.lower() in ('socks', 'socks4', 'socks4a', 'socks5'):
  2318. req.add_header('Ytdl-socks-proxy', proxy)
  2319. # youtube-dl's http/https handlers do wrapping the socket with socks
  2320. return None
  2321. return compat_urllib_request.ProxyHandler.proxy_open(
  2322. self, req, proxy, type)
  2323. def ohdave_rsa_encrypt(data, exponent, modulus):
  2324. '''
  2325. Implement OHDave's RSA algorithm. See http://www.ohdave.com/rsa/
  2326. Input:
  2327. data: data to encrypt, bytes-like object
  2328. exponent, modulus: parameter e and N of RSA algorithm, both integer
  2329. Output: hex string of encrypted data
  2330. Limitation: supports one block encryption only
  2331. '''
  2332. payload = int(binascii.hexlify(data[::-1]), 16)
  2333. encrypted = pow(payload, exponent, modulus)
  2334. return '%x' % encrypted
  2335. def encode_base_n(num, n, table=None):
  2336. FULL_TABLE = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'
  2337. if not table:
  2338. table = FULL_TABLE[:n]
  2339. if n > len(table):
  2340. raise ValueError('base %d exceeds table length %d' % (n, len(table)))
  2341. if num == 0:
  2342. return table[0]
  2343. ret = ''
  2344. while num:
  2345. ret = table[num % n] + ret
  2346. num = num // n
  2347. return ret
  2348. def decode_packed_codes(code):
  2349. mobj = re.search(
  2350. r"}\('(.+)',(\d+),(\d+),'([^']+)'\.split\('\|'\)",
  2351. code)
  2352. obfucasted_code, base, count, symbols = mobj.groups()
  2353. base = int(base)
  2354. count = int(count)
  2355. symbols = symbols.split('|')
  2356. symbol_table = {}
  2357. while count:
  2358. count -= 1
  2359. base_n_count = encode_base_n(count, base)
  2360. symbol_table[base_n_count] = symbols[count] or base_n_count
  2361. return re.sub(
  2362. r'\b(\w+)\b', lambda mobj: symbol_table[mobj.group(0)],
  2363. obfucasted_code)