common.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304
  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. thumbnail: Full URL to a video thumbnail image.
  33. description: One-line video description.
  34. uploader: Full name of the video uploader.
  35. upload_date: Video upload date (YYYYMMDD).
  36. uploader_id: Nickname or id of the video uploader.
  37. location: Physical location of the video.
  38. player_url: SWF Player URL (used for rtmpdump).
  39. subtitles: The subtitle file contents.
  40. view_count: How many users have watched the video on the platform.
  41. urlhandle: [internal] The urlHandle to be used to download the file,
  42. like returned by urllib.request.urlopen
  43. The fields should all be Unicode strings.
  44. Subclasses of this one should re-define the _real_initialize() and
  45. _real_extract() methods and define a _VALID_URL regexp.
  46. Probably, they should also be added to the list of extractors.
  47. _real_extract() must return a *list* of information dictionaries as
  48. described above.
  49. Finally, the _WORKING attribute should be set to False for broken IEs
  50. in order to warn the users and skip the tests.
  51. """
  52. _ready = False
  53. _downloader = None
  54. _WORKING = True
  55. def __init__(self, downloader=None):
  56. """Constructor. Receives an optional downloader."""
  57. self._ready = False
  58. self.set_downloader(downloader)
  59. @classmethod
  60. def suitable(cls, url):
  61. """Receives a URL and returns True if suitable for this IE."""
  62. return re.match(cls._VALID_URL, url) is not None
  63. @classmethod
  64. def working(cls):
  65. """Getter method for _WORKING."""
  66. return cls._WORKING
  67. def initialize(self):
  68. """Initializes an instance (authentication, etc)."""
  69. if not self._ready:
  70. self._real_initialize()
  71. self._ready = True
  72. def extract(self, url):
  73. """Extracts URL information and returns it in list of dicts."""
  74. self.initialize()
  75. return self._real_extract(url)
  76. def set_downloader(self, downloader):
  77. """Sets the downloader for this IE."""
  78. self._downloader = downloader
  79. def _real_initialize(self):
  80. """Real initialization process. Redefine in subclasses."""
  81. pass
  82. def _real_extract(self, url):
  83. """Real extraction process. Redefine in subclasses."""
  84. pass
  85. @property
  86. def IE_NAME(self):
  87. return type(self).__name__[:-2]
  88. def _request_webpage(self, url_or_request, video_id, note=None, errnote=None):
  89. """ Returns the response handle """
  90. if note is None:
  91. self.report_download_webpage(video_id)
  92. elif note is not False:
  93. self.to_screen(u'%s: %s' % (video_id, note))
  94. try:
  95. return compat_urllib_request.urlopen(url_or_request)
  96. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  97. if errnote is None:
  98. errnote = u'Unable to download webpage'
  99. raise ExtractorError(u'%s: %s' % (errnote, compat_str(err)), sys.exc_info()[2])
  100. def _download_webpage_handle(self, url_or_request, video_id, note=None, errnote=None):
  101. """ Returns a tuple (page content as string, URL handle) """
  102. urlh = self._request_webpage(url_or_request, video_id, note, errnote)
  103. content_type = urlh.headers.get('Content-Type', '')
  104. m = re.match(r'[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+\s*;\s*charset=(.+)', content_type)
  105. if m:
  106. encoding = m.group(1)
  107. else:
  108. encoding = 'utf-8'
  109. webpage_bytes = urlh.read()
  110. if self._downloader.params.get('dump_intermediate_pages', False):
  111. try:
  112. url = url_or_request.get_full_url()
  113. except AttributeError:
  114. url = url_or_request
  115. self.to_screen(u'Dumping request to ' + url)
  116. dump = base64.b64encode(webpage_bytes).decode('ascii')
  117. self._downloader.to_screen(dump)
  118. content = webpage_bytes.decode(encoding, 'replace')
  119. return (content, urlh)
  120. def _download_webpage(self, url_or_request, video_id, note=None, errnote=None):
  121. """ Returns the data of the page as a string """
  122. return self._download_webpage_handle(url_or_request, video_id, note, errnote)[0]
  123. def to_screen(self, msg):
  124. """Print msg to screen, prefixing it with '[ie_name]'"""
  125. self._downloader.to_screen(u'[%s] %s' % (self.IE_NAME, msg))
  126. def report_extraction(self, id_or_name):
  127. """Report information extraction."""
  128. self.to_screen(u'%s: Extracting information' % id_or_name)
  129. def report_download_webpage(self, video_id):
  130. """Report webpage download."""
  131. self.to_screen(u'%s: Downloading webpage' % video_id)
  132. def report_age_confirmation(self):
  133. """Report attempt to confirm age."""
  134. self.to_screen(u'Confirming age')
  135. def report_login(self):
  136. """Report attempt to log in."""
  137. self.to_screen(u'Logging in')
  138. #Methods for following #608
  139. #They set the correct value of the '_type' key
  140. def video_result(self, video_info):
  141. """Returns a video"""
  142. video_info['_type'] = 'video'
  143. return video_info
  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. class SearchInfoExtractor(InfoExtractor):
  224. """
  225. Base class for paged search queries extractors.
  226. They accept urls in the format _SEARCH_KEY(|all|[0-9]):{query}
  227. Instances should define _SEARCH_KEY and _MAX_RESULTS.
  228. """
  229. @classmethod
  230. def _make_valid_url(cls):
  231. return r'%s(?P<prefix>|[1-9][0-9]*|all):(?P<query>[\s\S]+)' % cls._SEARCH_KEY
  232. @classmethod
  233. def suitable(cls, url):
  234. return re.match(cls._make_valid_url(), url) is not None
  235. def _real_extract(self, query):
  236. mobj = re.match(self._make_valid_url(), query)
  237. if mobj is None:
  238. raise ExtractorError(u'Invalid search query "%s"' % query)
  239. prefix = mobj.group('prefix')
  240. query = mobj.group('query')
  241. if prefix == '':
  242. return self._get_n_results(query, 1)
  243. elif prefix == 'all':
  244. return self._get_n_results(query, self._MAX_RESULTS)
  245. else:
  246. n = int(prefix)
  247. if n <= 0:
  248. raise ExtractorError(u'invalid download number %s for query "%s"' % (n, query))
  249. elif n > self._MAX_RESULTS:
  250. self._downloader.report_warning(u'%s returns max %i results (you requested %i)' % (self._SEARCH_KEY, self._MAX_RESULTS, n))
  251. n = self._MAX_RESULTS
  252. return self._get_n_results(query, n)
  253. def _get_n_results(self, query, n):
  254. """Get a specified number of results for a query"""
  255. raise NotImplementedError("This method must be implemented by sublclasses")
  256. @property
  257. def SEARCH_KEY(self):
  258. return self._SEARCH_KEY