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.

360 lines
14 KiB

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