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.

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