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.

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