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.

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