]> jfr.im git - yt-dlp.git/blame - youtube_dl/utils.py
Merge remote-tracking branch 'hassaanaliw/snotr'
[yt-dlp.git] / youtube_dl / utils.py
CommitLineData
d77c3dfd
FV
1#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
912b38b4 4import calendar
676eb3f2 5import codecs
62e609ab 6import contextlib
e3946f98 7import ctypes
c496ca96
PH
8import datetime
9import email.utils
f45c185f 10import errno
e68301af 11import getpass
d77c3dfd 12import gzip
b7ab0590 13import itertools
03f9daab 14import io
f4bfd65f 15import json
d77c3dfd 16import locale
02dbf93f 17import math
d77c3dfd 18import os
4eb7f1d1 19import pipes
c496ca96 20import platform
d77c3dfd 21import re
13ebea79 22import ssl
c496ca96 23import socket
b53466e1 24import struct
1c088fa8 25import subprocess
d77c3dfd 26import sys
01951dda 27import traceback
bcf89ce6 28import xml.etree.ElementTree
d77c3dfd 29import zlib
d77c3dfd 30
01ba00ca 31try:
59ae15a5 32 import urllib.request as compat_urllib_request
01ba00ca 33except ImportError: # Python 2
59ae15a5 34 import urllib2 as compat_urllib_request
01ba00ca
PH
35
36try:
59ae15a5 37 import urllib.error as compat_urllib_error
01ba00ca 38except ImportError: # Python 2
59ae15a5 39 import urllib2 as compat_urllib_error
01ba00ca
PH
40
41try:
59ae15a5 42 import urllib.parse as compat_urllib_parse
01ba00ca 43except ImportError: # Python 2
59ae15a5 44 import urllib as compat_urllib_parse
01ba00ca 45
799c0763
PH
46try:
47 from urllib.parse import urlparse as compat_urllib_parse_urlparse
48except ImportError: # Python 2
49 from urlparse import urlparse as compat_urllib_parse_urlparse
50
6543f0dc
JMF
51try:
52 import urllib.parse as compat_urlparse
53except ImportError: # Python 2
54 import urlparse as compat_urlparse
55
01ba00ca 56try:
59ae15a5 57 import http.cookiejar as compat_cookiejar
01ba00ca 58except ImportError: # Python 2
59ae15a5 59 import cookielib as compat_cookiejar
01ba00ca 60
3e669f36 61try:
59ae15a5 62 import html.entities as compat_html_entities
9f37a959 63except ImportError: # Python 2
59ae15a5 64 import htmlentitydefs as compat_html_entities
3e669f36 65
a8156c1d 66try:
59ae15a5 67 import html.parser as compat_html_parser
9f37a959 68except ImportError: # Python 2
59ae15a5 69 import HTMLParser as compat_html_parser
a8156c1d 70
348d0a7a 71try:
59ae15a5 72 import http.client as compat_http_client
9f37a959 73except ImportError: # Python 2
59ae15a5 74 import httplib as compat_http_client
348d0a7a 75
2eabb802 76try:
0e283428 77 from urllib.error import HTTPError as compat_HTTPError
2eabb802
PH
78except ImportError: # Python 2
79 from urllib2 import HTTPError as compat_HTTPError
80
e0df6211
PH
81try:
82 from urllib.request import urlretrieve as compat_urlretrieve
83except ImportError: # Python 2
84 from urllib import urlretrieve as compat_urlretrieve
85
86
5910e210
PH
87try:
88 from subprocess import DEVNULL
89 compat_subprocess_get_DEVNULL = lambda: DEVNULL
90except ImportError:
91 compat_subprocess_get_DEVNULL = lambda: open(os.path.devnull, 'w')
92
9f37a959 93try:
59ae15a5 94 from urllib.parse import parse_qs as compat_parse_qs
9f37a959 95except ImportError: # Python 2
59ae15a5
PH
96 # HACK: The following is the correct parse_qs implementation from cpython 3's stdlib.
97 # Python 2's version is apparently totally broken
98 def _unquote(string, encoding='utf-8', errors='replace'):
99 if string == '':
100 return string
101 res = string.split('%')
102 if len(res) == 1:
103 return string
104 if encoding is None:
105 encoding = 'utf-8'
106 if errors is None:
107 errors = 'replace'
108 # pct_sequence: contiguous sequence of percent-encoded bytes, decoded
109 pct_sequence = b''
110 string = res[0]
111 for item in res[1:]:
112 try:
113 if not item:
114 raise ValueError
115 pct_sequence += item[:2].decode('hex')
116 rest = item[2:]
117 if not rest:
118 # This segment was just a single percent-encoded character.
119 # May be part of a sequence of code units, so delay decoding.
120 # (Stored in pct_sequence).
121 continue
122 except ValueError:
123 rest = '%' + item
124 # Encountered non-percent-encoded characters. Flush the current
125 # pct_sequence.
126 string += pct_sequence.decode(encoding, errors) + rest
127 pct_sequence = b''
128 if pct_sequence:
129 # Flush the final pct_sequence
130 string += pct_sequence.decode(encoding, errors)
131 return string
132
133 def _parse_qsl(qs, keep_blank_values=False, strict_parsing=False,
134 encoding='utf-8', errors='replace'):
135 qs, _coerce_result = qs, unicode
136 pairs = [s2 for s1 in qs.split('&') for s2 in s1.split(';')]
137 r = []
138 for name_value in pairs:
139 if not name_value and not strict_parsing:
140 continue
141 nv = name_value.split('=', 1)
142 if len(nv) != 2:
143 if strict_parsing:
144 raise ValueError("bad query field: %r" % (name_value,))
145 # Handle case of a control-name with no equal sign
146 if keep_blank_values:
147 nv.append('')
148 else:
149 continue
150 if len(nv[1]) or keep_blank_values:
151 name = nv[0].replace('+', ' ')
152 name = _unquote(name, encoding=encoding, errors=errors)
153 name = _coerce_result(name)
154 value = nv[1].replace('+', ' ')
155 value = _unquote(value, encoding=encoding, errors=errors)
156 value = _coerce_result(value)
157 r.append((name, value))
158 return r
159
160 def compat_parse_qs(qs, keep_blank_values=False, strict_parsing=False,
161 encoding='utf-8', errors='replace'):
162 parsed_result = {}
163 pairs = _parse_qsl(qs, keep_blank_values, strict_parsing,
164 encoding=encoding, errors=errors)
165 for name, value in pairs:
166 if name in parsed_result:
167 parsed_result[name].append(value)
168 else:
169 parsed_result[name] = [value]
170 return parsed_result
348d0a7a 171
3e669f36 172try:
59ae15a5 173 compat_str = unicode # Python 2
3e669f36 174except NameError:
59ae15a5 175 compat_str = str
3e669f36
PH
176
177try:
59ae15a5 178 compat_chr = unichr # Python 2
3e669f36 179except NameError:
59ae15a5 180 compat_chr = chr
3e669f36 181
f7300c5c
JMF
182try:
183 from xml.etree.ElementTree import ParseError as compat_xml_parse_error
184except ImportError: # Python 2.6
185 from xml.parsers.expat import ExpatError as compat_xml_parse_error
186
b31756c1
FV
187def compat_ord(c):
188 if type(c) is int: return c
189 else: return ord(c)
190
468e2e92
FV
191# This is not clearly defined otherwise
192compiled_regex_type = type(re.compile(''))
193
3e669f36 194std_headers = {
ae8f7871 195 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:10.0) Gecko/20100101 Firefox/10.0 (Chrome)',
59ae15a5
PH
196 'Accept-Charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',
197 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
198 'Accept-Encoding': 'gzip, deflate',
199 'Accept-Language': 'en-us,en;q=0.5',
3e669f36 200}
f427df17 201
d77c3dfd 202def preferredencoding():
59ae15a5 203 """Get preferred encoding.
d77c3dfd 204
59ae15a5
PH
205 Returns the best encoding scheme for the system, based on
206 locale.getpreferredencoding() and some further tweaks.
207 """
208 try:
209 pref = locale.getpreferredencoding()
210 u'TEST'.encode(pref)
211 except:
212 pref = 'UTF-8'
bae611f2 213
59ae15a5 214 return pref
d77c3dfd 215
8cd10ac4 216if sys.version_info < (3,0):
59ae15a5
PH
217 def compat_print(s):
218 print(s.encode(preferredencoding(), 'xmlcharrefreplace'))
8cd10ac4 219else:
59ae15a5
PH
220 def compat_print(s):
221 assert type(s) == type(u'')
222 print(s)
d77c3dfd 223
f4bfd65f
PH
224# In Python 2.x, json.dump expects a bytestream.
225# In Python 3.x, it writes to a character stream
226if sys.version_info < (3,0):
227 def write_json_file(obj, fn):
228 with open(fn, 'wb') as f:
229 json.dump(obj, f)
230else:
231 def write_json_file(obj, fn):
232 with open(fn, 'w', encoding='utf-8') as f:
233 json.dump(obj, f)
234
59ae56fa
PH
235if sys.version_info >= (2,7):
236 def find_xpath_attr(node, xpath, key, val):
237 """ Find the xpath xpath[@key=val] """
5de3ece2 238 assert re.match(r'^[a-zA-Z]+$', key)
af1588c0 239 assert re.match(r'^[a-zA-Z0-9@\s:._]*$', val)
59ae56fa
PH
240 expr = xpath + u"[@%s='%s']" % (key, val)
241 return node.find(expr)
242else:
243 def find_xpath_attr(node, xpath, key, val):
244 for f in node.findall(xpath):
245 if f.attrib.get(key) == val:
246 return f
247 return None
248
d7e66d39
JMF
249# On python2.6 the xml.etree.ElementTree.Element methods don't support
250# the namespace parameter
251def xpath_with_ns(path, ns_map):
252 components = [c.split(':') for c in path.split('/')]
253 replaced = []
254 for c in components:
255 if len(c) == 1:
256 replaced.append(c[0])
257 else:
258 ns, tag = c
259 replaced.append('{%s}%s' % (ns_map[ns], tag))
260 return '/'.join(replaced)
261
d77c3dfd 262def htmlentity_transform(matchobj):
59ae15a5
PH
263 """Transforms an HTML entity to a character.
264
265 This function receives a match object and is intended to be used with
266 the re.sub() function.
267 """
268 entity = matchobj.group(1)
269
270 # Known non-numeric HTML entity
271 if entity in compat_html_entities.name2codepoint:
272 return compat_chr(compat_html_entities.name2codepoint[entity])
273
274 mobj = re.match(u'(?u)#(x?\\d+)', entity)
275 if mobj is not None:
276 numstr = mobj.group(1)
277 if numstr.startswith(u'x'):
278 base = 16
279 numstr = u'0%s' % numstr
280 else:
281 base = 10
282 return compat_chr(int(numstr, base))
283
284 # Unknown entity in name, return its literal representation
285 return (u'&%s;' % entity)
d77c3dfd 286
a8156c1d 287compat_html_parser.locatestarttagend = re.compile(r"""<[a-zA-Z][-.a-zA-Z0-9:_]*(?:\s+(?:(?<=['"\s])[^\s/>][^\s/=>]*(?:\s*=+\s*(?:'[^']*'|"[^"]*"|(?!['"])[^>\s]*))?\s*)*)?\s*""", re.VERBOSE) # backport bugfix
a921f407
JMF
288class BaseHTMLParser(compat_html_parser.HTMLParser):
289 def __init(self):
290 compat_html_parser.HTMLParser.__init__(self)
291 self.html = None
292
293 def loads(self, html):
294 self.html = html
295 self.feed(html)
296 self.close()
297
298class AttrParser(BaseHTMLParser):
43e8fafd
ND
299 """Modified HTMLParser that isolates a tag with the specified attribute"""
300 def __init__(self, attribute, value):
301 self.attribute = attribute
302 self.value = value
59ae15a5
PH
303 self.result = None
304 self.started = False
305 self.depth = {}
59ae15a5
PH
306 self.watch_startpos = False
307 self.error_count = 0
a921f407 308 BaseHTMLParser.__init__(self)
59ae15a5
PH
309
310 def error(self, message):
311 if self.error_count > 10 or self.started:
312 raise compat_html_parser.HTMLParseError(message, self.getpos())
313 self.rawdata = '\n'.join(self.html.split('\n')[self.getpos()[0]:]) # skip one line
314 self.error_count += 1
315 self.goahead(1)
316
59ae15a5
PH
317 def handle_starttag(self, tag, attrs):
318 attrs = dict(attrs)
319 if self.started:
320 self.find_startpos(None)
43e8fafd 321 if self.attribute in attrs and attrs[self.attribute] == self.value:
59ae15a5
PH
322 self.result = [tag]
323 self.started = True
324 self.watch_startpos = True
325 if self.started:
326 if not tag in self.depth: self.depth[tag] = 0
327 self.depth[tag] += 1
328
329 def handle_endtag(self, tag):
330 if self.started:
331 if tag in self.depth: self.depth[tag] -= 1
332 if self.depth[self.result[0]] == 0:
333 self.started = False
334 self.result.append(self.getpos())
335
336 def find_startpos(self, x):
337 """Needed to put the start position of the result (self.result[1])
338 after the opening tag with the requested id"""
339 if self.watch_startpos:
340 self.watch_startpos = False
341 self.result.append(self.getpos())
342 handle_entityref = handle_charref = handle_data = handle_comment = \
343 handle_decl = handle_pi = unknown_decl = find_startpos
344
345 def get_result(self):
346 if self.result is None:
347 return None
348 if len(self.result) != 3:
349 return None
350 lines = self.html.split('\n')
351 lines = lines[self.result[1][0]-1:self.result[2][0]]
352 lines[0] = lines[0][self.result[1][1]:]
353 if len(lines) == 1:
354 lines[-1] = lines[-1][:self.result[2][1]-self.result[1][1]]
355 lines[-1] = lines[-1][:self.result[2][1]]
356 return '\n'.join(lines).strip()
3b024e17
PH
357# Hack for https://github.com/rg3/youtube-dl/issues/662
358if sys.version_info < (2, 7, 3):
359 AttrParser.parse_endtag = (lambda self, i:
360 i + len("</scr'+'ipt>")
361 if self.rawdata[i:].startswith("</scr'+'ipt>")
362 else compat_html_parser.HTMLParser.parse_endtag(self, i))
9e6dd238
FV
363
364def get_element_by_id(id, html):
43e8fafd
ND
365 """Return the content of the tag with the specified ID in the passed HTML document"""
366 return get_element_by_attribute("id", id, html)
367
368def get_element_by_attribute(attribute, value, html):
369 """Return the content of the tag with the specified attribute in the passed HTML document"""
370 parser = AttrParser(attribute, value)
59ae15a5
PH
371 try:
372 parser.loads(html)
373 except compat_html_parser.HTMLParseError:
374 pass
375 return parser.get_result()
9e6dd238 376
a921f407
JMF
377class MetaParser(BaseHTMLParser):
378 """
379 Modified HTMLParser that isolates a meta tag with the specified name
380 attribute.
381 """
382 def __init__(self, name):
383 BaseHTMLParser.__init__(self)
384 self.name = name
385 self.content = None
386 self.result = None
387
388 def handle_starttag(self, tag, attrs):
389 if tag != 'meta':
390 return
391 attrs = dict(attrs)
392 if attrs.get('name') == self.name:
393 self.result = attrs.get('content')
394
395 def get_result(self):
396 return self.result
397
398def get_meta_content(name, html):
399 """
400 Return the content attribute from the meta tag with the given name attribute.
401 """
402 parser = MetaParser(name)
403 try:
404 parser.loads(html)
405 except compat_html_parser.HTMLParseError:
406 pass
407 return parser.get_result()
408
9e6dd238
FV
409
410def clean_html(html):
59ae15a5
PH
411 """Clean an HTML snippet into a readable string"""
412 # Newline vs <br />
413 html = html.replace('\n', ' ')
6b3aef80
FV
414 html = re.sub(r'\s*<\s*br\s*/?\s*>\s*', '\n', html)
415 html = re.sub(r'<\s*/\s*p\s*>\s*<\s*p[^>]*>', '\n', html)
59ae15a5
PH
416 # Strip html tags
417 html = re.sub('<.*?>', '', html)
418 # Replace html entities
419 html = unescapeHTML(html)
7decf895 420 return html.strip()
9e6dd238
FV
421
422
d77c3dfd 423def sanitize_open(filename, open_mode):
59ae15a5
PH
424 """Try to open the given filename, and slightly tweak it if this fails.
425
426 Attempts to open the given filename. If this fails, it tries to change
427 the filename slightly, step by step, until it's either able to open it
428 or it fails and raises a final exception, like the standard open()
429 function.
430
431 It returns the tuple (stream, definitive_file_name).
432 """
433 try:
434 if filename == u'-':
435 if sys.platform == 'win32':
436 import msvcrt
437 msvcrt.setmode(sys.stdout.fileno(), os.O_BINARY)
898280a0 438 return (sys.stdout.buffer if hasattr(sys.stdout, 'buffer') else sys.stdout, filename)
59ae15a5
PH
439 stream = open(encodeFilename(filename), open_mode)
440 return (stream, filename)
441 except (IOError, OSError) as err:
f45c185f
PH
442 if err.errno in (errno.EACCES,):
443 raise
59ae15a5 444
f45c185f
PH
445 # In case of error, try to remove win32 forbidden chars
446 alt_filename = os.path.join(
447 re.sub(u'[/<>:"\\|\\\\?\\*]', u'#', path_part)
448 for path_part in os.path.split(filename)
449 )
450 if alt_filename == filename:
451 raise
452 else:
453 # An exception here should be caught in the caller
454 stream = open(encodeFilename(filename), open_mode)
455 return (stream, alt_filename)
d77c3dfd
FV
456
457
458def timeconvert(timestr):
59ae15a5
PH
459 """Convert RFC 2822 defined time string into system timestamp"""
460 timestamp = None
461 timetuple = email.utils.parsedate_tz(timestr)
462 if timetuple is not None:
463 timestamp = email.utils.mktime_tz(timetuple)
464 return timestamp
1c469a94 465
796173d0 466def sanitize_filename(s, restricted=False, is_id=False):
59ae15a5
PH
467 """Sanitizes a string so it could be used as part of a filename.
468 If restricted is set, use a stricter subset of allowed characters.
796173d0 469 Set is_id if this is not an arbitrary string, but an ID that should be kept if possible
59ae15a5
PH
470 """
471 def replace_insane(char):
472 if char == '?' or ord(char) < 32 or ord(char) == 127:
473 return ''
474 elif char == '"':
475 return '' if restricted else '\''
476 elif char == ':':
477 return '_-' if restricted else ' -'
478 elif char in '\\/|*<>':
479 return '_'
627dcfff 480 if restricted and (char in '!&\'()[]{}$;`^,#' or char.isspace()):
59ae15a5
PH
481 return '_'
482 if restricted and ord(char) > 127:
483 return '_'
484 return char
485
486 result = u''.join(map(replace_insane, s))
796173d0
PH
487 if not is_id:
488 while '__' in result:
489 result = result.replace('__', '_')
490 result = result.strip('_')
491 # Common case of "Foreign band name - English song title"
492 if restricted and result.startswith('-_'):
493 result = result[2:]
494 if not result:
495 result = '_'
59ae15a5 496 return result
d77c3dfd
FV
497
498def orderedSet(iterable):
59ae15a5
PH
499 """ Remove all duplicates from the input iterable """
500 res = []
501 for el in iterable:
502 if el not in res:
503 res.append(el)
504 return res
d77c3dfd 505
912b38b4 506
d77c3dfd 507def unescapeHTML(s):
912b38b4
PH
508 if s is None:
509 return None
510 assert type(s) == compat_str
d77c3dfd 511
912b38b4 512 result = re.sub(r'(?u)&(.+?);', htmlentity_transform, s)
59ae15a5 513 return result
d77c3dfd 514
8bf48f23
PH
515
516def encodeFilename(s, for_subprocess=False):
59ae15a5
PH
517 """
518 @param s The name of the file
519 """
d77c3dfd 520
8bf48f23 521 assert type(s) == compat_str
d77c3dfd 522
59ae15a5
PH
523 # Python 3 has a Unicode API
524 if sys.version_info >= (3, 0):
525 return s
0f00efed 526
59ae15a5
PH
527 if sys.platform == 'win32' and sys.getwindowsversion()[0] >= 5:
528 # Pass u'' directly to use Unicode APIs on Windows 2000 and up
529 # (Detecting Windows NT 4 is tricky because 'major >= 4' would
530 # match Windows 9x series as well. Besides, NT 4 is obsolete.)
8bf48f23
PH
531 if not for_subprocess:
532 return s
533 else:
534 # For subprocess calls, encode with locale encoding
535 # Refer to http://stackoverflow.com/a/9951851/35070
536 encoding = preferredencoding()
59ae15a5 537 else:
6df40dcb 538 encoding = sys.getfilesystemencoding()
8bf48f23
PH
539 if encoding is None:
540 encoding = 'utf-8'
541 return s.encode(encoding, 'ignore')
542
f07b74fc
PH
543
544def encodeArgument(s):
545 if not isinstance(s, compat_str):
546 # Legacy code that uses byte strings
547 # Uncomment the following line after fixing all post processors
548 #assert False, 'Internal error: %r should be of type %r, is %r' % (s, compat_str, type(s))
549 s = s.decode('ascii')
550 return encodeFilename(s, True)
551
552
8271226a
PH
553def decodeOption(optval):
554 if optval is None:
555 return optval
556 if isinstance(optval, bytes):
557 optval = optval.decode(preferredencoding())
558
559 assert isinstance(optval, compat_str)
560 return optval
1c256f70 561
4539dd30
PH
562def formatSeconds(secs):
563 if secs > 3600:
564 return '%d:%02d:%02d' % (secs // 3600, (secs % 3600) // 60, secs % 60)
565 elif secs > 60:
566 return '%d:%02d' % (secs // 60, secs % 60)
567 else:
568 return '%d' % secs
569
a0ddb8a2
PH
570
571def make_HTTPS_handler(opts_no_check_certificate, **kwargs):
13ebea79
PH
572 if sys.version_info < (3, 2):
573 import httplib
574
575 class HTTPSConnectionV3(httplib.HTTPSConnection):
576 def __init__(self, *args, **kwargs):
577 httplib.HTTPSConnection.__init__(self, *args, **kwargs)
578
579 def connect(self):
580 sock = socket.create_connection((self.host, self.port), self.timeout)
ac79fa02 581 if getattr(self, '_tunnel_host', False):
13ebea79
PH
582 self.sock = sock
583 self._tunnel()
584 try:
585 self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file, ssl_version=ssl.PROTOCOL_SSLv3)
de79c46c 586 except ssl.SSLError:
13ebea79
PH
587 self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file, ssl_version=ssl.PROTOCOL_SSLv23)
588
589 class HTTPSHandlerV3(compat_urllib_request.HTTPSHandler):
590 def https_open(self, req):
591 return self.do_open(HTTPSConnectionV3, req)
a0ddb8a2 592 return HTTPSHandlerV3(**kwargs)
ea6d901e 593 else:
13ebea79 594 context = ssl.SSLContext(ssl.PROTOCOL_SSLv3)
ea6d901e 595 context.verify_mode = (ssl.CERT_NONE
dca08720 596 if opts_no_check_certificate
ea6d901e 597 else ssl.CERT_REQUIRED)
303b479e
PH
598 context.set_default_verify_paths()
599 try:
600 context.load_default_certs()
601 except AttributeError:
602 pass # Python < 3.4
a0ddb8a2 603 return compat_urllib_request.HTTPSHandler(context=context, **kwargs)
ea6d901e 604
1c256f70
PH
605class ExtractorError(Exception):
606 """Error during info extraction."""
d11271dd 607 def __init__(self, msg, tb=None, expected=False, cause=None, video_id=None):
9a82b238
PH
608 """ tb, if given, is the original traceback (so that it can be printed out).
609 If expected is set, this is a normal error message and most likely not a bug in youtube-dl.
610 """
611
612 if sys.exc_info()[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError):
613 expected = True
d11271dd
PH
614 if video_id is not None:
615 msg = video_id + ': ' + msg
9a82b238 616 if not expected:
298f833b 617 msg = msg + u'; please report this issue on https://yt-dl.org/bug . Be sure to call youtube-dl with the --verbose flag and include its complete output. Make sure you are using the latest version; type youtube-dl -U to update.'
1c256f70 618 super(ExtractorError, self).__init__(msg)
d5979c5d 619
1c256f70 620 self.traceback = tb
8cc83b8d 621 self.exc_info = sys.exc_info() # preserve original exception
2eabb802 622 self.cause = cause
d11271dd 623 self.video_id = video_id
1c256f70 624
01951dda
PH
625 def format_traceback(self):
626 if self.traceback is None:
627 return None
628 return u''.join(traceback.format_tb(self.traceback))
629
1c256f70 630
55b3e45b
JMF
631class RegexNotFoundError(ExtractorError):
632 """Error when a regex didn't match"""
633 pass
634
635
d77c3dfd 636class DownloadError(Exception):
59ae15a5 637 """Download Error exception.
d77c3dfd 638
59ae15a5
PH
639 This exception may be thrown by FileDownloader objects if they are not
640 configured to continue on errors. They will contain the appropriate
641 error message.
642 """
8cc83b8d
FV
643 def __init__(self, msg, exc_info=None):
644 """ exc_info, if given, is the original exception that caused the trouble (as returned by sys.exc_info()). """
645 super(DownloadError, self).__init__(msg)
646 self.exc_info = exc_info
d77c3dfd
FV
647
648
649class SameFileError(Exception):
59ae15a5 650 """Same File exception.
d77c3dfd 651
59ae15a5
PH
652 This exception will be thrown by FileDownloader objects if they detect
653 multiple files would have to be downloaded to the same file on disk.
654 """
655 pass
d77c3dfd
FV
656
657
658class PostProcessingError(Exception):
59ae15a5 659 """Post Processing exception.
d77c3dfd 660
59ae15a5
PH
661 This exception may be raised by PostProcessor's .run() method to
662 indicate an error in the postprocessing task.
663 """
7851b379
PH
664 def __init__(self, msg):
665 self.msg = msg
d77c3dfd
FV
666
667class MaxDownloadsReached(Exception):
59ae15a5
PH
668 """ --max-downloads limit has been reached. """
669 pass
d77c3dfd
FV
670
671
672class UnavailableVideoError(Exception):
59ae15a5 673 """Unavailable Format exception.
d77c3dfd 674
59ae15a5
PH
675 This exception will be thrown when a video is requested
676 in a format that is not available for that video.
677 """
678 pass
d77c3dfd
FV
679
680
681class ContentTooShortError(Exception):
59ae15a5 682 """Content Too Short exception.
d77c3dfd 683
59ae15a5
PH
684 This exception may be raised by FileDownloader objects when a file they
685 download is too small for what the server announced first, indicating
686 the connection was probably interrupted.
687 """
688 # Both in bytes
689 downloaded = None
690 expected = None
d77c3dfd 691
59ae15a5
PH
692 def __init__(self, downloaded, expected):
693 self.downloaded = downloaded
694 self.expected = expected
d77c3dfd 695
acebc9cd 696class YoutubeDLHandler(compat_urllib_request.HTTPHandler):
59ae15a5
PH
697 """Handler for HTTP requests and responses.
698
699 This class, when installed with an OpenerDirector, automatically adds
700 the standard headers to every HTTP request and handles gzipped and
701 deflated responses from web servers. If compression is to be avoided in
702 a particular request, the original request in the program code only has
703 to include the HTTP header "Youtubedl-No-Compression", which will be
704 removed before making the real request.
705
706 Part of this code was copied from:
707
708 http://techknack.net/python-urllib2-handlers/
709
710 Andrew Rowls, the author of that code, agreed to release it to the
711 public domain.
712 """
713
714 @staticmethod
715 def deflate(data):
716 try:
717 return zlib.decompress(data, -zlib.MAX_WBITS)
718 except zlib.error:
719 return zlib.decompress(data)
720
721 @staticmethod
722 def addinfourl_wrapper(stream, headers, url, code):
723 if hasattr(compat_urllib_request.addinfourl, 'getcode'):
724 return compat_urllib_request.addinfourl(stream, headers, url, code)
725 ret = compat_urllib_request.addinfourl(stream, headers, url)
726 ret.code = code
727 return ret
728
acebc9cd
PH
729 def http_request(self, req):
730 for h,v in std_headers.items():
59ae15a5
PH
731 if h in req.headers:
732 del req.headers[h]
335959e7 733 req.add_header(h, v)
59ae15a5
PH
734 if 'Youtubedl-no-compression' in req.headers:
735 if 'Accept-encoding' in req.headers:
736 del req.headers['Accept-encoding']
737 del req.headers['Youtubedl-no-compression']
3446dfb7 738 if 'Youtubedl-user-agent' in req.headers:
335959e7
PH
739 if 'User-agent' in req.headers:
740 del req.headers['User-agent']
741 req.headers['User-agent'] = req.headers['Youtubedl-user-agent']
3446dfb7 742 del req.headers['Youtubedl-user-agent']
59ae15a5
PH
743 return req
744
acebc9cd 745 def http_response(self, req, resp):
59ae15a5
PH
746 old_resp = resp
747 # gzip
748 if resp.headers.get('Content-encoding', '') == 'gzip':
aa3e9507
PH
749 content = resp.read()
750 gz = gzip.GzipFile(fileobj=io.BytesIO(content), mode='rb')
751 try:
752 uncompressed = io.BytesIO(gz.read())
753 except IOError as original_ioerror:
754 # There may be junk add the end of the file
755 # See http://stackoverflow.com/q/4928560/35070 for details
756 for i in range(1, 1024):
757 try:
758 gz = gzip.GzipFile(fileobj=io.BytesIO(content[:-i]), mode='rb')
759 uncompressed = io.BytesIO(gz.read())
760 except IOError:
761 continue
762 break
763 else:
764 raise original_ioerror
765 resp = self.addinfourl_wrapper(uncompressed, old_resp.headers, old_resp.url, old_resp.code)
59ae15a5
PH
766 resp.msg = old_resp.msg
767 # deflate
768 if resp.headers.get('Content-encoding', '') == 'deflate':
769 gz = io.BytesIO(self.deflate(resp.read()))
770 resp = self.addinfourl_wrapper(gz, old_resp.headers, old_resp.url, old_resp.code)
771 resp.msg = old_resp.msg
772 return resp
0f8d03f8 773
acebc9cd
PH
774 https_request = http_request
775 https_response = http_response
bf50b038 776
5de90176 777
305d0683 778def parse_iso8601(date_str, delimiter='T'):
912b38b4
PH
779 """ Return a UNIX timestamp from the given date """
780
781 if date_str is None:
782 return None
783
784 m = re.search(
785 r'Z$| ?(?P<sign>\+|-)(?P<hours>[0-9]{2}):?(?P<minutes>[0-9]{2})$',
786 date_str)
787 if not m:
788 timezone = datetime.timedelta()
789 else:
790 date_str = date_str[:-len(m.group(0))]
791 if not m.group('sign'):
792 timezone = datetime.timedelta()
793 else:
794 sign = 1 if m.group('sign') == '+' else -1
795 timezone = datetime.timedelta(
796 hours=sign * int(m.group('hours')),
797 minutes=sign * int(m.group('minutes')))
305d0683
TB
798 date_format = '%Y-%m-%d{0}%H:%M:%S'.format(delimiter)
799 dt = datetime.datetime.strptime(date_str, date_format) - timezone
912b38b4
PH
800 return calendar.timegm(dt.timetuple())
801
802
bf50b038
JMF
803def unified_strdate(date_str):
804 """Return a string with the date in the format YYYYMMDD"""
64e7ad60
PH
805
806 if date_str is None:
807 return None
808
bf50b038
JMF
809 upload_date = None
810 #Replace commas
026fcc04 811 date_str = date_str.replace(',', ' ')
bf50b038 812 # %z (UTC offset) is only supported in python>=3.2
026fcc04 813 date_str = re.sub(r' ?(\+|-)[0-9]{2}:?[0-9]{2}$', '', date_str)
19e1d359
JMF
814 format_expressions = [
815 '%d %B %Y',
0f99566c 816 '%d %b %Y',
19e1d359
JMF
817 '%B %d %Y',
818 '%b %d %Y',
78ff59d0
PP
819 '%b %dst %Y %I:%M%p',
820 '%b %dnd %Y %I:%M%p',
821 '%b %dth %Y %I:%M%p',
19e1d359 822 '%Y-%m-%d',
4cf96546 823 '%d.%m.%Y',
19e1d359
JMF
824 '%d/%m/%Y',
825 '%Y/%m/%d %H:%M:%S',
5d73273f 826 '%Y-%m-%d %H:%M:%S',
19e1d359 827 '%d.%m.%Y %H:%M',
b047de6f 828 '%d.%m.%Y %H.%M',
19e1d359 829 '%Y-%m-%dT%H:%M:%SZ',
59040888
PH
830 '%Y-%m-%dT%H:%M:%S.%fZ',
831 '%Y-%m-%dT%H:%M:%S.%f0Z',
2e1fa03b 832 '%Y-%m-%dT%H:%M:%S',
7ff5d5c2 833 '%Y-%m-%dT%H:%M:%S.%f',
5de90176 834 '%Y-%m-%dT%H:%M',
19e1d359 835 ]
bf50b038
JMF
836 for expression in format_expressions:
837 try:
838 upload_date = datetime.datetime.strptime(date_str, expression).strftime('%Y%m%d')
5de90176 839 except ValueError:
bf50b038 840 pass
42393ce2
PH
841 if upload_date is None:
842 timetuple = email.utils.parsedate_tz(date_str)
843 if timetuple:
844 upload_date = datetime.datetime(*timetuple[:6]).strftime('%Y%m%d')
bf50b038
JMF
845 return upload_date
846
cbdbb766 847def determine_ext(url, default_ext=u'unknown_video'):
73e79f2a
PH
848 guess = url.partition(u'?')[0].rpartition(u'.')[2]
849 if re.match(r'^[A-Za-z0-9]+$', guess):
850 return guess
851 else:
cbdbb766 852 return default_ext
73e79f2a 853
d4051a8e
JMF
854def subtitles_filename(filename, sub_lang, sub_format):
855 return filename.rsplit('.', 1)[0] + u'.' + sub_lang + u'.' + sub_format
856
bd558525 857def date_from_str(date_str):
37254abc
JMF
858 """
859 Return a datetime object from a string in the format YYYYMMDD or
860 (now|today)[+-][0-9](day|week|month|year)(s)?"""
861 today = datetime.date.today()
862 if date_str == 'now'or date_str == 'today':
863 return today
864 match = re.match('(now|today)(?P<sign>[+-])(?P<time>\d+)(?P<unit>day|week|month|year)(s)?', date_str)
865 if match is not None:
866 sign = match.group('sign')
867 time = int(match.group('time'))
868 if sign == '-':
869 time = -time
870 unit = match.group('unit')
871 #A bad aproximation?
872 if unit == 'month':
873 unit = 'day'
874 time *= 30
875 elif unit == 'year':
876 unit = 'day'
877 time *= 365
878 unit += 's'
879 delta = datetime.timedelta(**{unit: time})
880 return today + delta
bd558525
JMF
881 return datetime.datetime.strptime(date_str, "%Y%m%d").date()
882
e63fc1be 883def hyphenate_date(date_str):
884 """
885 Convert a date in 'YYYYMMDD' format to 'YYYY-MM-DD' format"""
886 match = re.match(r'^(\d\d\d\d)(\d\d)(\d\d)$', date_str)
887 if match is not None:
888 return '-'.join(match.groups())
889 else:
890 return date_str
891
bd558525
JMF
892class DateRange(object):
893 """Represents a time interval between two dates"""
894 def __init__(self, start=None, end=None):
895 """start and end must be strings in the format accepted by date"""
896 if start is not None:
897 self.start = date_from_str(start)
898 else:
899 self.start = datetime.datetime.min.date()
900 if end is not None:
901 self.end = date_from_str(end)
902 else:
903 self.end = datetime.datetime.max.date()
37254abc 904 if self.start > self.end:
bd558525
JMF
905 raise ValueError('Date range: "%s" , the start date must be before the end date' % self)
906 @classmethod
907 def day(cls, day):
908 """Returns a range that only contains the given day"""
909 return cls(day,day)
910 def __contains__(self, date):
911 """Check if the date is in the range"""
37254abc
JMF
912 if not isinstance(date, datetime.date):
913 date = date_from_str(date)
914 return self.start <= date <= self.end
bd558525
JMF
915 def __str__(self):
916 return '%s - %s' % ( self.start.isoformat(), self.end.isoformat())
c496ca96
PH
917
918
919def platform_name():
920 """ Returns the platform name as a compat_str """
921 res = platform.platform()
922 if isinstance(res, bytes):
923 res = res.decode(preferredencoding())
924
925 assert isinstance(res, compat_str)
926 return res
c257baff
PH
927
928
b58ddb32
PH
929def _windows_write_string(s, out):
930 """ Returns True if the string was written using special methods,
931 False if it has yet to be written out."""
932 # Adapted from http://stackoverflow.com/a/3259271/35070
933
934 import ctypes
935 import ctypes.wintypes
936
937 WIN_OUTPUT_IDS = {
938 1: -11,
939 2: -12,
940 }
941
a383a98a
PH
942 try:
943 fileno = out.fileno()
944 except AttributeError:
945 # If the output stream doesn't have a fileno, it's virtual
946 return False
b58ddb32
PH
947 if fileno not in WIN_OUTPUT_IDS:
948 return False
949
950 GetStdHandle = ctypes.WINFUNCTYPE(
951 ctypes.wintypes.HANDLE, ctypes.wintypes.DWORD)(
952 ("GetStdHandle", ctypes.windll.kernel32))
953 h = GetStdHandle(WIN_OUTPUT_IDS[fileno])
954
955 WriteConsoleW = ctypes.WINFUNCTYPE(
956 ctypes.wintypes.BOOL, ctypes.wintypes.HANDLE, ctypes.wintypes.LPWSTR,
957 ctypes.wintypes.DWORD, ctypes.POINTER(ctypes.wintypes.DWORD),
958 ctypes.wintypes.LPVOID)(("WriteConsoleW", ctypes.windll.kernel32))
959 written = ctypes.wintypes.DWORD(0)
960
961 GetFileType = ctypes.WINFUNCTYPE(ctypes.wintypes.DWORD, ctypes.wintypes.DWORD)(("GetFileType", ctypes.windll.kernel32))
962 FILE_TYPE_CHAR = 0x0002
963 FILE_TYPE_REMOTE = 0x8000
964 GetConsoleMode = ctypes.WINFUNCTYPE(
965 ctypes.wintypes.BOOL, ctypes.wintypes.HANDLE,
966 ctypes.POINTER(ctypes.wintypes.DWORD))(
967 ("GetConsoleMode", ctypes.windll.kernel32))
968 INVALID_HANDLE_VALUE = ctypes.wintypes.DWORD(-1).value
969
970 def not_a_console(handle):
971 if handle == INVALID_HANDLE_VALUE or handle is None:
972 return True
973 return ((GetFileType(handle) & ~FILE_TYPE_REMOTE) != FILE_TYPE_CHAR
974 or GetConsoleMode(handle, ctypes.byref(ctypes.wintypes.DWORD())) == 0)
975
976 if not_a_console(h):
977 return False
978
d1b9c912
PH
979 def next_nonbmp_pos(s):
980 try:
981 return next(i for i, c in enumerate(s) if ord(c) > 0xffff)
982 except StopIteration:
983 return len(s)
984
985 while s:
986 count = min(next_nonbmp_pos(s), 1024)
987
b58ddb32 988 ret = WriteConsoleW(
d1b9c912 989 h, s, count if count else 2, ctypes.byref(written), None)
b58ddb32
PH
990 if ret == 0:
991 raise OSError('Failed to write string')
d1b9c912
PH
992 if not count: # We just wrote a non-BMP character
993 assert written.value == 2
994 s = s[1:]
995 else:
996 assert written.value > 0
997 s = s[written.value:]
b58ddb32
PH
998 return True
999
1000
734f90bb 1001def write_string(s, out=None, encoding=None):
7459e3a2
PH
1002 if out is None:
1003 out = sys.stderr
8bf48f23 1004 assert type(s) == compat_str
7459e3a2 1005
b58ddb32
PH
1006 if sys.platform == 'win32' and encoding is None and hasattr(out, 'fileno'):
1007 if _windows_write_string(s, out):
1008 return
1009
7459e3a2
PH
1010 if ('b' in getattr(out, 'mode', '') or
1011 sys.version_info[0] < 3): # Python 2 lies about mode of sys.stderr
104aa738
PH
1012 byt = s.encode(encoding or preferredencoding(), 'ignore')
1013 out.write(byt)
1014 elif hasattr(out, 'buffer'):
1015 enc = encoding or getattr(out, 'encoding', None) or preferredencoding()
1016 byt = s.encode(enc, 'ignore')
1017 out.buffer.write(byt)
1018 else:
8bf48f23 1019 out.write(s)
7459e3a2
PH
1020 out.flush()
1021
1022
48ea9cea
PH
1023def bytes_to_intlist(bs):
1024 if not bs:
1025 return []
1026 if isinstance(bs[0], int): # Python 3
1027 return list(bs)
1028 else:
1029 return [ord(c) for c in bs]
1030
c257baff 1031
cba892fa 1032def intlist_to_bytes(xs):
1033 if not xs:
1034 return b''
1035 if isinstance(chr(0), bytes): # Python 2
1036 return ''.join([chr(x) for x in xs])
1037 else:
1038 return bytes(xs)
c38b1e77
PH
1039
1040
1041def get_cachedir(params={}):
1042 cache_root = os.environ.get('XDG_CACHE_HOME',
1043 os.path.expanduser('~/.cache'))
1044 return params.get('cachedir', os.path.join(cache_root, 'youtube-dl'))
c1c9a79c
PH
1045
1046
1047# Cross-platform file locking
1048if sys.platform == 'win32':
1049 import ctypes.wintypes
1050 import msvcrt
1051
1052 class OVERLAPPED(ctypes.Structure):
1053 _fields_ = [
1054 ('Internal', ctypes.wintypes.LPVOID),
1055 ('InternalHigh', ctypes.wintypes.LPVOID),
1056 ('Offset', ctypes.wintypes.DWORD),
1057 ('OffsetHigh', ctypes.wintypes.DWORD),
1058 ('hEvent', ctypes.wintypes.HANDLE),
1059 ]
1060
1061 kernel32 = ctypes.windll.kernel32
1062 LockFileEx = kernel32.LockFileEx
1063 LockFileEx.argtypes = [
1064 ctypes.wintypes.HANDLE, # hFile
1065 ctypes.wintypes.DWORD, # dwFlags
1066 ctypes.wintypes.DWORD, # dwReserved
1067 ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
1068 ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
1069 ctypes.POINTER(OVERLAPPED) # Overlapped
1070 ]
1071 LockFileEx.restype = ctypes.wintypes.BOOL
1072 UnlockFileEx = kernel32.UnlockFileEx
1073 UnlockFileEx.argtypes = [
1074 ctypes.wintypes.HANDLE, # hFile
1075 ctypes.wintypes.DWORD, # dwReserved
1076 ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
1077 ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
1078 ctypes.POINTER(OVERLAPPED) # Overlapped
1079 ]
1080 UnlockFileEx.restype = ctypes.wintypes.BOOL
1081 whole_low = 0xffffffff
1082 whole_high = 0x7fffffff
1083
1084 def _lock_file(f, exclusive):
1085 overlapped = OVERLAPPED()
1086 overlapped.Offset = 0
1087 overlapped.OffsetHigh = 0
1088 overlapped.hEvent = 0
1089 f._lock_file_overlapped_p = ctypes.pointer(overlapped)
1090 handle = msvcrt.get_osfhandle(f.fileno())
1091 if not LockFileEx(handle, 0x2 if exclusive else 0x0, 0,
1092 whole_low, whole_high, f._lock_file_overlapped_p):
1093 raise OSError('Locking file failed: %r' % ctypes.FormatError())
1094
1095 def _unlock_file(f):
1096 assert f._lock_file_overlapped_p
1097 handle = msvcrt.get_osfhandle(f.fileno())
1098 if not UnlockFileEx(handle, 0,
1099 whole_low, whole_high, f._lock_file_overlapped_p):
1100 raise OSError('Unlocking file failed: %r' % ctypes.FormatError())
1101
1102else:
1103 import fcntl
1104
1105 def _lock_file(f, exclusive):
1106 fcntl.lockf(f, fcntl.LOCK_EX if exclusive else fcntl.LOCK_SH)
1107
1108 def _unlock_file(f):
1109 fcntl.lockf(f, fcntl.LOCK_UN)
1110
1111
1112class locked_file(object):
1113 def __init__(self, filename, mode, encoding=None):
1114 assert mode in ['r', 'a', 'w']
1115 self.f = io.open(filename, mode, encoding=encoding)
1116 self.mode = mode
1117
1118 def __enter__(self):
1119 exclusive = self.mode != 'r'
1120 try:
1121 _lock_file(self.f, exclusive)
1122 except IOError:
1123 self.f.close()
1124 raise
1125 return self
1126
1127 def __exit__(self, etype, value, traceback):
1128 try:
1129 _unlock_file(self.f)
1130 finally:
1131 self.f.close()
1132
1133 def __iter__(self):
1134 return iter(self.f)
1135
1136 def write(self, *args):
1137 return self.f.write(*args)
1138
1139 def read(self, *args):
1140 return self.f.read(*args)
4eb7f1d1
JMF
1141
1142
1143def shell_quote(args):
a6a173c2
JMF
1144 quoted_args = []
1145 encoding = sys.getfilesystemencoding()
1146 if encoding is None:
1147 encoding = 'utf-8'
1148 for a in args:
1149 if isinstance(a, bytes):
1150 # We may get a filename encoded with 'encodeFilename'
1151 a = a.decode(encoding)
1152 quoted_args.append(pipes.quote(a))
1153 return u' '.join(quoted_args)
9d4660ca
PH
1154
1155
f4d96df0
PH
1156def takewhile_inclusive(pred, seq):
1157 """ Like itertools.takewhile, but include the latest evaluated element
1158 (the first element so that Not pred(e)) """
1159 for e in seq:
1160 yield e
1161 if not pred(e):
1162 return
1163
1164
9d4660ca
PH
1165def smuggle_url(url, data):
1166 """ Pass additional data in a URL for internal use. """
1167
1168 sdata = compat_urllib_parse.urlencode(
1169 {u'__youtubedl_smuggle': json.dumps(data)})
1170 return url + u'#' + sdata
1171
1172
79f82953 1173def unsmuggle_url(smug_url, default=None):
9d4660ca 1174 if not '#__youtubedl_smuggle' in smug_url:
79f82953 1175 return smug_url, default
9d4660ca
PH
1176 url, _, sdata = smug_url.rpartition(u'#')
1177 jsond = compat_parse_qs(sdata)[u'__youtubedl_smuggle'][0]
1178 data = json.loads(jsond)
1179 return url, data
02dbf93f
PH
1180
1181
02dbf93f
PH
1182def format_bytes(bytes):
1183 if bytes is None:
1184 return u'N/A'
1185 if type(bytes) is str:
1186 bytes = float(bytes)
1187 if bytes == 0.0:
1188 exponent = 0
1189 else:
1190 exponent = int(math.log(bytes, 1024.0))
1191 suffix = [u'B', u'KiB', u'MiB', u'GiB', u'TiB', u'PiB', u'EiB', u'ZiB', u'YiB'][exponent]
1192 converted = float(bytes) / float(1024 ** exponent)
1193 return u'%.2f%s' % (converted, suffix)
f53c966a 1194
1c088fa8 1195
f53c966a 1196def str_to_int(int_str):
c45a6caa
S
1197 if int_str is None:
1198 return None
f53c966a
JMF
1199 int_str = re.sub(r'[,\.]', u'', int_str)
1200 return int(int_str)
1c088fa8
PH
1201
1202
1203def get_term_width():
1204 columns = os.environ.get('COLUMNS', None)
1205 if columns:
1206 return int(columns)
1207
1208 try:
1209 sp = subprocess.Popen(
1210 ['stty', 'size'],
1211 stdout=subprocess.PIPE, stderr=subprocess.PIPE)
1212 out, err = sp.communicate()
1213 return int(out.split()[1])
1214 except:
1215 pass
1216 return None
caefb1de
PH
1217
1218
1219def month_by_name(name):
1220 """ Return the number of a month by (locale-independently) English name """
1221
1222 ENGLISH_NAMES = [
dadb8184 1223 u'January', u'February', u'March', u'April', u'May', u'June',
caefb1de
PH
1224 u'July', u'August', u'September', u'October', u'November', u'December']
1225 try:
1226 return ENGLISH_NAMES.index(name) + 1
1227 except ValueError:
1228 return None
18258362
JMF
1229
1230
5aafe895 1231def fix_xml_ampersands(xml_str):
18258362 1232 """Replace all the '&' by '&amp;' in XML"""
5aafe895
PH
1233 return re.sub(
1234 r'&(?!amp;|lt;|gt;|apos;|quot;|#x[0-9a-fA-F]{,4};|#[0-9]{,4};)',
1235 u'&amp;',
1236 xml_str)
e3946f98
PH
1237
1238
1239def setproctitle(title):
8bf48f23 1240 assert isinstance(title, compat_str)
e3946f98
PH
1241 try:
1242 libc = ctypes.cdll.LoadLibrary("libc.so.6")
1243 except OSError:
1244 return
6eefe533
PH
1245 title_bytes = title.encode('utf-8')
1246 buf = ctypes.create_string_buffer(len(title_bytes))
1247 buf.value = title_bytes
e3946f98 1248 try:
6eefe533 1249 libc.prctl(15, buf, 0, 0, 0)
e3946f98
PH
1250 except AttributeError:
1251 return # Strange libc, just skip this
d7dda168
PH
1252
1253
1254def remove_start(s, start):
1255 if s.startswith(start):
1256 return s[len(start):]
1257 return s
29eb5174
PH
1258
1259
1260def url_basename(url):
9b8aaeed
JMF
1261 path = compat_urlparse.urlparse(url).path
1262 return path.strip(u'/').split(u'/')[-1]
aa94a6d3
PH
1263
1264
1265class HEADRequest(compat_urllib_request.Request):
1266 def get_method(self):
1267 return "HEAD"
7217e148
PH
1268
1269
28746fbd
PH
1270def int_or_none(v, scale=1, default=None, get_attr=None):
1271 if get_attr:
1272 if v is not None:
1273 v = getattr(v, get_attr, None)
9271bc83 1274 return default if v is None else (int(v) // scale)
608d11f5
PH
1275
1276
9271bc83
PH
1277def float_or_none(v, scale=1, default=None):
1278 return default if v is None else (float(v) / scale)
43f775e4
PH
1279
1280
608d11f5
PH
1281def parse_duration(s):
1282 if s is None:
1283 return None
1284
1285 m = re.match(
ba40a746 1286 r'(?:(?:(?P<hours>[0-9]+)[:h])?(?P<mins>[0-9]+)[:m])?(?P<secs>[0-9]+)s?(?::[0-9]+)?$', s)
608d11f5
PH
1287 if not m:
1288 return None
1289 res = int(m.group('secs'))
1290 if m.group('mins'):
1291 res += int(m.group('mins')) * 60
1292 if m.group('hours'):
1293 res += int(m.group('hours')) * 60 * 60
1294 return res
91d7d0b3
JMF
1295
1296
1297def prepend_extension(filename, ext):
1298 name, real_ext = os.path.splitext(filename)
1299 return u'{0}.{1}{2}'.format(name, ext, real_ext)
d70ad093
PH
1300
1301
1302def check_executable(exe, args=[]):
1303 """ Checks if the given binary is installed somewhere in PATH, and returns its name.
1304 args can be a list of arguments for a short output (like -version) """
1305 try:
1306 subprocess.Popen([exe] + args, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
1307 except OSError:
1308 return False
1309 return exe
b7ab0590
PH
1310
1311
1312class PagedList(object):
1313 def __init__(self, pagefunc, pagesize):
1314 self._pagefunc = pagefunc
1315 self._pagesize = pagesize
1316
dd26ced1
PH
1317 def __len__(self):
1318 # This is only useful for tests
1319 return len(self.getslice())
1320
b7ab0590
PH
1321 def getslice(self, start=0, end=None):
1322 res = []
1323 for pagenum in itertools.count(start // self._pagesize):
1324 firstid = pagenum * self._pagesize
1325 nextfirstid = pagenum * self._pagesize + self._pagesize
1326 if start >= nextfirstid:
1327 continue
1328
1329 page_results = list(self._pagefunc(pagenum))
1330
1331 startv = (
1332 start % self._pagesize
1333 if firstid <= start < nextfirstid
1334 else 0)
1335
1336 endv = (
1337 ((end - 1) % self._pagesize) + 1
1338 if (end is not None and firstid <= end <= nextfirstid)
1339 else None)
1340
1341 if startv != 0 or endv is not None:
1342 page_results = page_results[startv:endv]
1343 res.extend(page_results)
1344
1345 # A little optimization - if current page is not "full", ie. does
1346 # not contain page_size videos then we can assume that this page
1347 # is the last one - there are no more ids on further pages -
1348 # i.e. no need to query again.
1349 if len(page_results) + startv < self._pagesize:
1350 break
1351
1352 # If we got the whole page, but the next page is not interesting,
1353 # break out early as well
1354 if end == nextfirstid:
1355 break
1356 return res
81c2f20b
PH
1357
1358
1359def uppercase_escape(s):
676eb3f2 1360 unicode_escape = codecs.getdecoder('unicode_escape')
81c2f20b 1361 return re.sub(
a612753d 1362 r'\\U[0-9a-fA-F]{8}',
676eb3f2
PH
1363 lambda m: unicode_escape(m.group(0))[0],
1364 s)
b53466e1
PH
1365
1366try:
1367 struct.pack(u'!I', 0)
1368except TypeError:
1369 # In Python 2.6 (and some 2.7 versions), struct requires a bytes argument
1370 def struct_pack(spec, *args):
1371 if isinstance(spec, compat_str):
1372 spec = spec.encode('ascii')
1373 return struct.pack(spec, *args)
1374
1375 def struct_unpack(spec, *args):
1376 if isinstance(spec, compat_str):
1377 spec = spec.encode('ascii')
1378 return struct.unpack(spec, *args)
1379else:
1380 struct_pack = struct.pack
1381 struct_unpack = struct.unpack
62e609ab
PH
1382
1383
1384def read_batch_urls(batch_fd):
1385 def fixup(url):
1386 if not isinstance(url, compat_str):
1387 url = url.decode('utf-8', 'replace')
1388 BOM_UTF8 = u'\xef\xbb\xbf'
1389 if url.startswith(BOM_UTF8):
1390 url = url[len(BOM_UTF8):]
1391 url = url.strip()
1392 if url.startswith(('#', ';', ']')):
1393 return False
1394 return url
1395
1396 with contextlib.closing(batch_fd) as fd:
1397 return [url for url in map(fixup, fd) if url]
b74fa8cd
JMF
1398
1399
1400def urlencode_postdata(*args, **kargs):
1401 return compat_urllib_parse.urlencode(*args, **kargs).encode('ascii')
bcf89ce6
PH
1402
1403
1404def parse_xml(s):
1405 class TreeBuilder(xml.etree.ElementTree.TreeBuilder):
1406 def doctype(self, name, pubid, system):
1407 pass # Ignore doctypes
1408
1409 parser = xml.etree.ElementTree.XMLParser(target=TreeBuilder())
1410 kwargs = {'parser': parser} if sys.version_info >= (2, 7) else {}
1411 return xml.etree.ElementTree.XML(s.encode('utf-8'), **kwargs)
e68301af
PH
1412
1413
1414if sys.version_info < (3, 0) and sys.platform == 'win32':
1415 def compat_getpass(prompt, *args, **kwargs):
1416 if isinstance(prompt, compat_str):
4e6f9aec 1417 prompt = prompt.encode(preferredencoding())
e68301af
PH
1418 return getpass.getpass(prompt, *args, **kwargs)
1419else:
1420 compat_getpass = getpass.getpass
a1a530b0
PH
1421
1422
1423US_RATINGS = {
1424 'G': 0,
1425 'PG': 10,
1426 'PG-13': 13,
1427 'R': 16,
1428 'NC': 18,
1429}
fac55558
PH
1430
1431
1432def strip_jsonp(code):
816930c4 1433 return re.sub(r'(?s)^[a-zA-Z0-9_]+\s*\(\s*(.*)\);?\s*?\s*$', r'\1', code)
478c2c61
PH
1434
1435
1436def qualities(quality_ids):
1437 """ Get a numeric quality value out of a list of possible values """
1438 def q(qid):
1439 try:
1440 return quality_ids.index(qid)
1441 except ValueError:
1442 return -1
1443 return q
1444
acd69589
PH
1445
1446DEFAULT_OUTTMPL = '%(title)s-%(id)s.%(ext)s'
0a871f68
PH
1447
1448try:
1449 subprocess_check_output = subprocess.check_output
1450except AttributeError:
1451 def subprocess_check_output(*args, **kwargs):
1452 assert 'input' not in kwargs
1453 p = subprocess.Popen(*args, stdout=subprocess.PIPE, **kwargs)
1454 output, _ = p.communicate()
1455 ret = p.poll()
1456 if ret:
1457 raise subprocess.CalledProcessError(ret, p.args, output=output)
1458 return output