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

1601 lines
50 KiB

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