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.

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