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