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.

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