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.

561 lines
22 KiB

11 years ago
11 years ago
  1. import base64
  2. import hashlib
  3. import json
  4. import os
  5. import re
  6. import socket
  7. import sys
  8. import netrc
  9. import xml.etree.ElementTree
  10. from ..utils import (
  11. compat_http_client,
  12. compat_urllib_error,
  13. compat_urllib_parse_urlparse,
  14. compat_str,
  15. clean_html,
  16. compiled_regex_type,
  17. ExtractorError,
  18. RegexNotFoundError,
  19. sanitize_filename,
  20. unescapeHTML,
  21. )
  22. _NO_DEFAULT = object()
  23. class InfoExtractor(object):
  24. """Information Extractor class.
  25. Information extractors are the classes that, given a URL, extract
  26. information about the video (or videos) the URL refers to. This
  27. information includes the real video URL, the video title, author and
  28. others. The information is stored in a dictionary which is then
  29. passed to the FileDownloader. The FileDownloader processes this
  30. information possibly downloading the video to the file system, among
  31. other possible outcomes.
  32. The dictionaries must include the following fields:
  33. id: Video identifier.
  34. title: Video title, unescaped.
  35. Additionally, it must contain either a formats entry or a url one:
  36. formats: A list of dictionaries for each format available, ordered
  37. from worst to best quality.
  38. Potential fields:
  39. * url Mandatory. The URL of the video file
  40. * ext Will be calculated from url if missing
  41. * format A human-readable description of the format
  42. ("mp4 container with h264/opus").
  43. Calculated from the format_id, width, height.
  44. and format_note fields if missing.
  45. * format_id A short description of the format
  46. ("mp4_h264_opus" or "19").
  47. Technically optional, but strongly recommended.
  48. * format_note Additional info about the format
  49. ("3D" or "DASH video")
  50. * width Width of the video, if known
  51. * height Height of the video, if known
  52. * resolution Textual description of width and height
  53. * tbr Average bitrate of audio and video in KBit/s
  54. * abr Average audio bitrate in KBit/s
  55. * acodec Name of the audio codec in use
  56. * vbr Average video bitrate in KBit/s
  57. * vcodec Name of the video codec in use
  58. * filesize The number of bytes, if known in advance
  59. * player_url SWF Player URL (used for rtmpdump).
  60. * protocol The protocol that will be used for the actual
  61. download, lower-case.
  62. "http", "https", "rtsp", "rtmp" or so.
  63. * preference Order number of this format. If this field is
  64. present and not None, the formats get sorted
  65. by this field.
  66. -1 for default (order by other properties),
  67. -2 or smaller for less than default.
  68. * quality Order number of the video quality of this
  69. format, irrespective of the file format.
  70. -1 for default (order by other properties),
  71. -2 or smaller for less than default.
  72. url: Final video URL.
  73. ext: Video filename extension.
  74. format: The video format, defaults to ext (used for --get-format)
  75. player_url: SWF Player URL (used for rtmpdump).
  76. The following fields are optional:
  77. thumbnails: A list of dictionaries (with the entries "resolution" and
  78. "url") for the varying thumbnails
  79. thumbnail: Full URL to a video thumbnail image.
  80. description: One-line video description.
  81. uploader: Full name of the video uploader.
  82. upload_date: Video upload date (YYYYMMDD).
  83. uploader_id: Nickname or id of the video uploader.
  84. location: Physical location of the video.
  85. subtitles: The subtitle file contents as a dictionary in the format
  86. {language: subtitles}.
  87. duration: Length of the video in seconds, as an integer.
  88. view_count: How many users have watched the video on the platform.
  89. like_count: Number of positive ratings of the video
  90. dislike_count: Number of negative ratings of the video
  91. comment_count: Number of comments on the video
  92. age_limit: Age restriction for the video, as an integer (years)
  93. webpage_url: The url to the video webpage, if given to youtube-dl it
  94. should allow to get the same result again. (It will be set
  95. by YoutubeDL if it's missing)
  96. Unless mentioned otherwise, the fields should be Unicode strings.
  97. Subclasses of this one should re-define the _real_initialize() and
  98. _real_extract() methods and define a _VALID_URL regexp.
  99. Probably, they should also be added to the list of extractors.
  100. _real_extract() must return a *list* of information dictionaries as
  101. described above.
  102. Finally, the _WORKING attribute should be set to False for broken IEs
  103. in order to warn the users and skip the tests.
  104. """
  105. _ready = False
  106. _downloader = None
  107. _WORKING = True
  108. def __init__(self, downloader=None):
  109. """Constructor. Receives an optional downloader."""
  110. self._ready = False
  111. self.set_downloader(downloader)
  112. @classmethod
  113. def suitable(cls, url):
  114. """Receives a URL and returns True if suitable for this IE."""
  115. # This does not use has/getattr intentionally - we want to know whether
  116. # we have cached the regexp for *this* class, whereas getattr would also
  117. # match the superclass
  118. if '_VALID_URL_RE' not in cls.__dict__:
  119. cls._VALID_URL_RE = re.compile(cls._VALID_URL)
  120. return cls._VALID_URL_RE.match(url) is not None
  121. @classmethod
  122. def working(cls):
  123. """Getter method for _WORKING."""
  124. return cls._WORKING
  125. def initialize(self):
  126. """Initializes an instance (authentication, etc)."""
  127. if not self._ready:
  128. self._real_initialize()
  129. self._ready = True
  130. def extract(self, url):
  131. """Extracts URL information and returns it in list of dicts."""
  132. self.initialize()
  133. return self._real_extract(url)
  134. def set_downloader(self, downloader):
  135. """Sets the downloader for this IE."""
  136. self._downloader = downloader
  137. def _real_initialize(self):
  138. """Real initialization process. Redefine in subclasses."""
  139. pass
  140. def _real_extract(self, url):
  141. """Real extraction process. Redefine in subclasses."""
  142. pass
  143. @classmethod
  144. def ie_key(cls):
  145. """A string for getting the InfoExtractor with get_info_extractor"""
  146. return cls.__name__[:-2]
  147. @property
  148. def IE_NAME(self):
  149. return type(self).__name__[:-2]
  150. def _request_webpage(self, url_or_request, video_id, note=None, errnote=None, fatal=True):
  151. """ Returns the response handle """
  152. if note is None:
  153. self.report_download_webpage(video_id)
  154. elif note is not False:
  155. if video_id is None:
  156. self.to_screen(u'%s' % (note,))
  157. else:
  158. self.to_screen(u'%s: %s' % (video_id, note))
  159. try:
  160. return self._downloader.urlopen(url_or_request)
  161. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  162. if errnote is False:
  163. return False
  164. if errnote is None:
  165. errnote = u'Unable to download webpage'
  166. errmsg = u'%s: %s' % (errnote, compat_str(err))
  167. if fatal:
  168. raise ExtractorError(errmsg, sys.exc_info()[2], cause=err)
  169. else:
  170. self._downloader.report_warning(errmsg)
  171. return False
  172. def _download_webpage_handle(self, url_or_request, video_id, note=None, errnote=None, fatal=True):
  173. """ Returns a tuple (page content as string, URL handle) """
  174. # Strip hashes from the URL (#1038)
  175. if isinstance(url_or_request, (compat_str, str)):
  176. url_or_request = url_or_request.partition('#')[0]
  177. urlh = self._request_webpage(url_or_request, video_id, note, errnote, fatal)
  178. if urlh is False:
  179. assert not fatal
  180. return False
  181. content_type = urlh.headers.get('Content-Type', '')
  182. webpage_bytes = urlh.read()
  183. m = re.match(r'[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+\s*;\s*charset=(.+)', content_type)
  184. if m:
  185. encoding = m.group(1)
  186. else:
  187. m = re.search(br'<meta[^>]+charset=[\'"]?([^\'")]+)[ /\'">]',
  188. webpage_bytes[:1024])
  189. if m:
  190. encoding = m.group(1).decode('ascii')
  191. elif webpage_bytes.startswith(b'\xff\xfe'):
  192. encoding = 'utf-16'
  193. else:
  194. encoding = 'utf-8'
  195. if self._downloader.params.get('dump_intermediate_pages', False):
  196. try:
  197. url = url_or_request.get_full_url()
  198. except AttributeError:
  199. url = url_or_request
  200. self.to_screen(u'Dumping request to ' + url)
  201. dump = base64.b64encode(webpage_bytes).decode('ascii')
  202. self._downloader.to_screen(dump)
  203. if self._downloader.params.get('write_pages', False):
  204. try:
  205. url = url_or_request.get_full_url()
  206. except AttributeError:
  207. url = url_or_request
  208. if len(url) > 200:
  209. h = u'___' + hashlib.md5(url).hexdigest()
  210. url = url[:200 - len(h)] + h
  211. raw_filename = ('%s_%s.dump' % (video_id, url))
  212. filename = sanitize_filename(raw_filename, restricted=True)
  213. self.to_screen(u'Saving request to ' + filename)
  214. with open(filename, 'wb') as outf:
  215. outf.write(webpage_bytes)
  216. content = webpage_bytes.decode(encoding, 'replace')
  217. return (content, urlh)
  218. def _download_webpage(self, url_or_request, video_id, note=None, errnote=None, fatal=True):
  219. """ Returns the data of the page as a string """
  220. res = self._download_webpage_handle(url_or_request, video_id, note, errnote, fatal)
  221. if res is False:
  222. return res
  223. else:
  224. content, _ = res
  225. return content
  226. def _download_xml(self, url_or_request, video_id,
  227. note=u'Downloading XML', errnote=u'Unable to download XML',
  228. transform_source=None):
  229. """Return the xml as an xml.etree.ElementTree.Element"""
  230. xml_string = self._download_webpage(url_or_request, video_id, note, errnote)
  231. if transform_source:
  232. xml_string = transform_source(xml_string)
  233. return xml.etree.ElementTree.fromstring(xml_string.encode('utf-8'))
  234. def _download_json(self, url_or_request, video_id,
  235. note=u'Downloading JSON metadata',
  236. errnote=u'Unable to download JSON metadata'):
  237. json_string = self._download_webpage(url_or_request, video_id, note, errnote)
  238. try:
  239. return json.loads(json_string)
  240. except ValueError as ve:
  241. raise ExtractorError('Failed to download JSON', cause=ve)
  242. def report_warning(self, msg, video_id=None):
  243. idstr = u'' if video_id is None else u'%s: ' % video_id
  244. self._downloader.report_warning(
  245. u'[%s] %s%s' % (self.IE_NAME, idstr, msg))
  246. def to_screen(self, msg):
  247. """Print msg to screen, prefixing it with '[ie_name]'"""
  248. self._downloader.to_screen(u'[%s] %s' % (self.IE_NAME, msg))
  249. def report_extraction(self, id_or_name):
  250. """Report information extraction."""
  251. self.to_screen(u'%s: Extracting information' % id_or_name)
  252. def report_download_webpage(self, video_id):
  253. """Report webpage download."""
  254. self.to_screen(u'%s: Downloading webpage' % video_id)
  255. def report_age_confirmation(self):
  256. """Report attempt to confirm age."""
  257. self.to_screen(u'Confirming age')
  258. def report_login(self):
  259. """Report attempt to log in."""
  260. self.to_screen(u'Logging in')
  261. #Methods for following #608
  262. @staticmethod
  263. def url_result(url, ie=None, video_id=None):
  264. """Returns a url that points to a page that should be processed"""
  265. #TODO: ie should be the class used for getting the info
  266. video_info = {'_type': 'url',
  267. 'url': url,
  268. 'ie_key': ie}
  269. if video_id is not None:
  270. video_info['id'] = video_id
  271. return video_info
  272. @staticmethod
  273. def playlist_result(entries, playlist_id=None, playlist_title=None):
  274. """Returns a playlist"""
  275. video_info = {'_type': 'playlist',
  276. 'entries': entries}
  277. if playlist_id:
  278. video_info['id'] = playlist_id
  279. if playlist_title:
  280. video_info['title'] = playlist_title
  281. return video_info
  282. def _search_regex(self, pattern, string, name, default=_NO_DEFAULT, fatal=True, flags=0):
  283. """
  284. Perform a regex search on the given string, using a single or a list of
  285. patterns returning the first matching group.
  286. In case of failure return a default value or raise a WARNING or a
  287. RegexNotFoundError, depending on fatal, specifying the field name.
  288. """
  289. if isinstance(pattern, (str, compat_str, compiled_regex_type)):
  290. mobj = re.search(pattern, string, flags)
  291. else:
  292. for p in pattern:
  293. mobj = re.search(p, string, flags)
  294. if mobj: break
  295. if os.name != 'nt' and sys.stderr.isatty():
  296. _name = u'\033[0;34m%s\033[0m' % name
  297. else:
  298. _name = name
  299. if mobj:
  300. # return the first matching group
  301. return next(g for g in mobj.groups() if g is not None)
  302. elif default is not _NO_DEFAULT:
  303. return default
  304. elif fatal:
  305. raise RegexNotFoundError(u'Unable to extract %s' % _name)
  306. else:
  307. self._downloader.report_warning(u'unable to extract %s; '
  308. u'please report this issue on http://yt-dl.org/bug' % _name)
  309. return None
  310. def _html_search_regex(self, pattern, string, name, default=_NO_DEFAULT, fatal=True, flags=0):
  311. """
  312. Like _search_regex, but strips HTML tags and unescapes entities.
  313. """
  314. res = self._search_regex(pattern, string, name, default, fatal, flags)
  315. if res:
  316. return clean_html(res).strip()
  317. else:
  318. return res
  319. def _get_login_info(self):
  320. """
  321. Get the the login info as (username, password)
  322. It will look in the netrc file using the _NETRC_MACHINE value
  323. If there's no info available, return (None, None)
  324. """
  325. if self._downloader is None:
  326. return (None, None)
  327. username = None
  328. password = None
  329. downloader_params = self._downloader.params
  330. # Attempt to use provided username and password or .netrc data
  331. if downloader_params.get('username', None) is not None:
  332. username = downloader_params['username']
  333. password = downloader_params['password']
  334. elif downloader_params.get('usenetrc', False):
  335. try:
  336. info = netrc.netrc().authenticators(self._NETRC_MACHINE)
  337. if info is not None:
  338. username = info[0]
  339. password = info[2]
  340. else:
  341. raise netrc.NetrcParseError('No authenticators for %s' % self._NETRC_MACHINE)
  342. except (IOError, netrc.NetrcParseError) as err:
  343. self._downloader.report_warning(u'parsing .netrc: %s' % compat_str(err))
  344. return (username, password)
  345. # Helper functions for extracting OpenGraph info
  346. @staticmethod
  347. def _og_regexes(prop):
  348. content_re = r'content=(?:"([^>]+?)"|\'(.+?)\')'
  349. property_re = r'(?:name|property)=[\'"]og:%s[\'"]' % re.escape(prop)
  350. template = r'<meta[^>]+?%s[^>]+?%s'
  351. return [
  352. template % (property_re, content_re),
  353. template % (content_re, property_re),
  354. ]
  355. def _og_search_property(self, prop, html, name=None, **kargs):
  356. if name is None:
  357. name = 'OpenGraph %s' % prop
  358. escaped = self._search_regex(self._og_regexes(prop), html, name, flags=re.DOTALL, **kargs)
  359. if escaped is None:
  360. return None
  361. return unescapeHTML(escaped)
  362. def _og_search_thumbnail(self, html, **kargs):
  363. return self._og_search_property('image', html, u'thumbnail url', fatal=False, **kargs)
  364. def _og_search_description(self, html, **kargs):
  365. return self._og_search_property('description', html, fatal=False, **kargs)
  366. def _og_search_title(self, html, **kargs):
  367. return self._og_search_property('title', html, **kargs)
  368. def _og_search_video_url(self, html, name='video url', secure=True, **kargs):
  369. regexes = self._og_regexes('video')
  370. if secure: regexes = self._og_regexes('video:secure_url') + regexes
  371. return self._html_search_regex(regexes, html, name, **kargs)
  372. def _html_search_meta(self, name, html, display_name=None):
  373. if display_name is None:
  374. display_name = name
  375. return self._html_search_regex(
  376. r'''(?ix)<meta
  377. (?=[^>]+(?:itemprop|name|property)=["\']%s["\'])
  378. [^>]+content=["\']([^"\']+)["\']''' % re.escape(name),
  379. html, display_name, fatal=False)
  380. def _dc_search_uploader(self, html):
  381. return self._html_search_meta('dc.creator', html, 'uploader')
  382. def _rta_search(self, html):
  383. # See http://www.rtalabel.org/index.php?content=howtofaq#single
  384. if re.search(r'(?ix)<meta\s+name="rating"\s+'
  385. r' content="RTA-5042-1996-1400-1577-RTA"',
  386. html):
  387. return 18
  388. return 0
  389. def _media_rating_search(self, html):
  390. # See http://www.tjg-designs.com/WP/metadata-code-examples-adding-metadata-to-your-web-pages/
  391. rating = self._html_search_meta('rating', html)
  392. if not rating:
  393. return None
  394. RATING_TABLE = {
  395. 'safe for kids': 0,
  396. 'general': 8,
  397. '14 years': 14,
  398. 'mature': 17,
  399. 'restricted': 19,
  400. }
  401. return RATING_TABLE.get(rating.lower(), None)
  402. def _sort_formats(self, formats):
  403. def _formats_key(f):
  404. # TODO remove the following workaround
  405. from ..utils import determine_ext
  406. if not f.get('ext') and 'url' in f:
  407. f['ext'] = determine_ext(f['url'])
  408. preference = f.get('preference')
  409. if preference is None:
  410. proto = f.get('protocol')
  411. if proto is None:
  412. proto = compat_urllib_parse_urlparse(f.get('url', '')).scheme
  413. preference = 0 if proto in ['http', 'https'] else -0.1
  414. if f.get('ext') in ['f4f', 'f4m']: # Not yet supported
  415. preference -= 0.5
  416. if f.get('vcodec') == 'none': # audio only
  417. if self._downloader.params.get('prefer_free_formats'):
  418. ORDER = [u'aac', u'mp3', u'm4a', u'webm', u'ogg', u'opus']
  419. else:
  420. ORDER = [u'webm', u'opus', u'ogg', u'mp3', u'aac', u'm4a']
  421. ext_preference = 0
  422. try:
  423. audio_ext_preference = ORDER.index(f['ext'])
  424. except ValueError:
  425. audio_ext_preference = -1
  426. else:
  427. if self._downloader.params.get('prefer_free_formats'):
  428. ORDER = [u'flv', u'mp4', u'webm']
  429. else:
  430. ORDER = [u'webm', u'flv', u'mp4']
  431. try:
  432. ext_preference = ORDER.index(f['ext'])
  433. except ValueError:
  434. ext_preference = -1
  435. audio_ext_preference = 0
  436. return (
  437. preference,
  438. f.get('quality') if f.get('quality') is not None else -1,
  439. f.get('height') if f.get('height') is not None else -1,
  440. f.get('width') if f.get('width') is not None else -1,
  441. ext_preference,
  442. f.get('tbr') if f.get('tbr') is not None else -1,
  443. f.get('vbr') if f.get('vbr') is not None else -1,
  444. f.get('abr') if f.get('abr') is not None else -1,
  445. audio_ext_preference,
  446. f.get('filesize') if f.get('filesize') is not None else -1,
  447. f.get('format_id'),
  448. )
  449. formats.sort(key=_formats_key)
  450. class SearchInfoExtractor(InfoExtractor):
  451. """
  452. Base class for paged search queries extractors.
  453. They accept urls in the format _SEARCH_KEY(|all|[0-9]):{query}
  454. Instances should define _SEARCH_KEY and _MAX_RESULTS.
  455. """
  456. @classmethod
  457. def _make_valid_url(cls):
  458. return r'%s(?P<prefix>|[1-9][0-9]*|all):(?P<query>[\s\S]+)' % cls._SEARCH_KEY
  459. @classmethod
  460. def suitable(cls, url):
  461. return re.match(cls._make_valid_url(), url) is not None
  462. def _real_extract(self, query):
  463. mobj = re.match(self._make_valid_url(), query)
  464. if mobj is None:
  465. raise ExtractorError(u'Invalid search query "%s"' % query)
  466. prefix = mobj.group('prefix')
  467. query = mobj.group('query')
  468. if prefix == '':
  469. return self._get_n_results(query, 1)
  470. elif prefix == 'all':
  471. return self._get_n_results(query, self._MAX_RESULTS)
  472. else:
  473. n = int(prefix)
  474. if n <= 0:
  475. raise ExtractorError(u'invalid download number %s for query "%s"' % (n, query))
  476. elif n > self._MAX_RESULTS:
  477. self._downloader.report_warning(u'%s returns max %i results (you requested %i)' % (self._SEARCH_KEY, self._MAX_RESULTS, n))
  478. n = self._MAX_RESULTS
  479. return self._get_n_results(query, n)
  480. def _get_n_results(self, query, n):
  481. """Get a specified number of results for a query"""
  482. raise NotImplementedError("This method must be implemented by subclasses")
  483. @property
  484. def SEARCH_KEY(self):
  485. return self._SEARCH_KEY