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.

1534 lines
48 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. def compat_ord(c):
  173. if type(c) is int: return c
  174. else: return ord(c)
  175. # This is not clearly defined otherwise
  176. compiled_regex_type = type(re.compile(''))
  177. std_headers = {
  178. 'User-Agent': 'Mozilla/5.0 (X11; Linux x86_64; rv:10.0) Gecko/20100101 Firefox/10.0 (Chrome)',
  179. 'Accept-Charset': 'ISO-8859-1,utf-8;q=0.7,*;q=0.7',
  180. 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
  181. 'Accept-Encoding': 'gzip, deflate',
  182. 'Accept-Language': 'en-us,en;q=0.5',
  183. }
  184. def preferredencoding():
  185. """Get preferred encoding.
  186. Returns the best encoding scheme for the system, based on
  187. locale.getpreferredencoding() and some further tweaks.
  188. """
  189. try:
  190. pref = locale.getpreferredencoding()
  191. u'TEST'.encode(pref)
  192. except:
  193. pref = 'UTF-8'
  194. return pref
  195. if sys.version_info < (3,0):
  196. def compat_print(s):
  197. print(s.encode(preferredencoding(), 'xmlcharrefreplace'))
  198. else:
  199. def compat_print(s):
  200. assert type(s) == type(u'')
  201. print(s)
  202. def write_json_file(obj, fn):
  203. """ Encode obj as JSON and write it to fn, atomically """
  204. args = {
  205. 'suffix': '.tmp',
  206. 'prefix': os.path.basename(fn) + '.',
  207. 'dir': os.path.dirname(fn),
  208. 'delete': False,
  209. }
  210. # In Python 2.x, json.dump expects a bytestream.
  211. # In Python 3.x, it writes to a character stream
  212. if sys.version_info < (3, 0):
  213. args['mode'] = 'wb'
  214. else:
  215. args.update({
  216. 'mode': 'w',
  217. 'encoding': 'utf-8',
  218. })
  219. tf = tempfile.NamedTemporaryFile(**args)
  220. try:
  221. with tf:
  222. json.dump(obj, tf)
  223. os.rename(tf.name, fn)
  224. except:
  225. try:
  226. os.remove(tf.name)
  227. except OSError:
  228. pass
  229. raise
  230. if sys.version_info >= (2, 7):
  231. def find_xpath_attr(node, xpath, key, val):
  232. """ Find the xpath xpath[@key=val] """
  233. assert re.match(r'^[a-zA-Z-]+$', key)
  234. assert re.match(r'^[a-zA-Z0-9@\s:._-]*$', val)
  235. expr = xpath + u"[@%s='%s']" % (key, val)
  236. return node.find(expr)
  237. else:
  238. def find_xpath_attr(node, xpath, key, val):
  239. for f in node.findall(xpath):
  240. if f.attrib.get(key) == val:
  241. return f
  242. return None
  243. # On python2.6 the xml.etree.ElementTree.Element methods don't support
  244. # the namespace parameter
  245. def xpath_with_ns(path, ns_map):
  246. components = [c.split(':') for c in path.split('/')]
  247. replaced = []
  248. for c in components:
  249. if len(c) == 1:
  250. replaced.append(c[0])
  251. else:
  252. ns, tag = c
  253. replaced.append('{%s}%s' % (ns_map[ns], tag))
  254. return '/'.join(replaced)
  255. def htmlentity_transform(matchobj):
  256. """Transforms an HTML entity to a character.
  257. This function receives a match object and is intended to be used with
  258. the re.sub() function.
  259. """
  260. entity = matchobj.group(1)
  261. # Known non-numeric HTML entity
  262. if entity in compat_html_entities.name2codepoint:
  263. return compat_chr(compat_html_entities.name2codepoint[entity])
  264. mobj = re.match(u'(?u)#(x?\\d+)', entity)
  265. if mobj is not None:
  266. numstr = mobj.group(1)
  267. if numstr.startswith(u'x'):
  268. base = 16
  269. numstr = u'0%s' % numstr
  270. else:
  271. base = 10
  272. return compat_chr(int(numstr, base))
  273. # Unknown entity in name, return its literal representation
  274. return (u'&%s;' % entity)
  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 unescapeHTML(s):
  469. if s is None:
  470. return None
  471. assert type(s) == compat_str
  472. result = re.sub(r'(?u)&(.+?);', htmlentity_transform, s)
  473. return result
  474. def encodeFilename(s, for_subprocess=False):
  475. """
  476. @param s The name of the file
  477. """
  478. assert type(s) == compat_str
  479. # Python 3 has a Unicode API
  480. if sys.version_info >= (3, 0):
  481. return s
  482. if sys.platform == 'win32' and sys.getwindowsversion()[0] >= 5:
  483. # Pass u'' directly to use Unicode APIs on Windows 2000 and up
  484. # (Detecting Windows NT 4 is tricky because 'major >= 4' would
  485. # match Windows 9x series as well. Besides, NT 4 is obsolete.)
  486. if not for_subprocess:
  487. return s
  488. else:
  489. # For subprocess calls, encode with locale encoding
  490. # Refer to http://stackoverflow.com/a/9951851/35070
  491. encoding = preferredencoding()
  492. else:
  493. encoding = sys.getfilesystemencoding()
  494. if encoding is None:
  495. encoding = 'utf-8'
  496. return s.encode(encoding, 'ignore')
  497. def encodeArgument(s):
  498. if not isinstance(s, compat_str):
  499. # Legacy code that uses byte strings
  500. # Uncomment the following line after fixing all post processors
  501. #assert False, 'Internal error: %r should be of type %r, is %r' % (s, compat_str, type(s))
  502. s = s.decode('ascii')
  503. return encodeFilename(s, True)
  504. def decodeOption(optval):
  505. if optval is None:
  506. return optval
  507. if isinstance(optval, bytes):
  508. optval = optval.decode(preferredencoding())
  509. assert isinstance(optval, compat_str)
  510. return optval
  511. def formatSeconds(secs):
  512. if secs > 3600:
  513. return '%d:%02d:%02d' % (secs // 3600, (secs % 3600) // 60, secs % 60)
  514. elif secs > 60:
  515. return '%d:%02d' % (secs // 60, secs % 60)
  516. else:
  517. return '%d' % secs
  518. def make_HTTPS_handler(opts_no_check_certificate, **kwargs):
  519. if sys.version_info < (3, 2):
  520. import httplib
  521. class HTTPSConnectionV3(httplib.HTTPSConnection):
  522. def __init__(self, *args, **kwargs):
  523. httplib.HTTPSConnection.__init__(self, *args, **kwargs)
  524. def connect(self):
  525. sock = socket.create_connection((self.host, self.port), self.timeout)
  526. if getattr(self, '_tunnel_host', False):
  527. self.sock = sock
  528. self._tunnel()
  529. try:
  530. self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file, ssl_version=ssl.PROTOCOL_SSLv3)
  531. except ssl.SSLError:
  532. self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file, ssl_version=ssl.PROTOCOL_SSLv23)
  533. class HTTPSHandlerV3(compat_urllib_request.HTTPSHandler):
  534. def https_open(self, req):
  535. return self.do_open(HTTPSConnectionV3, req)
  536. return HTTPSHandlerV3(**kwargs)
  537. else:
  538. context = ssl.SSLContext(ssl.PROTOCOL_SSLv3)
  539. context.verify_mode = (ssl.CERT_NONE
  540. if opts_no_check_certificate
  541. else ssl.CERT_REQUIRED)
  542. context.set_default_verify_paths()
  543. try:
  544. context.load_default_certs()
  545. except AttributeError:
  546. pass # Python < 3.4
  547. return compat_urllib_request.HTTPSHandler(context=context, **kwargs)
  548. class ExtractorError(Exception):
  549. """Error during info extraction."""
  550. def __init__(self, msg, tb=None, expected=False, cause=None, video_id=None):
  551. """ tb, if given, is the original traceback (so that it can be printed out).
  552. If expected is set, this is a normal error message and most likely not a bug in youtube-dl.
  553. """
  554. if sys.exc_info()[0] in (compat_urllib_error.URLError, socket.timeout, UnavailableVideoError):
  555. expected = True
  556. if video_id is not None:
  557. msg = video_id + ': ' + msg
  558. if not expected:
  559. 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.'
  560. super(ExtractorError, self).__init__(msg)
  561. self.traceback = tb
  562. self.exc_info = sys.exc_info() # preserve original exception
  563. self.cause = cause
  564. self.video_id = video_id
  565. def format_traceback(self):
  566. if self.traceback is None:
  567. return None
  568. return u''.join(traceback.format_tb(self.traceback))
  569. class RegexNotFoundError(ExtractorError):
  570. """Error when a regex didn't match"""
  571. pass
  572. class DownloadError(Exception):
  573. """Download Error exception.
  574. This exception may be thrown by FileDownloader objects if they are not
  575. configured to continue on errors. They will contain the appropriate
  576. error message.
  577. """
  578. def __init__(self, msg, exc_info=None):
  579. """ exc_info, if given, is the original exception that caused the trouble (as returned by sys.exc_info()). """
  580. super(DownloadError, self).__init__(msg)
  581. self.exc_info = exc_info
  582. class SameFileError(Exception):
  583. """Same File exception.
  584. This exception will be thrown by FileDownloader objects if they detect
  585. multiple files would have to be downloaded to the same file on disk.
  586. """
  587. pass
  588. class PostProcessingError(Exception):
  589. """Post Processing exception.
  590. This exception may be raised by PostProcessor's .run() method to
  591. indicate an error in the postprocessing task.
  592. """
  593. def __init__(self, msg):
  594. self.msg = msg
  595. class MaxDownloadsReached(Exception):
  596. """ --max-downloads limit has been reached. """
  597. pass
  598. class UnavailableVideoError(Exception):
  599. """Unavailable Format exception.
  600. This exception will be thrown when a video is requested
  601. in a format that is not available for that video.
  602. """
  603. pass
  604. class ContentTooShortError(Exception):
  605. """Content Too Short exception.
  606. This exception may be raised by FileDownloader objects when a file they
  607. download is too small for what the server announced first, indicating
  608. the connection was probably interrupted.
  609. """
  610. # Both in bytes
  611. downloaded = None
  612. expected = None
  613. def __init__(self, downloaded, expected):
  614. self.downloaded = downloaded
  615. self.expected = expected
  616. class YoutubeDLHandler(compat_urllib_request.HTTPHandler):
  617. """Handler for HTTP requests and responses.
  618. This class, when installed with an OpenerDirector, automatically adds
  619. the standard headers to every HTTP request and handles gzipped and
  620. deflated responses from web servers. If compression is to be avoided in
  621. a particular request, the original request in the program code only has
  622. to include the HTTP header "Youtubedl-No-Compression", which will be
  623. removed before making the real request.
  624. Part of this code was copied from:
  625. http://techknack.net/python-urllib2-handlers/
  626. Andrew Rowls, the author of that code, agreed to release it to the
  627. public domain.
  628. """
  629. @staticmethod
  630. def deflate(data):
  631. try:
  632. return zlib.decompress(data, -zlib.MAX_WBITS)
  633. except zlib.error:
  634. return zlib.decompress(data)
  635. @staticmethod
  636. def addinfourl_wrapper(stream, headers, url, code):
  637. if hasattr(compat_urllib_request.addinfourl, 'getcode'):
  638. return compat_urllib_request.addinfourl(stream, headers, url, code)
  639. ret = compat_urllib_request.addinfourl(stream, headers, url)
  640. ret.code = code
  641. return ret
  642. def http_request(self, req):
  643. for h,v in std_headers.items():
  644. if h in req.headers:
  645. del req.headers[h]
  646. req.add_header(h, v)
  647. if 'Youtubedl-no-compression' in req.headers:
  648. if 'Accept-encoding' in req.headers:
  649. del req.headers['Accept-encoding']
  650. del req.headers['Youtubedl-no-compression']
  651. if 'Youtubedl-user-agent' in req.headers:
  652. if 'User-agent' in req.headers:
  653. del req.headers['User-agent']
  654. req.headers['User-agent'] = req.headers['Youtubedl-user-agent']
  655. del req.headers['Youtubedl-user-agent']
  656. return req
  657. def http_response(self, req, resp):
  658. old_resp = resp
  659. # gzip
  660. if resp.headers.get('Content-encoding', '') == 'gzip':
  661. content = resp.read()
  662. gz = gzip.GzipFile(fileobj=io.BytesIO(content), mode='rb')
  663. try:
  664. uncompressed = io.BytesIO(gz.read())
  665. except IOError as original_ioerror:
  666. # There may be junk add the end of the file
  667. # See http://stackoverflow.com/q/4928560/35070 for details
  668. for i in range(1, 1024):
  669. try:
  670. gz = gzip.GzipFile(fileobj=io.BytesIO(content[:-i]), mode='rb')
  671. uncompressed = io.BytesIO(gz.read())
  672. except IOError:
  673. continue
  674. break
  675. else:
  676. raise original_ioerror
  677. resp = self.addinfourl_wrapper(uncompressed, old_resp.headers, old_resp.url, old_resp.code)
  678. resp.msg = old_resp.msg
  679. # deflate
  680. if resp.headers.get('Content-encoding', '') == 'deflate':
  681. gz = io.BytesIO(self.deflate(resp.read()))
  682. resp = self.addinfourl_wrapper(gz, old_resp.headers, old_resp.url, old_resp.code)
  683. resp.msg = old_resp.msg
  684. return resp
  685. https_request = http_request
  686. https_response = http_response
  687. def parse_iso8601(date_str, delimiter='T'):
  688. """ Return a UNIX timestamp from the given date """
  689. if date_str is None:
  690. return None
  691. m = re.search(
  692. r'Z$| ?(?P<sign>\+|-)(?P<hours>[0-9]{2}):?(?P<minutes>[0-9]{2})$',
  693. date_str)
  694. if not m:
  695. timezone = datetime.timedelta()
  696. else:
  697. date_str = date_str[:-len(m.group(0))]
  698. if not m.group('sign'):
  699. timezone = datetime.timedelta()
  700. else:
  701. sign = 1 if m.group('sign') == '+' else -1
  702. timezone = datetime.timedelta(
  703. hours=sign * int(m.group('hours')),
  704. minutes=sign * int(m.group('minutes')))
  705. date_format = '%Y-%m-%d{0}%H:%M:%S'.format(delimiter)
  706. dt = datetime.datetime.strptime(date_str, date_format) - timezone
  707. return calendar.timegm(dt.timetuple())
  708. def unified_strdate(date_str):
  709. """Return a string with the date in the format YYYYMMDD"""
  710. if date_str is None:
  711. return None
  712. upload_date = None
  713. #Replace commas
  714. date_str = date_str.replace(',', ' ')
  715. # %z (UTC offset) is only supported in python>=3.2
  716. date_str = re.sub(r' ?(\+|-)[0-9]{2}:?[0-9]{2}$', '', date_str)
  717. format_expressions = [
  718. '%d %B %Y',
  719. '%d %b %Y',
  720. '%B %d %Y',
  721. '%b %d %Y',
  722. '%b %dst %Y %I:%M%p',
  723. '%b %dnd %Y %I:%M%p',
  724. '%b %dth %Y %I:%M%p',
  725. '%Y-%m-%d',
  726. '%Y/%m/%d',
  727. '%d.%m.%Y',
  728. '%d/%m/%Y',
  729. '%d/%m/%y',
  730. '%Y/%m/%d %H:%M:%S',
  731. '%Y-%m-%d %H:%M:%S',
  732. '%d.%m.%Y %H:%M',
  733. '%d.%m.%Y %H.%M',
  734. '%Y-%m-%dT%H:%M:%SZ',
  735. '%Y-%m-%dT%H:%M:%S.%fZ',
  736. '%Y-%m-%dT%H:%M:%S.%f0Z',
  737. '%Y-%m-%dT%H:%M:%S',
  738. '%Y-%m-%dT%H:%M:%S.%f',
  739. '%Y-%m-%dT%H:%M',
  740. ]
  741. for expression in format_expressions:
  742. try:
  743. upload_date = datetime.datetime.strptime(date_str, expression).strftime('%Y%m%d')
  744. except ValueError:
  745. pass
  746. if upload_date is None:
  747. timetuple = email.utils.parsedate_tz(date_str)
  748. if timetuple:
  749. upload_date = datetime.datetime(*timetuple[:6]).strftime('%Y%m%d')
  750. return upload_date
  751. def determine_ext(url, default_ext=u'unknown_video'):
  752. if url is None:
  753. return default_ext
  754. guess = url.partition(u'?')[0].rpartition(u'.')[2]
  755. if re.match(r'^[A-Za-z0-9]+$', guess):
  756. return guess
  757. else:
  758. return default_ext
  759. def subtitles_filename(filename, sub_lang, sub_format):
  760. return filename.rsplit('.', 1)[0] + u'.' + sub_lang + u'.' + sub_format
  761. def date_from_str(date_str):
  762. """
  763. Return a datetime object from a string in the format YYYYMMDD or
  764. (now|today)[+-][0-9](day|week|month|year)(s)?"""
  765. today = datetime.date.today()
  766. if date_str == 'now'or date_str == 'today':
  767. return today
  768. match = re.match('(now|today)(?P<sign>[+-])(?P<time>\d+)(?P<unit>day|week|month|year)(s)?', date_str)
  769. if match is not None:
  770. sign = match.group('sign')
  771. time = int(match.group('time'))
  772. if sign == '-':
  773. time = -time
  774. unit = match.group('unit')
  775. #A bad aproximation?
  776. if unit == 'month':
  777. unit = 'day'
  778. time *= 30
  779. elif unit == 'year':
  780. unit = 'day'
  781. time *= 365
  782. unit += 's'
  783. delta = datetime.timedelta(**{unit: time})
  784. return today + delta
  785. return datetime.datetime.strptime(date_str, "%Y%m%d").date()
  786. def hyphenate_date(date_str):
  787. """
  788. Convert a date in 'YYYYMMDD' format to 'YYYY-MM-DD' format"""
  789. match = re.match(r'^(\d\d\d\d)(\d\d)(\d\d)$', date_str)
  790. if match is not None:
  791. return '-'.join(match.groups())
  792. else:
  793. return date_str
  794. class DateRange(object):
  795. """Represents a time interval between two dates"""
  796. def __init__(self, start=None, end=None):
  797. """start and end must be strings in the format accepted by date"""
  798. if start is not None:
  799. self.start = date_from_str(start)
  800. else:
  801. self.start = datetime.datetime.min.date()
  802. if end is not None:
  803. self.end = date_from_str(end)
  804. else:
  805. self.end = datetime.datetime.max.date()
  806. if self.start > self.end:
  807. raise ValueError('Date range: "%s" , the start date must be before the end date' % self)
  808. @classmethod
  809. def day(cls, day):
  810. """Returns a range that only contains the given day"""
  811. return cls(day,day)
  812. def __contains__(self, date):
  813. """Check if the date is in the range"""
  814. if not isinstance(date, datetime.date):
  815. date = date_from_str(date)
  816. return self.start <= date <= self.end
  817. def __str__(self):
  818. return '%s - %s' % ( self.start.isoformat(), self.end.isoformat())
  819. def platform_name():
  820. """ Returns the platform name as a compat_str """
  821. res = platform.platform()
  822. if isinstance(res, bytes):
  823. res = res.decode(preferredencoding())
  824. assert isinstance(res, compat_str)
  825. return res
  826. def _windows_write_string(s, out):
  827. """ Returns True if the string was written using special methods,
  828. False if it has yet to be written out."""
  829. # Adapted from http://stackoverflow.com/a/3259271/35070
  830. import ctypes
  831. import ctypes.wintypes
  832. WIN_OUTPUT_IDS = {
  833. 1: -11,
  834. 2: -12,
  835. }
  836. try:
  837. fileno = out.fileno()
  838. except AttributeError:
  839. # If the output stream doesn't have a fileno, it's virtual
  840. return False
  841. if fileno not in WIN_OUTPUT_IDS:
  842. return False
  843. GetStdHandle = ctypes.WINFUNCTYPE(
  844. ctypes.wintypes.HANDLE, ctypes.wintypes.DWORD)(
  845. ("GetStdHandle", ctypes.windll.kernel32))
  846. h = GetStdHandle(WIN_OUTPUT_IDS[fileno])
  847. WriteConsoleW = ctypes.WINFUNCTYPE(
  848. ctypes.wintypes.BOOL, ctypes.wintypes.HANDLE, ctypes.wintypes.LPWSTR,
  849. ctypes.wintypes.DWORD, ctypes.POINTER(ctypes.wintypes.DWORD),
  850. ctypes.wintypes.LPVOID)(("WriteConsoleW", ctypes.windll.kernel32))
  851. written = ctypes.wintypes.DWORD(0)
  852. GetFileType = ctypes.WINFUNCTYPE(ctypes.wintypes.DWORD, ctypes.wintypes.DWORD)(("GetFileType", ctypes.windll.kernel32))
  853. FILE_TYPE_CHAR = 0x0002
  854. FILE_TYPE_REMOTE = 0x8000
  855. GetConsoleMode = ctypes.WINFUNCTYPE(
  856. ctypes.wintypes.BOOL, ctypes.wintypes.HANDLE,
  857. ctypes.POINTER(ctypes.wintypes.DWORD))(
  858. ("GetConsoleMode", ctypes.windll.kernel32))
  859. INVALID_HANDLE_VALUE = ctypes.wintypes.DWORD(-1).value
  860. def not_a_console(handle):
  861. if handle == INVALID_HANDLE_VALUE or handle is None:
  862. return True
  863. return ((GetFileType(handle) & ~FILE_TYPE_REMOTE) != FILE_TYPE_CHAR
  864. or GetConsoleMode(handle, ctypes.byref(ctypes.wintypes.DWORD())) == 0)
  865. if not_a_console(h):
  866. return False
  867. def next_nonbmp_pos(s):
  868. try:
  869. return next(i for i, c in enumerate(s) if ord(c) > 0xffff)
  870. except StopIteration:
  871. return len(s)
  872. while s:
  873. count = min(next_nonbmp_pos(s), 1024)
  874. ret = WriteConsoleW(
  875. h, s, count if count else 2, ctypes.byref(written), None)
  876. if ret == 0:
  877. raise OSError('Failed to write string')
  878. if not count: # We just wrote a non-BMP character
  879. assert written.value == 2
  880. s = s[1:]
  881. else:
  882. assert written.value > 0
  883. s = s[written.value:]
  884. return True
  885. def write_string(s, out=None, encoding=None):
  886. if out is None:
  887. out = sys.stderr
  888. assert type(s) == compat_str
  889. if sys.platform == 'win32' and encoding is None and hasattr(out, 'fileno'):
  890. if _windows_write_string(s, out):
  891. return
  892. if ('b' in getattr(out, 'mode', '') or
  893. sys.version_info[0] < 3): # Python 2 lies about mode of sys.stderr
  894. byt = s.encode(encoding or preferredencoding(), 'ignore')
  895. out.write(byt)
  896. elif hasattr(out, 'buffer'):
  897. enc = encoding or getattr(out, 'encoding', None) or preferredencoding()
  898. byt = s.encode(enc, 'ignore')
  899. out.buffer.write(byt)
  900. else:
  901. out.write(s)
  902. out.flush()
  903. def bytes_to_intlist(bs):
  904. if not bs:
  905. return []
  906. if isinstance(bs[0], int): # Python 3
  907. return list(bs)
  908. else:
  909. return [ord(c) for c in bs]
  910. def intlist_to_bytes(xs):
  911. if not xs:
  912. return b''
  913. if isinstance(chr(0), bytes): # Python 2
  914. return ''.join([chr(x) for x in xs])
  915. else:
  916. return bytes(xs)
  917. def get_cachedir(params={}):
  918. cache_root = os.environ.get('XDG_CACHE_HOME',
  919. os.path.expanduser('~/.cache'))
  920. return params.get('cachedir', os.path.join(cache_root, 'youtube-dl'))
  921. # Cross-platform file locking
  922. if sys.platform == 'win32':
  923. import ctypes.wintypes
  924. import msvcrt
  925. class OVERLAPPED(ctypes.Structure):
  926. _fields_ = [
  927. ('Internal', ctypes.wintypes.LPVOID),
  928. ('InternalHigh', ctypes.wintypes.LPVOID),
  929. ('Offset', ctypes.wintypes.DWORD),
  930. ('OffsetHigh', ctypes.wintypes.DWORD),
  931. ('hEvent', ctypes.wintypes.HANDLE),
  932. ]
  933. kernel32 = ctypes.windll.kernel32
  934. LockFileEx = kernel32.LockFileEx
  935. LockFileEx.argtypes = [
  936. ctypes.wintypes.HANDLE, # hFile
  937. ctypes.wintypes.DWORD, # dwFlags
  938. ctypes.wintypes.DWORD, # dwReserved
  939. ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
  940. ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
  941. ctypes.POINTER(OVERLAPPED) # Overlapped
  942. ]
  943. LockFileEx.restype = ctypes.wintypes.BOOL
  944. UnlockFileEx = kernel32.UnlockFileEx
  945. UnlockFileEx.argtypes = [
  946. ctypes.wintypes.HANDLE, # hFile
  947. ctypes.wintypes.DWORD, # dwReserved
  948. ctypes.wintypes.DWORD, # nNumberOfBytesToLockLow
  949. ctypes.wintypes.DWORD, # nNumberOfBytesToLockHigh
  950. ctypes.POINTER(OVERLAPPED) # Overlapped
  951. ]
  952. UnlockFileEx.restype = ctypes.wintypes.BOOL
  953. whole_low = 0xffffffff
  954. whole_high = 0x7fffffff
  955. def _lock_file(f, exclusive):
  956. overlapped = OVERLAPPED()
  957. overlapped.Offset = 0
  958. overlapped.OffsetHigh = 0
  959. overlapped.hEvent = 0
  960. f._lock_file_overlapped_p = ctypes.pointer(overlapped)
  961. handle = msvcrt.get_osfhandle(f.fileno())
  962. if not LockFileEx(handle, 0x2 if exclusive else 0x0, 0,
  963. whole_low, whole_high, f._lock_file_overlapped_p):
  964. raise OSError('Locking file failed: %r' % ctypes.FormatError())
  965. def _unlock_file(f):
  966. assert f._lock_file_overlapped_p
  967. handle = msvcrt.get_osfhandle(f.fileno())
  968. if not UnlockFileEx(handle, 0,
  969. whole_low, whole_high, f._lock_file_overlapped_p):
  970. raise OSError('Unlocking file failed: %r' % ctypes.FormatError())
  971. else:
  972. import fcntl
  973. def _lock_file(f, exclusive):
  974. fcntl.lockf(f, fcntl.LOCK_EX if exclusive else fcntl.LOCK_SH)
  975. def _unlock_file(f):
  976. fcntl.lockf(f, fcntl.LOCK_UN)
  977. class locked_file(object):
  978. def __init__(self, filename, mode, encoding=None):
  979. assert mode in ['r', 'a', 'w']
  980. self.f = io.open(filename, mode, encoding=encoding)
  981. self.mode = mode
  982. def __enter__(self):
  983. exclusive = self.mode != 'r'
  984. try:
  985. _lock_file(self.f, exclusive)
  986. except IOError:
  987. self.f.close()
  988. raise
  989. return self
  990. def __exit__(self, etype, value, traceback):
  991. try:
  992. _unlock_file(self.f)
  993. finally:
  994. self.f.close()
  995. def __iter__(self):
  996. return iter(self.f)
  997. def write(self, *args):
  998. return self.f.write(*args)
  999. def read(self, *args):
  1000. return self.f.read(*args)
  1001. def shell_quote(args):
  1002. quoted_args = []
  1003. encoding = sys.getfilesystemencoding()
  1004. if encoding is None:
  1005. encoding = 'utf-8'
  1006. for a in args:
  1007. if isinstance(a, bytes):
  1008. # We may get a filename encoded with 'encodeFilename'
  1009. a = a.decode(encoding)
  1010. quoted_args.append(pipes.quote(a))
  1011. return u' '.join(quoted_args)
  1012. def takewhile_inclusive(pred, seq):
  1013. """ Like itertools.takewhile, but include the latest evaluated element
  1014. (the first element so that Not pred(e)) """
  1015. for e in seq:
  1016. yield e
  1017. if not pred(e):
  1018. return
  1019. def smuggle_url(url, data):
  1020. """ Pass additional data in a URL for internal use. """
  1021. sdata = compat_urllib_parse.urlencode(
  1022. {u'__youtubedl_smuggle': json.dumps(data)})
  1023. return url + u'#' + sdata
  1024. def unsmuggle_url(smug_url, default=None):
  1025. if not '#__youtubedl_smuggle' in smug_url:
  1026. return smug_url, default
  1027. url, _, sdata = smug_url.rpartition(u'#')
  1028. jsond = compat_parse_qs(sdata)[u'__youtubedl_smuggle'][0]
  1029. data = json.loads(jsond)
  1030. return url, data
  1031. def format_bytes(bytes):
  1032. if bytes is None:
  1033. return u'N/A'
  1034. if type(bytes) is str:
  1035. bytes = float(bytes)
  1036. if bytes == 0.0:
  1037. exponent = 0
  1038. else:
  1039. exponent = int(math.log(bytes, 1024.0))
  1040. suffix = [u'B', u'KiB', u'MiB', u'GiB', u'TiB', u'PiB', u'EiB', u'ZiB', u'YiB'][exponent]
  1041. converted = float(bytes) / float(1024 ** exponent)
  1042. return u'%.2f%s' % (converted, suffix)
  1043. def get_term_width():
  1044. columns = os.environ.get('COLUMNS', None)
  1045. if columns:
  1046. return int(columns)
  1047. try:
  1048. sp = subprocess.Popen(
  1049. ['stty', 'size'],
  1050. stdout=subprocess.PIPE, stderr=subprocess.PIPE)
  1051. out, err = sp.communicate()
  1052. return int(out.split()[1])
  1053. except:
  1054. pass
  1055. return None
  1056. def month_by_name(name):
  1057. """ Return the number of a month by (locale-independently) English name """
  1058. ENGLISH_NAMES = [
  1059. u'January', u'February', u'March', u'April', u'May', u'June',
  1060. u'July', u'August', u'September', u'October', u'November', u'December']
  1061. try:
  1062. return ENGLISH_NAMES.index(name) + 1
  1063. except ValueError:
  1064. return None
  1065. def fix_xml_ampersands(xml_str):
  1066. """Replace all the '&' by '&amp;' in XML"""
  1067. return re.sub(
  1068. r'&(?!amp;|lt;|gt;|apos;|quot;|#x[0-9a-fA-F]{,4};|#[0-9]{,4};)',
  1069. u'&amp;',
  1070. xml_str)
  1071. def setproctitle(title):
  1072. assert isinstance(title, compat_str)
  1073. try:
  1074. libc = ctypes.cdll.LoadLibrary("libc.so.6")
  1075. except OSError:
  1076. return
  1077. title_bytes = title.encode('utf-8')
  1078. buf = ctypes.create_string_buffer(len(title_bytes))
  1079. buf.value = title_bytes
  1080. try:
  1081. libc.prctl(15, buf, 0, 0, 0)
  1082. except AttributeError:
  1083. return # Strange libc, just skip this
  1084. def remove_start(s, start):
  1085. if s.startswith(start):
  1086. return s[len(start):]
  1087. return s
  1088. def remove_end(s, end):
  1089. if s.endswith(end):
  1090. return s[:-len(end)]
  1091. return s
  1092. def url_basename(url):
  1093. path = compat_urlparse.urlparse(url).path
  1094. return path.strip(u'/').split(u'/')[-1]
  1095. class HEADRequest(compat_urllib_request.Request):
  1096. def get_method(self):
  1097. return "HEAD"
  1098. def int_or_none(v, scale=1, default=None, get_attr=None, invscale=1):
  1099. if get_attr:
  1100. if v is not None:
  1101. v = getattr(v, get_attr, None)
  1102. if v == '':
  1103. v = None
  1104. return default if v is None else (int(v) * invscale // scale)
  1105. def str_or_none(v, default=None):
  1106. return default if v is None else compat_str(v)
  1107. def str_to_int(int_str):
  1108. if int_str is None:
  1109. return None
  1110. int_str = re.sub(r'[,\.]', u'', int_str)
  1111. return int(int_str)
  1112. def float_or_none(v, scale=1, invscale=1, default=None):
  1113. return default if v is None else (float(v) * invscale / scale)
  1114. def parse_duration(s):
  1115. if s is None:
  1116. return None
  1117. m = re.match(
  1118. r'(?:(?:(?P<hours>[0-9]+)[:h])?(?P<mins>[0-9]+)[:m])?(?P<secs>[0-9]+)s?(?::[0-9]+)?$', s)
  1119. if not m:
  1120. return None
  1121. res = int(m.group('secs'))
  1122. if m.group('mins'):
  1123. res += int(m.group('mins')) * 60
  1124. if m.group('hours'):
  1125. res += int(m.group('hours')) * 60 * 60
  1126. return res
  1127. def prepend_extension(filename, ext):
  1128. name, real_ext = os.path.splitext(filename)
  1129. return u'{0}.{1}{2}'.format(name, ext, real_ext)
  1130. def check_executable(exe, args=[]):
  1131. """ Checks if the given binary is installed somewhere in PATH, and returns its name.
  1132. args can be a list of arguments for a short output (like -version) """
  1133. try:
  1134. subprocess.Popen([exe] + args, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
  1135. except OSError:
  1136. return False
  1137. return exe
  1138. class PagedList(object):
  1139. def __init__(self, pagefunc, pagesize):
  1140. self._pagefunc = pagefunc
  1141. self._pagesize = pagesize
  1142. def __len__(self):
  1143. # This is only useful for tests
  1144. return len(self.getslice())
  1145. def getslice(self, start=0, end=None):
  1146. res = []
  1147. for pagenum in itertools.count(start // self._pagesize):
  1148. firstid = pagenum * self._pagesize
  1149. nextfirstid = pagenum * self._pagesize + self._pagesize
  1150. if start >= nextfirstid:
  1151. continue
  1152. page_results = list(self._pagefunc(pagenum))
  1153. startv = (
  1154. start % self._pagesize
  1155. if firstid <= start < nextfirstid
  1156. else 0)
  1157. endv = (
  1158. ((end - 1) % self._pagesize) + 1
  1159. if (end is not None and firstid <= end <= nextfirstid)
  1160. else None)
  1161. if startv != 0 or endv is not None:
  1162. page_results = page_results[startv:endv]
  1163. res.extend(page_results)
  1164. # A little optimization - if current page is not "full", ie. does
  1165. # not contain page_size videos then we can assume that this page
  1166. # is the last one - there are no more ids on further pages -
  1167. # i.e. no need to query again.
  1168. if len(page_results) + startv < self._pagesize:
  1169. break
  1170. # If we got the whole page, but the next page is not interesting,
  1171. # break out early as well
  1172. if end == nextfirstid:
  1173. break
  1174. return res
  1175. def uppercase_escape(s):
  1176. unicode_escape = codecs.getdecoder('unicode_escape')
  1177. return re.sub(
  1178. r'\\U[0-9a-fA-F]{8}',
  1179. lambda m: unicode_escape(m.group(0))[0],
  1180. s)
  1181. try:
  1182. struct.pack(u'!I', 0)
  1183. except TypeError:
  1184. # In Python 2.6 (and some 2.7 versions), struct requires a bytes argument
  1185. def struct_pack(spec, *args):
  1186. if isinstance(spec, compat_str):
  1187. spec = spec.encode('ascii')
  1188. return struct.pack(spec, *args)
  1189. def struct_unpack(spec, *args):
  1190. if isinstance(spec, compat_str):
  1191. spec = spec.encode('ascii')
  1192. return struct.unpack(spec, *args)
  1193. else:
  1194. struct_pack = struct.pack
  1195. struct_unpack = struct.unpack
  1196. def read_batch_urls(batch_fd):
  1197. def fixup(url):
  1198. if not isinstance(url, compat_str):
  1199. url = url.decode('utf-8', 'replace')
  1200. BOM_UTF8 = u'\xef\xbb\xbf'
  1201. if url.startswith(BOM_UTF8):
  1202. url = url[len(BOM_UTF8):]
  1203. url = url.strip()
  1204. if url.startswith(('#', ';', ']')):
  1205. return False
  1206. return url
  1207. with contextlib.closing(batch_fd) as fd:
  1208. return [url for url in map(fixup, fd) if url]
  1209. def urlencode_postdata(*args, **kargs):
  1210. return compat_urllib_parse.urlencode(*args, **kargs).encode('ascii')
  1211. def parse_xml(s):
  1212. class TreeBuilder(xml.etree.ElementTree.TreeBuilder):
  1213. def doctype(self, name, pubid, system):
  1214. pass # Ignore doctypes
  1215. parser = xml.etree.ElementTree.XMLParser(target=TreeBuilder())
  1216. kwargs = {'parser': parser} if sys.version_info >= (2, 7) else {}
  1217. return xml.etree.ElementTree.XML(s.encode('utf-8'), **kwargs)
  1218. if sys.version_info < (3, 0) and sys.platform == 'win32':
  1219. def compat_getpass(prompt, *args, **kwargs):
  1220. if isinstance(prompt, compat_str):
  1221. prompt = prompt.encode(preferredencoding())
  1222. return getpass.getpass(prompt, *args, **kwargs)
  1223. else:
  1224. compat_getpass = getpass.getpass
  1225. US_RATINGS = {
  1226. 'G': 0,
  1227. 'PG': 10,
  1228. 'PG-13': 13,
  1229. 'R': 16,
  1230. 'NC': 18,
  1231. }
  1232. def strip_jsonp(code):
  1233. return re.sub(r'(?s)^[a-zA-Z0-9_]+\s*\(\s*(.*)\);?\s*?\s*$', r'\1', code)
  1234. def js_to_json(code):
  1235. def fix_kv(m):
  1236. key = m.group(2)
  1237. if key.startswith("'"):
  1238. assert key.endswith("'")
  1239. assert '"' not in key
  1240. key = '"%s"' % key[1:-1]
  1241. elif not key.startswith('"'):
  1242. key = '"%s"' % key
  1243. value = m.group(4)
  1244. if value.startswith("'"):
  1245. assert value.endswith("'")
  1246. assert '"' not in value
  1247. value = '"%s"' % value[1:-1]
  1248. return m.group(1) + key + m.group(3) + value
  1249. res = re.sub(r'''(?x)
  1250. ([{,]\s*)
  1251. ("[^"]*"|\'[^\']*\'|[a-z0-9A-Z]+)
  1252. (:\s*)
  1253. ([0-9.]+|true|false|"[^"]*"|\'[^\']*\'|\[|\{)
  1254. ''', fix_kv, code)
  1255. res = re.sub(r',(\s*\])', lambda m: m.group(1), res)
  1256. return res
  1257. def qualities(quality_ids):
  1258. """ Get a numeric quality value out of a list of possible values """
  1259. def q(qid):
  1260. try:
  1261. return quality_ids.index(qid)
  1262. except ValueError:
  1263. return -1
  1264. return q
  1265. DEFAULT_OUTTMPL = '%(title)s-%(id)s.%(ext)s'
  1266. try:
  1267. subprocess_check_output = subprocess.check_output
  1268. except AttributeError:
  1269. def subprocess_check_output(*args, **kwargs):
  1270. assert 'input' not in kwargs
  1271. p = subprocess.Popen(*args, stdout=subprocess.PIPE, **kwargs)
  1272. output, _ = p.communicate()
  1273. ret = p.poll()
  1274. if ret:
  1275. raise subprocess.CalledProcessError(ret, p.args, output=output)
  1276. return output