common.py 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475
  1. import base64
  2. import os
  3. import re
  4. import socket
  5. import sys
  6. import netrc
  7. import xml.etree.ElementTree
  8. from ..utils import (
  9. compat_http_client,
  10. compat_urllib_error,
  11. compat_str,
  12. clean_html,
  13. compiled_regex_type,
  14. ExtractorError,
  15. RegexNotFoundError,
  16. sanitize_filename,
  17. unescapeHTML,
  18. )
  19. _NO_DEFAULT = object()
  20. class InfoExtractor(object):
  21. """Information Extractor class.
  22. Information extractors are the classes that, given a URL, extract
  23. information about the video (or videos) the URL refers to. This
  24. information includes the real video URL, the video title, author and
  25. others. The information is stored in a dictionary which is then
  26. passed to the FileDownloader. The FileDownloader processes this
  27. information possibly downloading the video to the file system, among
  28. other possible outcomes.
  29. The dictionaries must include the following fields:
  30. id: Video identifier.
  31. title: Video title, unescaped.
  32. Additionally, it must contain either a formats entry or url and ext:
  33. formats: A list of dictionaries for each format available, it must
  34. be ordered from worst to best quality. Potential fields:
  35. * url Mandatory. The URL of the video file
  36. * ext Will be calculated from url if missing
  37. * format A human-readable description of the format
  38. ("mp4 container with h264/opus").
  39. Calculated from the format_id, width, height.
  40. and format_note fields if missing.
  41. * format_id A short description of the format
  42. ("mp4_h264_opus" or "19")
  43. * format_note Additional info about the format
  44. ("3D" or "DASH video")
  45. * width Width of the video, if known
  46. * height Height of the video, if known
  47. * abr Average audio bitrate in KBit/s
  48. * acodec Name of the audio codec in use
  49. * vbr Average video bitrate in KBit/s
  50. * vcodec Name of the video codec in use
  51. * filesize The number of bytes, if known in advance
  52. * player_url SWF Player URL (used for rtmpdump).
  53. url: Final video URL.
  54. ext: Video filename extension.
  55. format: The video format, defaults to ext (used for --get-format)
  56. player_url: SWF Player URL (used for rtmpdump).
  57. The following fields are optional:
  58. thumbnails: A list of dictionaries (with the entries "resolution" and
  59. "url") for the varying thumbnails
  60. thumbnail: Full URL to a video thumbnail image.
  61. description: One-line video description.
  62. uploader: Full name of the video uploader.
  63. upload_date: Video upload date (YYYYMMDD).
  64. uploader_id: Nickname or id of the video uploader.
  65. location: Physical location of the video.
  66. subtitles: The subtitle file contents as a dictionary in the format
  67. {language: subtitles}.
  68. duration: Length of the video in seconds, as an integer.
  69. view_count: How many users have watched the video on the platform.
  70. like_count: Number of positive ratings of the video
  71. dislike_count: Number of negative ratings of the video
  72. comment_count: Number of comments on the video
  73. age_limit: Age restriction for the video, as an integer (years)
  74. webpage_url: The url to the video webpage, if given to youtube-dl it
  75. should allow to get the same result again. (It will be set
  76. by YoutubeDL if it's missing)
  77. Unless mentioned otherwise, the fields should be Unicode strings.
  78. Subclasses of this one should re-define the _real_initialize() and
  79. _real_extract() methods and define a _VALID_URL regexp.
  80. Probably, they should also be added to the list of extractors.
  81. _real_extract() must return a *list* of information dictionaries as
  82. described above.
  83. Finally, the _WORKING attribute should be set to False for broken IEs
  84. in order to warn the users and skip the tests.
  85. """
  86. _ready = False
  87. _downloader = None
  88. _WORKING = True
  89. def __init__(self, downloader=None):
  90. """Constructor. Receives an optional downloader."""
  91. self._ready = False
  92. self.set_downloader(downloader)
  93. @classmethod
  94. def suitable(cls, url):
  95. """Receives a URL and returns True if suitable for this IE."""
  96. # This does not use has/getattr intentionally - we want to know whether
  97. # we have cached the regexp for *this* class, whereas getattr would also
  98. # match the superclass
  99. if '_VALID_URL_RE' not in cls.__dict__:
  100. cls._VALID_URL_RE = re.compile(cls._VALID_URL)
  101. return cls._VALID_URL_RE.match(url) is not None
  102. @classmethod
  103. def working(cls):
  104. """Getter method for _WORKING."""
  105. return cls._WORKING
  106. def initialize(self):
  107. """Initializes an instance (authentication, etc)."""
  108. if not self._ready:
  109. self._real_initialize()
  110. self._ready = True
  111. def extract(self, url):
  112. """Extracts URL information and returns it in list of dicts."""
  113. self.initialize()
  114. return self._real_extract(url)
  115. def set_downloader(self, downloader):
  116. """Sets the downloader for this IE."""
  117. self._downloader = downloader
  118. def _real_initialize(self):
  119. """Real initialization process. Redefine in subclasses."""
  120. pass
  121. def _real_extract(self, url):
  122. """Real extraction process. Redefine in subclasses."""
  123. pass
  124. @classmethod
  125. def ie_key(cls):
  126. """A string for getting the InfoExtractor with get_info_extractor"""
  127. return cls.__name__[:-2]
  128. @property
  129. def IE_NAME(self):
  130. return type(self).__name__[:-2]
  131. def _request_webpage(self, url_or_request, video_id, note=None, errnote=None, fatal=True):
  132. """ Returns the response handle """
  133. if note is None:
  134. self.report_download_webpage(video_id)
  135. elif note is not False:
  136. if video_id is None:
  137. self.to_screen(u'%s' % (note,))
  138. else:
  139. self.to_screen(u'%s: %s' % (video_id, note))
  140. try:
  141. return self._downloader.urlopen(url_or_request)
  142. except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
  143. if errnote is False:
  144. return False
  145. if errnote is None:
  146. errnote = u'Unable to download webpage'
  147. errmsg = u'%s: %s' % (errnote, compat_str(err))
  148. if fatal:
  149. raise ExtractorError(errmsg, sys.exc_info()[2], cause=err)
  150. else:
  151. self._downloader.report_warning(errmsg)
  152. return False
  153. def _download_webpage_handle(self, url_or_request, video_id, note=None, errnote=None, fatal=True):
  154. """ Returns a tuple (page content as string, URL handle) """
  155. # Strip hashes from the URL (#1038)
  156. if isinstance(url_or_request, (compat_str, str)):
  157. url_or_request = url_or_request.partition('#')[0]
  158. urlh = self._request_webpage(url_or_request, video_id, note, errnote, fatal)
  159. if urlh is False:
  160. assert not fatal
  161. return False
  162. content_type = urlh.headers.get('Content-Type', '')
  163. webpage_bytes = urlh.read()
  164. m = re.match(r'[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+\s*;\s*charset=(.+)', content_type)
  165. if m:
  166. encoding = m.group(1)
  167. else:
  168. m = re.search(br'<meta[^>]+charset=[\'"]?([^\'")]+)[ /\'">]',
  169. webpage_bytes[:1024])
  170. if m:
  171. encoding = m.group(1).decode('ascii')
  172. else:
  173. encoding = 'utf-8'
  174. if self._downloader.params.get('dump_intermediate_pages', False):
  175. try:
  176. url = url_or_request.get_full_url()
  177. except AttributeError:
  178. url = url_or_request
  179. self.to_screen(u'Dumping request to ' + url)
  180. dump = base64.b64encode(webpage_bytes).decode('ascii')
  181. self._downloader.to_screen(dump)
  182. if self._downloader.params.get('write_pages', False):
  183. try:
  184. url = url_or_request.get_full_url()
  185. except AttributeError:
  186. url = url_or_request
  187. raw_filename = ('%s_%s.dump' % (video_id, url))
  188. filename = sanitize_filename(raw_filename, restricted=True)
  189. self.to_screen(u'Saving request to ' + filename)
  190. with open(filename, 'wb') as outf:
  191. outf.write(webpage_bytes)
  192. content = webpage_bytes.decode(encoding, 'replace')
  193. return (content, urlh)
  194. def _download_webpage(self, url_or_request, video_id, note=None, errnote=None, fatal=True):
  195. """ Returns the data of the page as a string """
  196. res = self._download_webpage_handle(url_or_request, video_id, note, errnote, fatal)
  197. if res is False:
  198. return res
  199. else:
  200. content, _ = res
  201. return content
  202. def _download_xml(self, url_or_request, video_id,
  203. note=u'Downloading XML', errnote=u'Unable to download XML',
  204. transform_source=None):
  205. """Return the xml as an xml.etree.ElementTree.Element"""
  206. xml_string = self._download_webpage(url_or_request, video_id, note, errnote)
  207. if transform_source:
  208. xml_string = transform_source(xml_string)
  209. return xml.etree.ElementTree.fromstring(xml_string.encode('utf-8'))
  210. def report_warning(self, msg, video_id=None):
  211. idstr = u'' if video_id is None else u'%s: ' % video_id
  212. self._downloader.report_warning(
  213. u'[%s] %s%s' % (self.IE_NAME, idstr, msg))
  214. def to_screen(self, msg):
  215. """Print msg to screen, prefixing it with '[ie_name]'"""
  216. self._downloader.to_screen(u'[%s] %s' % (self.IE_NAME, msg))
  217. def report_extraction(self, id_or_name):
  218. """Report information extraction."""
  219. self.to_screen(u'%s: Extracting information' % id_or_name)
  220. def report_download_webpage(self, video_id):
  221. """Report webpage download."""
  222. self.to_screen(u'%s: Downloading webpage' % video_id)
  223. def report_age_confirmation(self):
  224. """Report attempt to confirm age."""
  225. self.to_screen(u'Confirming age')
  226. def report_login(self):
  227. """Report attempt to log in."""
  228. self.to_screen(u'Logging in')
  229. #Methods for following #608
  230. @staticmethod
  231. def url_result(url, ie=None, video_id=None):
  232. """Returns a url that points to a page that should be processed"""
  233. #TODO: ie should be the class used for getting the info
  234. video_info = {'_type': 'url',
  235. 'url': url,
  236. 'ie_key': ie}
  237. if video_id is not None:
  238. video_info['id'] = video_id
  239. return video_info
  240. @staticmethod
  241. def playlist_result(entries, playlist_id=None, playlist_title=None):
  242. """Returns a playlist"""
  243. video_info = {'_type': 'playlist',
  244. 'entries': entries}
  245. if playlist_id:
  246. video_info['id'] = playlist_id
  247. if playlist_title:
  248. video_info['title'] = playlist_title
  249. return video_info
  250. def _search_regex(self, pattern, string, name, default=_NO_DEFAULT, fatal=True, flags=0):
  251. """
  252. Perform a regex search on the given string, using a single or a list of
  253. patterns returning the first matching group.
  254. In case of failure return a default value or raise a WARNING or a
  255. RegexNotFoundError, depending on fatal, specifying the field name.
  256. """
  257. if isinstance(pattern, (str, compat_str, compiled_regex_type)):
  258. mobj = re.search(pattern, string, flags)
  259. else:
  260. for p in pattern:
  261. mobj = re.search(p, string, flags)
  262. if mobj: break
  263. if os.name != 'nt' and sys.stderr.isatty():
  264. _name = u'\033[0;34m%s\033[0m' % name
  265. else:
  266. _name = name
  267. if mobj:
  268. # return the first matching group
  269. return next(g for g in mobj.groups() if g is not None)
  270. elif default is not _NO_DEFAULT:
  271. return default
  272. elif fatal:
  273. raise RegexNotFoundError(u'Unable to extract %s' % _name)
  274. else:
  275. self._downloader.report_warning(u'unable to extract %s; '
  276. u'please report this issue on http://yt-dl.org/bug' % _name)
  277. return None
  278. def _html_search_regex(self, pattern, string, name, default=_NO_DEFAULT, fatal=True, flags=0):
  279. """
  280. Like _search_regex, but strips HTML tags and unescapes entities.
  281. """
  282. res = self._search_regex(pattern, string, name, default, fatal, flags)
  283. if res:
  284. return clean_html(res).strip()
  285. else:
  286. return res
  287. def _get_login_info(self):
  288. """
  289. Get the the login info as (username, password)
  290. It will look in the netrc file using the _NETRC_MACHINE value
  291. If there's no info available, return (None, None)
  292. """
  293. if self._downloader is None:
  294. return (None, None)
  295. username = None
  296. password = None
  297. downloader_params = self._downloader.params
  298. # Attempt to use provided username and password or .netrc data
  299. if downloader_params.get('username', None) is not None:
  300. username = downloader_params['username']
  301. password = downloader_params['password']
  302. elif downloader_params.get('usenetrc', False):
  303. try:
  304. info = netrc.netrc().authenticators(self._NETRC_MACHINE)
  305. if info is not None:
  306. username = info[0]
  307. password = info[2]
  308. else:
  309. raise netrc.NetrcParseError('No authenticators for %s' % self._NETRC_MACHINE)
  310. except (IOError, netrc.NetrcParseError) as err:
  311. self._downloader.report_warning(u'parsing .netrc: %s' % compat_str(err))
  312. return (username, password)
  313. # Helper functions for extracting OpenGraph info
  314. @staticmethod
  315. def _og_regexes(prop):
  316. content_re = r'content=(?:"([^>]+?)"|\'(.+?)\')'
  317. property_re = r'property=[\'"]og:%s[\'"]' % re.escape(prop)
  318. template = r'<meta[^>]+?%s[^>]+?%s'
  319. return [
  320. template % (property_re, content_re),
  321. template % (content_re, property_re),
  322. ]
  323. def _og_search_property(self, prop, html, name=None, **kargs):
  324. if name is None:
  325. name = 'OpenGraph %s' % prop
  326. escaped = self._search_regex(self._og_regexes(prop), html, name, flags=re.DOTALL, **kargs)
  327. if escaped is None:
  328. return None
  329. return unescapeHTML(escaped)
  330. def _og_search_thumbnail(self, html, **kargs):
  331. return self._og_search_property('image', html, u'thumbnail url', fatal=False, **kargs)
  332. def _og_search_description(self, html, **kargs):
  333. return self._og_search_property('description', html, fatal=False, **kargs)
  334. def _og_search_title(self, html, **kargs):
  335. return self._og_search_property('title', html, **kargs)
  336. def _og_search_video_url(self, html, name='video url', secure=True, **kargs):
  337. regexes = self._og_regexes('video')
  338. if secure: regexes = self._og_regexes('video:secure_url') + regexes
  339. return self._html_search_regex(regexes, html, name, **kargs)
  340. def _html_search_meta(self, name, html, display_name=None):
  341. if display_name is None:
  342. display_name = name
  343. return self._html_search_regex(
  344. r'''(?ix)<meta
  345. (?=[^>]+(?:itemprop|name|property)=["\']%s["\'])
  346. [^>]+content=["\']([^"\']+)["\']''' % re.escape(name),
  347. html, display_name, fatal=False)
  348. def _dc_search_uploader(self, html):
  349. return self._html_search_meta('dc.creator', html, 'uploader')
  350. def _rta_search(self, html):
  351. # See http://www.rtalabel.org/index.php?content=howtofaq#single
  352. if re.search(r'(?ix)<meta\s+name="rating"\s+'
  353. r' content="RTA-5042-1996-1400-1577-RTA"',
  354. html):
  355. return 18
  356. return 0
  357. def _media_rating_search(self, html):
  358. # See http://www.tjg-designs.com/WP/metadata-code-examples-adding-metadata-to-your-web-pages/
  359. rating = self._html_search_meta('rating', html)
  360. if not rating:
  361. return None
  362. RATING_TABLE = {
  363. 'safe for kids': 0,
  364. 'general': 8,
  365. '14 years': 14,
  366. 'mature': 17,
  367. 'restricted': 19,
  368. }
  369. return RATING_TABLE.get(rating.lower(), None)
  370. class SearchInfoExtractor(InfoExtractor):
  371. """
  372. Base class for paged search queries extractors.
  373. They accept urls in the format _SEARCH_KEY(|all|[0-9]):{query}
  374. Instances should define _SEARCH_KEY and _MAX_RESULTS.
  375. """
  376. @classmethod
  377. def _make_valid_url(cls):
  378. return r'%s(?P<prefix>|[1-9][0-9]*|all):(?P<query>[\s\S]+)' % cls._SEARCH_KEY
  379. @classmethod
  380. def suitable(cls, url):
  381. return re.match(cls._make_valid_url(), url) is not None
  382. def _real_extract(self, query):
  383. mobj = re.match(self._make_valid_url(), query)
  384. if mobj is None:
  385. raise ExtractorError(u'Invalid search query "%s"' % query)
  386. prefix = mobj.group('prefix')
  387. query = mobj.group('query')
  388. if prefix == '':
  389. return self._get_n_results(query, 1)
  390. elif prefix == 'all':
  391. return self._get_n_results(query, self._MAX_RESULTS)
  392. else:
  393. n = int(prefix)
  394. if n <= 0:
  395. raise ExtractorError(u'invalid download number %s for query "%s"' % (n, query))
  396. elif n > self._MAX_RESULTS:
  397. self._downloader.report_warning(u'%s returns max %i results (you requested %i)' % (self._SEARCH_KEY, self._MAX_RESULTS, n))
  398. n = self._MAX_RESULTS
  399. return self._get_n_results(query, n)
  400. def _get_n_results(self, query, n):
  401. """Get a specified number of results for a query"""
  402. raise NotImplementedError("This method must be implemented by subclasses")
  403. @property
  404. def SEARCH_KEY(self):
  405. return self._SEARCH_KEY