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.

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