Merge branch 'master' into subtitles_rework
[youtube-dl] / youtube_dl / extractor / common.py
1 import base64
2 import os
3 import re
4 import socket
5 import sys
6 import netrc
7
8 from ..utils import (
9     compat_http_client,
10     compat_urllib_error,
11     compat_urllib_request,
12     compat_str,
13
14     clean_html,
15     compiled_regex_type,
16     ExtractorError,
17     unescapeHTML,
18 )
19
20 class InfoExtractor(object):
21     """Information Extractor class.
22
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
31     The dictionaries must include the following fields:
32
33     id:             Video identifier.
34     url:            Final video URL.
35     title:          Video title, unescaped.
36     ext:            Video filename extension.
37
38     The following fields are optional:
39
40     format:         The video format, defaults to ext (used for --get-format)
41     thumbnails:     A list of dictionaries (with the entries "resolution" and
42                     "url") for the varying thumbnails
43     thumbnail:      Full URL to a video thumbnail image.
44     description:    One-line video description.
45     uploader:       Full name of the video uploader.
46     upload_date:    Video upload date (YYYYMMDD).
47     uploader_id:    Nickname or id of the video uploader.
48     location:       Physical location of the video.
49     player_url:     SWF Player URL (used for rtmpdump).
50     subtitles:      The subtitle file contents as a dictionary in the format
51                     {language: subtitles}.
52     view_count:     How many users have watched the video on the platform.
53     urlhandle:      [internal] The urlHandle to be used to download the file,
54                     like returned by urllib.request.urlopen
55
56     The fields should all be Unicode strings.
57
58     Subclasses of this one should re-define the _real_initialize() and
59     _real_extract() methods and define a _VALID_URL regexp.
60     Probably, they should also be added to the list of extractors.
61
62     _real_extract() must return a *list* of information dictionaries as
63     described above.
64
65     Finally, the _WORKING attribute should be set to False for broken IEs
66     in order to warn the users and skip the tests.
67     """
68
69     _ready = False
70     _downloader = None
71     _WORKING = True
72
73     def __init__(self, downloader=None):
74         """Constructor. Receives an optional downloader."""
75         self._ready = False
76         self.set_downloader(downloader)
77
78     @classmethod
79     def suitable(cls, url):
80         """Receives a URL and returns True if suitable for this IE."""
81
82         # This does not use has/getattr intentionally - we want to know whether
83         # we have cached the regexp for *this* class, whereas getattr would also
84         # match the superclass
85         if '_VALID_URL_RE' not in cls.__dict__:
86             cls._VALID_URL_RE = re.compile(cls._VALID_URL)
87         return cls._VALID_URL_RE.match(url) is not None
88
89     @classmethod
90     def working(cls):
91         """Getter method for _WORKING."""
92         return cls._WORKING
93
94     def initialize(self):
95         """Initializes an instance (authentication, etc)."""
96         if not self._ready:
97             self._real_initialize()
98             self._ready = True
99
100     def extract(self, url):
101         """Extracts URL information and returns it in list of dicts."""
102         self.initialize()
103         return self._real_extract(url)
104
105     def set_downloader(self, downloader):
106         """Sets the downloader for this IE."""
107         self._downloader = downloader
108
109     def _real_initialize(self):
110         """Real initialization process. Redefine in subclasses."""
111         pass
112
113     def _real_extract(self, url):
114         """Real extraction process. Redefine in subclasses."""
115         pass
116
117     @property
118     def IE_NAME(self):
119         return type(self).__name__[:-2]
120
121     def _request_webpage(self, url_or_request, video_id, note=None, errnote=None):
122         """ Returns the response handle """
123         if note is None:
124             self.report_download_webpage(video_id)
125         elif note is not False:
126             self.to_screen(u'%s: %s' % (video_id, note))
127         try:
128             return compat_urllib_request.urlopen(url_or_request)
129         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
130             if errnote is None:
131                 errnote = u'Unable to download webpage'
132             raise ExtractorError(u'%s: %s' % (errnote, compat_str(err)), sys.exc_info()[2])
133
134     def _download_webpage_handle(self, url_or_request, video_id, note=None, errnote=None):
135         """ Returns a tuple (page content as string, URL handle) """
136
137         # Strip hashes from the URL (#1038)
138         if isinstance(url_or_request, (compat_str, str)):
139             url_or_request = url_or_request.partition('#')[0]
140
141         urlh = self._request_webpage(url_or_request, video_id, note, errnote)
142         content_type = urlh.headers.get('Content-Type', '')
143         m = re.match(r'[a-zA-Z0-9_.-]+/[a-zA-Z0-9_.-]+\s*;\s*charset=(.+)', content_type)
144         if m:
145             encoding = m.group(1)
146         else:
147             encoding = 'utf-8'
148         webpage_bytes = urlh.read()
149         if self._downloader.params.get('dump_intermediate_pages', False):
150             try:
151                 url = url_or_request.get_full_url()
152             except AttributeError:
153                 url = url_or_request
154             self.to_screen(u'Dumping request to ' + url)
155             dump = base64.b64encode(webpage_bytes).decode('ascii')
156             self._downloader.to_screen(dump)
157         content = webpage_bytes.decode(encoding, 'replace')
158         return (content, urlh)
159
160     def _download_webpage(self, url_or_request, video_id, note=None, errnote=None):
161         """ Returns the data of the page as a string """
162         return self._download_webpage_handle(url_or_request, video_id, note, errnote)[0]
163
164     def to_screen(self, msg):
165         """Print msg to screen, prefixing it with '[ie_name]'"""
166         self._downloader.to_screen(u'[%s] %s' % (self.IE_NAME, msg))
167
168     def report_extraction(self, id_or_name):
169         """Report information extraction."""
170         self.to_screen(u'%s: Extracting information' % id_or_name)
171
172     def report_download_webpage(self, video_id):
173         """Report webpage download."""
174         self.to_screen(u'%s: Downloading webpage' % video_id)
175
176     def report_age_confirmation(self):
177         """Report attempt to confirm age."""
178         self.to_screen(u'Confirming age')
179
180     def report_login(self):
181         """Report attempt to log in."""
182         self.to_screen(u'Logging in')
183
184     #Methods for following #608
185     def url_result(self, url, ie=None):
186         """Returns a url that points to a page that should be processed"""
187         #TODO: ie should be the class used for getting the info
188         video_info = {'_type': 'url',
189                       'url': url,
190                       'ie_key': ie}
191         return video_info
192     def playlist_result(self, entries, playlist_id=None, playlist_title=None):
193         """Returns a playlist"""
194         video_info = {'_type': 'playlist',
195                       'entries': entries}
196         if playlist_id:
197             video_info['id'] = playlist_id
198         if playlist_title:
199             video_info['title'] = playlist_title
200         return video_info
201
202     def _search_regex(self, pattern, string, name, default=None, fatal=True, flags=0):
203         """
204         Perform a regex search on the given string, using a single or a list of
205         patterns returning the first matching group.
206         In case of failure return a default value or raise a WARNING or a
207         ExtractorError, depending on fatal, specifying the field name.
208         """
209         if isinstance(pattern, (str, compat_str, compiled_regex_type)):
210             mobj = re.search(pattern, string, flags)
211         else:
212             for p in pattern:
213                 mobj = re.search(p, string, flags)
214                 if mobj: break
215
216         if sys.stderr.isatty() and os.name != 'nt':
217             _name = u'\033[0;34m%s\033[0m' % name
218         else:
219             _name = name
220
221         if mobj:
222             # return the first matching group
223             return next(g for g in mobj.groups() if g is not None)
224         elif default is not None:
225             return default
226         elif fatal:
227             raise ExtractorError(u'Unable to extract %s' % _name)
228         else:
229             self._downloader.report_warning(u'unable to extract %s; '
230                 u'please report this issue on http://yt-dl.org/bug' % _name)
231             return None
232
233     def _html_search_regex(self, pattern, string, name, default=None, fatal=True, flags=0):
234         """
235         Like _search_regex, but strips HTML tags and unescapes entities.
236         """
237         res = self._search_regex(pattern, string, name, default, fatal, flags)
238         if res:
239             return clean_html(res).strip()
240         else:
241             return res
242
243     def _get_login_info(self):
244         """
245         Get the the login info as (username, password)
246         It will look in the netrc file using the _NETRC_MACHINE value
247         If there's no info available, return (None, None)
248         """
249         if self._downloader is None:
250             return (None, None)
251
252         username = None
253         password = None
254         downloader_params = self._downloader.params
255
256         # Attempt to use provided username and password or .netrc data
257         if downloader_params.get('username', None) is not None:
258             username = downloader_params['username']
259             password = downloader_params['password']
260         elif downloader_params.get('usenetrc', False):
261             try:
262                 info = netrc.netrc().authenticators(self._NETRC_MACHINE)
263                 if info is not None:
264                     username = info[0]
265                     password = info[2]
266                 else:
267                     raise netrc.NetrcParseError('No authenticators for %s' % self._NETRC_MACHINE)
268             except (IOError, netrc.NetrcParseError) as err:
269                 self._downloader.report_warning(u'parsing .netrc: %s' % compat_str(err))
270         
271         return (username, password)
272
273     # Helper functions for extracting OpenGraph info
274     @staticmethod
275     def _og_regex(prop):
276         return r'<meta.+?property=[\'"]og:%s[\'"].+?content=(?:"(.+?)"|\'(.+?)\')' % re.escape(prop)
277
278     def _og_search_property(self, prop, html, name=None, **kargs):
279         if name is None:
280             name = 'OpenGraph %s' % prop
281         escaped = self._search_regex(self._og_regex(prop), html, name, flags=re.DOTALL, **kargs)
282         return unescapeHTML(escaped)
283
284     def _og_search_thumbnail(self, html, **kargs):
285         return self._og_search_property('image', html, u'thumbnail url', fatal=False, **kargs)
286
287     def _og_search_description(self, html, **kargs):
288         return self._og_search_property('description', html, fatal=False, **kargs)
289
290     def _og_search_title(self, html, **kargs):
291         return self._og_search_property('title', html, **kargs)
292
293     def _og_search_video_url(self, html, name='video url', **kargs):
294         return self._html_search_regex([self._og_regex('video:secure_url'),
295                                         self._og_regex('video')],
296                                        html, name, **kargs)
297
298 class SearchInfoExtractor(InfoExtractor):
299     """
300     Base class for paged search queries extractors.
301     They accept urls in the format _SEARCH_KEY(|all|[0-9]):{query}
302     Instances should define _SEARCH_KEY and _MAX_RESULTS.
303     """
304
305     @classmethod
306     def _make_valid_url(cls):
307         return r'%s(?P<prefix>|[1-9][0-9]*|all):(?P<query>[\s\S]+)' % cls._SEARCH_KEY
308
309     @classmethod
310     def suitable(cls, url):
311         return re.match(cls._make_valid_url(), url) is not None
312
313     def _real_extract(self, query):
314         mobj = re.match(self._make_valid_url(), query)
315         if mobj is None:
316             raise ExtractorError(u'Invalid search query "%s"' % query)
317
318         prefix = mobj.group('prefix')
319         query = mobj.group('query')
320         if prefix == '':
321             return self._get_n_results(query, 1)
322         elif prefix == 'all':
323             return self._get_n_results(query, self._MAX_RESULTS)
324         else:
325             n = int(prefix)
326             if n <= 0:
327                 raise ExtractorError(u'invalid download number %s for query "%s"' % (n, query))
328             elif n > self._MAX_RESULTS:
329                 self._downloader.report_warning(u'%s returns max %i results (you requested %i)' % (self._SEARCH_KEY, self._MAX_RESULTS, n))
330                 n = self._MAX_RESULTS
331             return self._get_n_results(query, n)
332
333     def _get_n_results(self, query, n):
334         """Get a specified number of results for a query"""
335         raise NotImplementedError("This method must be implemented by sublclasses")
336
337     @property
338     def SEARCH_KEY(self):
339         return self._SEARCH_KEY