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.

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