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.

587 lines
19 KiB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
  1. from __future__ import unicode_literals
  2. import binascii
  3. import collections
  4. import email
  5. import getpass
  6. import io
  7. import optparse
  8. import os
  9. import re
  10. import shlex
  11. import shutil
  12. import socket
  13. import subprocess
  14. import sys
  15. import itertools
  16. import xml.etree.ElementTree
  17. try:
  18. import urllib.request as compat_urllib_request
  19. except ImportError: # Python 2
  20. import urllib2 as compat_urllib_request
  21. try:
  22. import urllib.error as compat_urllib_error
  23. except ImportError: # Python 2
  24. import urllib2 as compat_urllib_error
  25. try:
  26. import urllib.parse as compat_urllib_parse
  27. except ImportError: # Python 2
  28. import urllib as compat_urllib_parse
  29. try:
  30. from urllib.parse import urlparse as compat_urllib_parse_urlparse
  31. except ImportError: # Python 2
  32. from urlparse import urlparse as compat_urllib_parse_urlparse
  33. try:
  34. import urllib.parse as compat_urlparse
  35. except ImportError: # Python 2
  36. import urlparse as compat_urlparse
  37. try:
  38. import urllib.response as compat_urllib_response
  39. except ImportError: # Python 2
  40. import urllib as compat_urllib_response
  41. try:
  42. import http.cookiejar as compat_cookiejar
  43. except ImportError: # Python 2
  44. import cookielib as compat_cookiejar
  45. try:
  46. import http.cookies as compat_cookies
  47. except ImportError: # Python 2
  48. import Cookie as compat_cookies
  49. try:
  50. import html.entities as compat_html_entities
  51. except ImportError: # Python 2
  52. import htmlentitydefs as compat_html_entities
  53. try:
  54. import http.client as compat_http_client
  55. except ImportError: # Python 2
  56. import httplib as compat_http_client
  57. try:
  58. from urllib.error import HTTPError as compat_HTTPError
  59. except ImportError: # Python 2
  60. from urllib2 import HTTPError as compat_HTTPError
  61. try:
  62. from urllib.request import urlretrieve as compat_urlretrieve
  63. except ImportError: # Python 2
  64. from urllib import urlretrieve as compat_urlretrieve
  65. try:
  66. from html.parser import HTMLParser as compat_HTMLParser
  67. except ImportError: # Python 2
  68. from HTMLParser import HTMLParser as compat_HTMLParser
  69. try:
  70. from subprocess import DEVNULL
  71. compat_subprocess_get_DEVNULL = lambda: DEVNULL
  72. except ImportError:
  73. compat_subprocess_get_DEVNULL = lambda: open(os.path.devnull, 'w')
  74. try:
  75. import http.server as compat_http_server
  76. except ImportError:
  77. import BaseHTTPServer as compat_http_server
  78. try:
  79. compat_str = unicode # Python 2
  80. except NameError:
  81. compat_str = str
  82. try:
  83. from urllib.parse import unquote_to_bytes as compat_urllib_parse_unquote_to_bytes
  84. from urllib.parse import unquote as compat_urllib_parse_unquote
  85. from urllib.parse import unquote_plus as compat_urllib_parse_unquote_plus
  86. except ImportError: # Python 2
  87. _asciire = (compat_urllib_parse._asciire if hasattr(compat_urllib_parse, '_asciire')
  88. else re.compile('([\x00-\x7f]+)'))
  89. # HACK: The following are the correct unquote_to_bytes, unquote and unquote_plus
  90. # implementations from cpython 3.4.3's stdlib. Python 2's version
  91. # is apparently broken (see https://github.com/rg3/youtube-dl/pull/6244)
  92. def compat_urllib_parse_unquote_to_bytes(string):
  93. """unquote_to_bytes('abc%20def') -> b'abc def'."""
  94. # Note: strings are encoded as UTF-8. This is only an issue if it contains
  95. # unescaped non-ASCII characters, which URIs should not.
  96. if not string:
  97. # Is it a string-like object?
  98. string.split
  99. return b''
  100. if isinstance(string, compat_str):
  101. string = string.encode('utf-8')
  102. bits = string.split(b'%')
  103. if len(bits) == 1:
  104. return string
  105. res = [bits[0]]
  106. append = res.append
  107. for item in bits[1:]:
  108. try:
  109. append(compat_urllib_parse._hextochr[item[:2]])
  110. append(item[2:])
  111. except KeyError:
  112. append(b'%')
  113. append(item)
  114. return b''.join(res)
  115. def compat_urllib_parse_unquote(string, encoding='utf-8', errors='replace'):
  116. """Replace %xx escapes by their single-character equivalent. The optional
  117. encoding and errors parameters specify how to decode percent-encoded
  118. sequences into Unicode characters, as accepted by the bytes.decode()
  119. method.
  120. By default, percent-encoded sequences are decoded with UTF-8, and invalid
  121. sequences are replaced by a placeholder character.
  122. unquote('abc%20def') -> 'abc def'.
  123. """
  124. if '%' not in string:
  125. string.split
  126. return string
  127. if encoding is None:
  128. encoding = 'utf-8'
  129. if errors is None:
  130. errors = 'replace'
  131. bits = _asciire.split(string)
  132. res = [bits[0]]
  133. append = res.append
  134. for i in range(1, len(bits), 2):
  135. append(compat_urllib_parse_unquote_to_bytes(bits[i]).decode(encoding, errors))
  136. append(bits[i + 1])
  137. return ''.join(res)
  138. def compat_urllib_parse_unquote_plus(string, encoding='utf-8', errors='replace'):
  139. """Like unquote(), but also replace plus signs by spaces, as required for
  140. unquoting HTML form values.
  141. unquote_plus('%7e/abc+def') -> '~/abc def'
  142. """
  143. string = string.replace('+', ' ')
  144. return compat_urllib_parse_unquote(string, encoding, errors)
  145. try:
  146. from urllib.request import DataHandler as compat_urllib_request_DataHandler
  147. except ImportError: # Python < 3.4
  148. # Ported from CPython 98774:1733b3bd46db, Lib/urllib/request.py
  149. class compat_urllib_request_DataHandler(compat_urllib_request.BaseHandler):
  150. def data_open(self, req):
  151. # data URLs as specified in RFC 2397.
  152. #
  153. # ignores POSTed data
  154. #
  155. # syntax:
  156. # dataurl := "data:" [ mediatype ] [ ";base64" ] "," data
  157. # mediatype := [ type "/" subtype ] *( ";" parameter )
  158. # data := *urlchar
  159. # parameter := attribute "=" value
  160. url = req.get_full_url()
  161. scheme, data = url.split(':', 1)
  162. mediatype, data = data.split(',', 1)
  163. # even base64 encoded data URLs might be quoted so unquote in any case:
  164. data = compat_urllib_parse_unquote_to_bytes(data)
  165. if mediatype.endswith(';base64'):
  166. data = binascii.a2b_base64(data)
  167. mediatype = mediatype[:-7]
  168. if not mediatype:
  169. mediatype = 'text/plain;charset=US-ASCII'
  170. headers = email.message_from_string(
  171. 'Content-type: %s\nContent-length: %d\n' % (mediatype, len(data)))
  172. return compat_urllib_response.addinfourl(io.BytesIO(data), headers, url)
  173. try:
  174. compat_basestring = basestring # Python 2
  175. except NameError:
  176. compat_basestring = str
  177. try:
  178. compat_chr = unichr # Python 2
  179. except NameError:
  180. compat_chr = chr
  181. try:
  182. from xml.etree.ElementTree import ParseError as compat_xml_parse_error
  183. except ImportError: # Python 2.6
  184. from xml.parsers.expat import ExpatError as compat_xml_parse_error
  185. if sys.version_info[0] >= 3:
  186. compat_etree_fromstring = xml.etree.ElementTree.fromstring
  187. else:
  188. # python 2.x tries to encode unicode strings with ascii (see the
  189. # XMLParser._fixtext method)
  190. etree = xml.etree.ElementTree
  191. try:
  192. _etree_iter = etree.Element.iter
  193. except AttributeError: # Python <=2.6
  194. def _etree_iter(root):
  195. for el in root.findall('*'):
  196. yield el
  197. for sub in _etree_iter(el):
  198. yield sub
  199. # on 2.6 XML doesn't have a parser argument, function copied from CPython
  200. # 2.7 source
  201. def _XML(text, parser=None):
  202. if not parser:
  203. parser = etree.XMLParser(target=etree.TreeBuilder())
  204. parser.feed(text)
  205. return parser.close()
  206. def _element_factory(*args, **kwargs):
  207. el = etree.Element(*args, **kwargs)
  208. for k, v in el.items():
  209. if isinstance(v, bytes):
  210. el.set(k, v.decode('utf-8'))
  211. return el
  212. def compat_etree_fromstring(text):
  213. doc = _XML(text, parser=etree.XMLParser(target=etree.TreeBuilder(element_factory=_element_factory)))
  214. for el in _etree_iter(doc):
  215. if el.text is not None and isinstance(el.text, bytes):
  216. el.text = el.text.decode('utf-8')
  217. return doc
  218. try:
  219. from urllib.parse import parse_qs as compat_parse_qs
  220. except ImportError: # Python 2
  221. # HACK: The following is the correct parse_qs implementation from cpython 3's stdlib.
  222. # Python 2's version is apparently totally broken
  223. def _parse_qsl(qs, keep_blank_values=False, strict_parsing=False,
  224. encoding='utf-8', errors='replace'):
  225. qs, _coerce_result = qs, compat_str
  226. pairs = [s2 for s1 in qs.split('&') for s2 in s1.split(';')]
  227. r = []
  228. for name_value in pairs:
  229. if not name_value and not strict_parsing:
  230. continue
  231. nv = name_value.split('=', 1)
  232. if len(nv) != 2:
  233. if strict_parsing:
  234. raise ValueError('bad query field: %r' % (name_value,))
  235. # Handle case of a control-name with no equal sign
  236. if keep_blank_values:
  237. nv.append('')
  238. else:
  239. continue
  240. if len(nv[1]) or keep_blank_values:
  241. name = nv[0].replace('+', ' ')
  242. name = compat_urllib_parse_unquote(
  243. name, encoding=encoding, errors=errors)
  244. name = _coerce_result(name)
  245. value = nv[1].replace('+', ' ')
  246. value = compat_urllib_parse_unquote(
  247. value, encoding=encoding, errors=errors)
  248. value = _coerce_result(value)
  249. r.append((name, value))
  250. return r
  251. def compat_parse_qs(qs, keep_blank_values=False, strict_parsing=False,
  252. encoding='utf-8', errors='replace'):
  253. parsed_result = {}
  254. pairs = _parse_qsl(qs, keep_blank_values, strict_parsing,
  255. encoding=encoding, errors=errors)
  256. for name, value in pairs:
  257. if name in parsed_result:
  258. parsed_result[name].append(value)
  259. else:
  260. parsed_result[name] = [value]
  261. return parsed_result
  262. try:
  263. from shlex import quote as shlex_quote
  264. except ImportError: # Python < 3.3
  265. def shlex_quote(s):
  266. if re.match(r'^[-_\w./]+$', s):
  267. return s
  268. else:
  269. return "'" + s.replace("'", "'\"'\"'") + "'"
  270. if sys.version_info >= (2, 7, 3):
  271. compat_shlex_split = shlex.split
  272. else:
  273. # Working around shlex issue with unicode strings on some python 2
  274. # versions (see http://bugs.python.org/issue1548891)
  275. def compat_shlex_split(s, comments=False, posix=True):
  276. if isinstance(s, compat_str):
  277. s = s.encode('utf-8')
  278. return shlex.split(s, comments, posix)
  279. def compat_ord(c):
  280. if type(c) is int:
  281. return c
  282. else:
  283. return ord(c)
  284. if sys.version_info >= (3, 0):
  285. compat_getenv = os.getenv
  286. compat_expanduser = os.path.expanduser
  287. else:
  288. # Environment variables should be decoded with filesystem encoding.
  289. # Otherwise it will fail if any non-ASCII characters present (see #3854 #3217 #2918)
  290. def compat_getenv(key, default=None):
  291. from .utils import get_filesystem_encoding
  292. env = os.getenv(key, default)
  293. if env:
  294. env = env.decode(get_filesystem_encoding())
  295. return env
  296. # HACK: The default implementations of os.path.expanduser from cpython do not decode
  297. # environment variables with filesystem encoding. We will work around this by
  298. # providing adjusted implementations.
  299. # The following are os.path.expanduser implementations from cpython 2.7.8 stdlib
  300. # for different platforms with correct environment variables decoding.
  301. if os.name == 'posix':
  302. def compat_expanduser(path):
  303. """Expand ~ and ~user constructions. If user or $HOME is unknown,
  304. do nothing."""
  305. if not path.startswith('~'):
  306. return path
  307. i = path.find('/', 1)
  308. if i < 0:
  309. i = len(path)
  310. if i == 1:
  311. if 'HOME' not in os.environ:
  312. import pwd
  313. userhome = pwd.getpwuid(os.getuid()).pw_dir
  314. else:
  315. userhome = compat_getenv('HOME')
  316. else:
  317. import pwd
  318. try:
  319. pwent = pwd.getpwnam(path[1:i])
  320. except KeyError:
  321. return path
  322. userhome = pwent.pw_dir
  323. userhome = userhome.rstrip('/')
  324. return (userhome + path[i:]) or '/'
  325. elif os.name == 'nt' or os.name == 'ce':
  326. def compat_expanduser(path):
  327. """Expand ~ and ~user constructs.
  328. If user or $HOME is unknown, do nothing."""
  329. if path[:1] != '~':
  330. return path
  331. i, n = 1, len(path)
  332. while i < n and path[i] not in '/\\':
  333. i = i + 1
  334. if 'HOME' in os.environ:
  335. userhome = compat_getenv('HOME')
  336. elif 'USERPROFILE' in os.environ:
  337. userhome = compat_getenv('USERPROFILE')
  338. elif 'HOMEPATH' not in os.environ:
  339. return path
  340. else:
  341. try:
  342. drive = compat_getenv('HOMEDRIVE')
  343. except KeyError:
  344. drive = ''
  345. userhome = os.path.join(drive, compat_getenv('HOMEPATH'))
  346. if i != 1: # ~user
  347. userhome = os.path.join(os.path.dirname(userhome), path[1:i])
  348. return userhome + path[i:]
  349. else:
  350. compat_expanduser = os.path.expanduser
  351. if sys.version_info < (3, 0):
  352. def compat_print(s):
  353. from .utils import preferredencoding
  354. print(s.encode(preferredencoding(), 'xmlcharrefreplace'))
  355. else:
  356. def compat_print(s):
  357. assert isinstance(s, compat_str)
  358. print(s)
  359. try:
  360. subprocess_check_output = subprocess.check_output
  361. except AttributeError:
  362. def subprocess_check_output(*args, **kwargs):
  363. assert 'input' not in kwargs
  364. p = subprocess.Popen(*args, stdout=subprocess.PIPE, **kwargs)
  365. output, _ = p.communicate()
  366. ret = p.poll()
  367. if ret:
  368. raise subprocess.CalledProcessError(ret, p.args, output=output)
  369. return output
  370. if sys.version_info < (3, 0) and sys.platform == 'win32':
  371. def compat_getpass(prompt, *args, **kwargs):
  372. if isinstance(prompt, compat_str):
  373. from .utils import preferredencoding
  374. prompt = prompt.encode(preferredencoding())
  375. return getpass.getpass(prompt, *args, **kwargs)
  376. else:
  377. compat_getpass = getpass.getpass
  378. # Python < 2.6.5 require kwargs to be bytes
  379. try:
  380. def _testfunc(x):
  381. pass
  382. _testfunc(**{'x': 0})
  383. except TypeError:
  384. def compat_kwargs(kwargs):
  385. return dict((bytes(k), v) for k, v in kwargs.items())
  386. else:
  387. compat_kwargs = lambda kwargs: kwargs
  388. if sys.version_info < (2, 7):
  389. def compat_socket_create_connection(address, timeout, source_address=None):
  390. host, port = address
  391. err = None
  392. for res in socket.getaddrinfo(host, port, 0, socket.SOCK_STREAM):
  393. af, socktype, proto, canonname, sa = res
  394. sock = None
  395. try:
  396. sock = socket.socket(af, socktype, proto)
  397. sock.settimeout(timeout)
  398. if source_address:
  399. sock.bind(source_address)
  400. sock.connect(sa)
  401. return sock
  402. except socket.error as _:
  403. err = _
  404. if sock is not None:
  405. sock.close()
  406. if err is not None:
  407. raise err
  408. else:
  409. raise socket.error('getaddrinfo returns an empty list')
  410. else:
  411. compat_socket_create_connection = socket.create_connection
  412. # Fix https://github.com/rg3/youtube-dl/issues/4223
  413. # See http://bugs.python.org/issue9161 for what is broken
  414. def workaround_optparse_bug9161():
  415. op = optparse.OptionParser()
  416. og = optparse.OptionGroup(op, 'foo')
  417. try:
  418. og.add_option('-t')
  419. except TypeError:
  420. real_add_option = optparse.OptionGroup.add_option
  421. def _compat_add_option(self, *args, **kwargs):
  422. enc = lambda v: (
  423. v.encode('ascii', 'replace') if isinstance(v, compat_str)
  424. else v)
  425. bargs = [enc(a) for a in args]
  426. bkwargs = dict(
  427. (k, enc(v)) for k, v in kwargs.items())
  428. return real_add_option(self, *bargs, **bkwargs)
  429. optparse.OptionGroup.add_option = _compat_add_option
  430. if hasattr(shutil, 'get_terminal_size'): # Python >= 3.3
  431. compat_get_terminal_size = shutil.get_terminal_size
  432. else:
  433. _terminal_size = collections.namedtuple('terminal_size', ['columns', 'lines'])
  434. def compat_get_terminal_size(fallback=(80, 24)):
  435. columns = compat_getenv('COLUMNS')
  436. if columns:
  437. columns = int(columns)
  438. else:
  439. columns = None
  440. lines = compat_getenv('LINES')
  441. if lines:
  442. lines = int(lines)
  443. else:
  444. lines = None
  445. if columns is None or lines is None or columns <= 0 or lines <= 0:
  446. try:
  447. sp = subprocess.Popen(
  448. ['stty', 'size'],
  449. stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  450. out, err = sp.communicate()
  451. _lines, _columns = map(int, out.split())
  452. except Exception:
  453. _columns, _lines = _terminal_size(*fallback)
  454. if columns is None or columns <= 0:
  455. columns = _columns
  456. if lines is None or lines <= 0:
  457. lines = _lines
  458. return _terminal_size(columns, lines)
  459. try:
  460. itertools.count(start=0, step=1)
  461. compat_itertools_count = itertools.count
  462. except TypeError: # Python 2.6
  463. def compat_itertools_count(start=0, step=1):
  464. n = start
  465. while True:
  466. yield n
  467. n += step
  468. if sys.version_info >= (3, 0):
  469. from tokenize import tokenize as compat_tokenize_tokenize
  470. else:
  471. from tokenize import generate_tokens as compat_tokenize_tokenize
  472. __all__ = [
  473. 'compat_HTMLParser',
  474. 'compat_HTTPError',
  475. 'compat_basestring',
  476. 'compat_chr',
  477. 'compat_cookiejar',
  478. 'compat_cookies',
  479. 'compat_etree_fromstring',
  480. 'compat_expanduser',
  481. 'compat_get_terminal_size',
  482. 'compat_getenv',
  483. 'compat_getpass',
  484. 'compat_html_entities',
  485. 'compat_http_client',
  486. 'compat_http_server',
  487. 'compat_itertools_count',
  488. 'compat_kwargs',
  489. 'compat_ord',
  490. 'compat_parse_qs',
  491. 'compat_print',
  492. 'compat_shlex_split',
  493. 'compat_socket_create_connection',
  494. 'compat_str',
  495. 'compat_subprocess_get_DEVNULL',
  496. 'compat_tokenize_tokenize',
  497. 'compat_urllib_error',
  498. 'compat_urllib_parse',
  499. 'compat_urllib_parse_unquote',
  500. 'compat_urllib_parse_unquote_plus',
  501. 'compat_urllib_parse_unquote_to_bytes',
  502. 'compat_urllib_parse_urlparse',
  503. 'compat_urllib_request',
  504. 'compat_urllib_request_DataHandler',
  505. 'compat_urllib_response',
  506. 'compat_urlparse',
  507. 'compat_urlretrieve',
  508. 'compat_xml_parse_error',
  509. 'shlex_quote',
  510. 'subprocess_check_output',
  511. 'workaround_optparse_bug9161',
  512. ]