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.

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