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.

325 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. urlh = self._request_webpage(url_or_request, video_id, note, errnote)
  105. content_type = urlh.headers.get('Content-Type', '')
  106. m = re.match(r'[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+\s*;\s*charset=(.+)', content_type)
  107. if m:
  108. encoding = m.group(1)
  109. else:
  110. encoding = 'utf-8'
  111. webpage_bytes = urlh.read()
  112. if self._downloader.params.get('dump_intermediate_pages', False):
  113. try:
  114. url = url_or_request.get_full_url()
  115. except AttributeError:
  116. url = url_or_request
  117. self.to_screen(u'Dumping request to ' + url)
  118. dump = base64.b64encode(webpage_bytes).decode('ascii')
  119. self._downloader.to_screen(dump)
  120. content = webpage_bytes.decode(encoding, 'replace')
  121. return (content, urlh)
  122. def _download_webpage(self, url_or_request, video_id, note=None, errnote=None):
  123. """ Returns the data of the page as a string """
  124. return self._download_webpage_handle(url_or_request, video_id, note, errnote)[0]
  125. def to_screen(self, msg):
  126. """Print msg to screen, prefixing it with '[ie_name]'"""
  127. self._downloader.to_screen(u'[%s] %s' % (self.IE_NAME, msg))
  128. def report_extraction(self, id_or_name):
  129. """Report information extraction."""
  130. self.to_screen(u'%s: Extracting information' % id_or_name)
  131. def report_download_webpage(self, video_id):
  132. """Report webpage download."""
  133. self.to_screen(u'%s: Downloading webpage' % video_id)
  134. def report_age_confirmation(self):
  135. """Report attempt to confirm age."""
  136. self.to_screen(u'Confirming age')
  137. def report_login(self):
  138. """Report attempt to log in."""
  139. self.to_screen(u'Logging in')
  140. #Methods for following #608
  141. def url_result(self, url, ie=None):
  142. """Returns a url that points to a page that should be processed"""
  143. #TODO: ie should be the class used for getting the info
  144. video_info = {'_type': 'url',
  145. 'url': url,
  146. 'ie_key': ie}
  147. return video_info
  148. def playlist_result(self, entries, playlist_id=None, playlist_title=None):
  149. """Returns a playlist"""
  150. video_info = {'_type': 'playlist',
  151. 'entries': entries}
  152. if playlist_id:
  153. video_info['id'] = playlist_id
  154. if playlist_title:
  155. video_info['title'] = playlist_title
  156. return video_info
  157. def _search_regex(self, pattern, string, name, default=None, fatal=True, flags=0):
  158. """
  159. Perform a regex search on the given string, using a single or a list of
  160. patterns returning the first matching group.
  161. In case of failure return a default value or raise a WARNING or a
  162. ExtractorError, depending on fatal, specifying the field name.
  163. """
  164. if isinstance(pattern, (str, compat_str, compiled_regex_type)):
  165. mobj = re.search(pattern, string, flags)
  166. else:
  167. for p in pattern:
  168. mobj = re.search(p, string, flags)
  169. if mobj: break
  170. if sys.stderr.isatty() and os.name != 'nt':
  171. _name = u'\033[0;34m%s\033[0m' % name
  172. else:
  173. _name = name
  174. if mobj:
  175. # return the first matching group
  176. return next(g for g in mobj.groups() if g is not None)
  177. elif default is not None:
  178. return default
  179. elif fatal:
  180. raise ExtractorError(u'Unable to extract %s' % _name)
  181. else:
  182. self._downloader.report_warning(u'unable to extract %s; '
  183. u'please report this issue on http://yt-dl.org/bug' % _name)
  184. return None
  185. def _html_search_regex(self, pattern, string, name, default=None, fatal=True, flags=0):
  186. """
  187. Like _search_regex, but strips HTML tags and unescapes entities.
  188. """
  189. res = self._search_regex(pattern, string, name, default, fatal, flags)
  190. if res:
  191. return clean_html(res).strip()
  192. else:
  193. return res
  194. def _get_login_info(self):
  195. """
  196. Get the the login info as (username, password)
  197. It will look in the netrc file using the _NETRC_MACHINE value
  198. If there's no info available, return (None, None)
  199. """
  200. if self._downloader is None:
  201. return (None, None)
  202. username = None
  203. password = None
  204. downloader_params = self._downloader.params
  205. # Attempt to use provided username and password or .netrc data
  206. if downloader_params.get('username', None) is not None:
  207. username = downloader_params['username']
  208. password = downloader_params['password']
  209. elif downloader_params.get('usenetrc', False):
  210. try:
  211. info = netrc.netrc().authenticators(self._NETRC_MACHINE)
  212. if info is not None:
  213. username = info[0]
  214. password = info[2]
  215. else:
  216. raise netrc.NetrcParseError('No authenticators for %s' % self._NETRC_MACHINE)
  217. except (IOError, netrc.NetrcParseError) as err:
  218. self._downloader.report_warning(u'parsing .netrc: %s' % compat_str(err))
  219. return (username, password)
  220. # Helper functions for extracting OpenGraph info
  221. @staticmethod
  222. def _og_regex(prop):
  223. return r'<meta.+?property=[\'"]og:%s[\'"].+?content=(?:"(.+?)"|\'(.+?)\')' % re.escape(prop)
  224. def _og_search_property(self, prop, html, name=None, **kargs):
  225. if name is None:
  226. name = 'OpenGraph %s' % prop
  227. return self._html_search_regex(self._og_regex(prop), html, name, flags=re.DOTALL, **kargs)
  228. def _og_search_thumbnail(self, html, **kargs):
  229. return self._og_search_property('image', html, u'thumbnail url', fatal=False, **kargs)
  230. def _og_search_description(self, html, **kargs):
  231. return self._og_search_property('description', html, fatal=False, **kargs)
  232. def _og_search_title(self, html, **kargs):
  233. return self._og_search_property('title', html, **kargs)
  234. def _og_search_video_url(self, html, name='video url', **kargs):
  235. return self._html_search_regex([self._og_regex('video:secure_url'),
  236. self._og_regex('video')],
  237. html, name, **kargs)
  238. class SearchInfoExtractor(InfoExtractor):
  239. """
  240. Base class for paged search queries extractors.
  241. They accept urls in the format _SEARCH_KEY(|all|[0-9]):{query}
  242. Instances should define _SEARCH_KEY and _MAX_RESULTS.
  243. """
  244. @classmethod
  245. def _make_valid_url(cls):
  246. return r'%s(?P<prefix>|[1-9][0-9]*|all):(?P<query>[\s\S]+)' % cls._SEARCH_KEY
  247. @classmethod
  248. def suitable(cls, url):
  249. return re.match(cls._make_valid_url(), url) is not None
  250. def _real_extract(self, query):
  251. mobj = re.match(self._make_valid_url(), query)
  252. if mobj is None:
  253. raise ExtractorError(u'Invalid search query "%s"' % query)
  254. prefix = mobj.group('prefix')
  255. query = mobj.group('query')
  256. if prefix == '':
  257. return self._get_n_results(query, 1)
  258. elif prefix == 'all':
  259. return self._get_n_results(query, self._MAX_RESULTS)
  260. else:
  261. n = int(prefix)
  262. if n <= 0:
  263. raise ExtractorError(u'invalid download number %s for query "%s"' % (n, query))
  264. elif n > self._MAX_RESULTS:
  265. self._downloader.report_warning(u'%s returns max %i results (you requested %i)' % (self._SEARCH_KEY, self._MAX_RESULTS, n))
  266. n = self._MAX_RESULTS
  267. return self._get_n_results(query, n)
  268. def _get_n_results(self, query, n):
  269. """Get a specified number of results for a query"""
  270. raise NotImplementedError("This method must be implemented by sublclasses")
  271. @property
  272. def SEARCH_KEY(self):
  273. return self._SEARCH_KEY