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.

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