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.

544 lines
22 KiB

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