common.py 22 KB

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