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.

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