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.

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