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.

467 lines
18 KiB

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