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