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.

618 lines
25 KiB

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