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.

375 lines
14 KiB

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