[youtube] remove dead code
[youtube-dl] / youtube_dl / extractor / youtube.py
1 # coding: utf-8
2 from __future__ import absolute_import
3
4 import json
5 import netrc
6 import re
7 import socket
8
9 from .common import InfoExtractor
10 from ..utils import (
11     compat_http_client,
12     compat_parse_qs,
13     compat_urllib_error,
14     compat_urllib_parse,
15     compat_urllib_request,
16     compat_str,
17
18     clean_html,
19     get_element_by_id,
20     ExtractorError,
21     unescapeHTML,
22     unified_strdate,
23 )
24
25
26 class YoutubeIE(InfoExtractor):
27     """Information extractor for youtube.com."""
28
29     _VALID_URL = r"""^
30                      (
31                          (?:https?://)?                                       # http(s):// (optional)
32                          (?:youtu\.be/|(?:\w+\.)?youtube(?:-nocookie)?\.com/|
33                             tube\.majestyc\.net/)                             # the various hostnames, with wildcard subdomains
34                          (?:.*?\#/)?                                          # handle anchor (#/) redirect urls
35                          (?:                                                  # the various things that can precede the ID:
36                              (?:(?:v|embed|e)/)                               # v/ or embed/ or e/
37                              |(?:                                             # or the v= param in all its forms
38                                  (?:watch(?:_popup)?(?:\.php)?)?              # preceding watch(_popup|.php) or nothing (like /?v=xxxx)
39                                  (?:\?|\#!?)                                  # the params delimiter ? or # or #!
40                                  (?:.*?&)?                                    # any other preceding param (like /?s=tuff&v=xxxx)
41                                  v=
42                              )
43                          )?                                                   # optional -> youtube.com/xxxx is OK
44                      )?                                                       # all until now is optional -> you can pass the naked ID
45                      ([0-9A-Za-z_-]+)                                         # here is it! the YouTube video ID
46                      (?(1).+)?                                                # if we found the ID, everything can follow
47                      $"""
48     _LANG_URL = r'https://www.youtube.com/?hl=en&persist_hl=1&gl=US&persist_gl=1&opt_out_ackd=1'
49     _LOGIN_URL = 'https://accounts.google.com/ServiceLogin'
50     _AGE_URL = 'http://www.youtube.com/verify_age?next_url=/&gl=US&hl=en'
51     _NEXT_URL_RE = r'[\?&]next_url=([^&]+)'
52     _NETRC_MACHINE = 'youtube'
53     # Listed in order of quality
54     _available_formats = ['38', '37', '46', '22', '45', '35', '44', '34', '18', '43', '6', '5', '17', '13']
55     _available_formats_prefer_free = ['38', '46', '37', '45', '22', '44', '35', '43', '34', '18', '6', '5', '17', '13']
56     _video_extensions = {
57         '13': '3gp',
58         '17': 'mp4',
59         '18': 'mp4',
60         '22': 'mp4',
61         '37': 'mp4',
62         '38': 'video', # You actually don't know if this will be MOV, AVI or whatever
63         '43': 'webm',
64         '44': 'webm',
65         '45': 'webm',
66         '46': 'webm',
67     }
68     _video_dimensions = {
69         '5': '240x400',
70         '6': '???',
71         '13': '???',
72         '17': '144x176',
73         '18': '360x640',
74         '22': '720x1280',
75         '34': '360x640',
76         '35': '480x854',
77         '37': '1080x1920',
78         '38': '3072x4096',
79         '43': '360x640',
80         '44': '480x854',
81         '45': '720x1280',
82         '46': '1080x1920',
83     }
84     IE_NAME = u'youtube'
85
86     @classmethod
87     def suitable(cls, url):
88         """Receives a URL and returns True if suitable for this IE."""
89         if YoutubePlaylistIE.suitable(url): return False
90         return re.match(cls._VALID_URL, url, re.VERBOSE) is not None
91
92     def report_lang(self):
93         """Report attempt to set language."""
94         self.to_screen(u'Setting language')
95
96     def report_login(self):
97         """Report attempt to log in."""
98         self.to_screen(u'Logging in')
99
100     def report_video_webpage_download(self, video_id):
101         """Report attempt to download video webpage."""
102         self.to_screen(u'%s: Downloading video webpage' % video_id)
103
104     def report_video_info_webpage_download(self, video_id):
105         """Report attempt to download video info webpage."""
106         self.to_screen(u'%s: Downloading video info webpage' % video_id)
107
108     def report_video_subtitles_download(self, video_id):
109         """Report attempt to download video info webpage."""
110         self.to_screen(u'%s: Checking available subtitles' % video_id)
111
112     def report_video_subtitles_request(self, video_id, sub_lang, format):
113         """Report attempt to download video info webpage."""
114         self.to_screen(u'%s: Downloading video subtitles for %s.%s' % (video_id, sub_lang, format))
115
116     def report_video_subtitles_available(self, video_id, sub_lang_list):
117         """Report available subtitles."""
118         sub_lang = ",".join(list(sub_lang_list.keys()))
119         self.to_screen(u'%s: Available subtitles for video: %s' % (video_id, sub_lang))
120
121     def report_information_extraction(self, video_id):
122         """Report attempt to extract video information."""
123         self.to_screen(u'%s: Extracting video information' % video_id)
124
125     def report_unavailable_format(self, video_id, format):
126         """Report extracted video URL."""
127         self.to_screen(u'%s: Format %s not available' % (video_id, format))
128
129     def report_rtmp_download(self):
130         """Indicate the download will use the RTMP protocol."""
131         self.to_screen(u'RTMP download detected')
132
133     @staticmethod
134     def _decrypt_signature(s):
135         """Decrypt the key the two subkeys must have a length of 43"""
136         (a,b) = s.split('.')
137         if len(a) != 43 or len(b) != 43:
138             raise ExtractorError(u'Unable to decrypt signature, subkeys lengths not valid')
139         b = ''.join([b[:8],a[0],b[9:18],b[-4],b[19:39], b[18]])[0:40]
140         a = a[-40:]
141         s_dec = '.'.join((a,b))[::-1]
142         return s_dec
143
144     def _get_available_subtitles(self, video_id):
145         self.report_video_subtitles_download(video_id)
146         request = compat_urllib_request.Request('http://video.google.com/timedtext?hl=en&type=list&v=%s' % video_id)
147         try:
148             sub_list = compat_urllib_request.urlopen(request).read().decode('utf-8')
149         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
150             return (u'unable to download video subtitles: %s' % compat_str(err), None)
151         sub_lang_list = re.findall(r'name="([^"]*)"[^>]+lang_code="([\w\-]+)"', sub_list)
152         sub_lang_list = dict((l[1], l[0]) for l in sub_lang_list)
153         if not sub_lang_list:
154             return (u'video doesn\'t have subtitles', None)
155         return sub_lang_list
156
157     def _list_available_subtitles(self, video_id):
158         sub_lang_list = self._get_available_subtitles(video_id)
159         self.report_video_subtitles_available(video_id, sub_lang_list)
160
161     def _request_subtitle(self, sub_lang, sub_name, video_id, format):
162         """
163         Return tuple:
164         (error_message, sub_lang, sub)
165         """
166         self.report_video_subtitles_request(video_id, sub_lang, format)
167         params = compat_urllib_parse.urlencode({
168             'lang': sub_lang,
169             'name': sub_name,
170             'v': video_id,
171             'fmt': format,
172         })
173         url = 'http://www.youtube.com/api/timedtext?' + params
174         try:
175             sub = compat_urllib_request.urlopen(url).read().decode('utf-8')
176         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
177             return (u'unable to download video subtitles: %s' % compat_str(err), None, None)
178         if not sub:
179             return (u'Did not fetch video subtitles', None, None)
180         return (None, sub_lang, sub)
181
182     def _request_automatic_caption(self, video_id, webpage):
183         """We need the webpage for getting the captions url, pass it as an
184            argument to speed up the process."""
185         sub_lang = self._downloader.params.get('subtitleslang') or 'en'
186         sub_format = self._downloader.params.get('subtitlesformat')
187         self.to_screen(u'%s: Looking for automatic captions' % video_id)
188         mobj = re.search(r';ytplayer.config = ({.*?});', webpage)
189         err_msg = u'Couldn\'t find automatic captions for "%s"' % sub_lang
190         if mobj is None:
191             return [(err_msg, None, None)]
192         player_config = json.loads(mobj.group(1))
193         try:
194             args = player_config[u'args']
195             caption_url = args[u'ttsurl']
196             timestamp = args[u'timestamp']
197             params = compat_urllib_parse.urlencode({
198                 'lang': 'en',
199                 'tlang': sub_lang,
200                 'fmt': sub_format,
201                 'ts': timestamp,
202                 'kind': 'asr',
203             })
204             subtitles_url = caption_url + '&' + params
205             sub = self._download_webpage(subtitles_url, video_id, u'Downloading automatic captions')
206             return [(None, sub_lang, sub)]
207         except KeyError:
208             return [(err_msg, None, None)]
209
210     def _extract_subtitle(self, video_id):
211         """
212         Return a list with a tuple:
213         [(error_message, sub_lang, sub)]
214         """
215         sub_lang_list = self._get_available_subtitles(video_id)
216         sub_format = self._downloader.params.get('subtitlesformat')
217         if  isinstance(sub_lang_list,tuple): #There was some error, it didn't get the available subtitles
218             return [(sub_lang_list[0], None, None)]
219         if self._downloader.params.get('subtitleslang', False):
220             sub_lang = self._downloader.params.get('subtitleslang')
221         elif 'en' in sub_lang_list:
222             sub_lang = 'en'
223         else:
224             sub_lang = list(sub_lang_list.keys())[0]
225         if not sub_lang in sub_lang_list:
226             return [(u'no closed captions found in the specified language "%s"' % sub_lang, None, None)]
227
228         subtitle = self._request_subtitle(sub_lang, sub_lang_list[sub_lang].encode('utf-8'), video_id, sub_format)
229         return [subtitle]
230
231     def _extract_all_subtitles(self, video_id):
232         sub_lang_list = self._get_available_subtitles(video_id)
233         sub_format = self._downloader.params.get('subtitlesformat')
234         if  isinstance(sub_lang_list,tuple): #There was some error, it didn't get the available subtitles
235             return [(sub_lang_list[0], None, None)]
236         subtitles = []
237         for sub_lang in sub_lang_list:
238             subtitle = self._request_subtitle(sub_lang, sub_lang_list[sub_lang].encode('utf-8'), video_id, sub_format)
239             subtitles.append(subtitle)
240         return subtitles
241
242     def _print_formats(self, formats):
243         print('Available formats:')
244         for x in formats:
245             print('%s\t:\t%s\t[%s]' %(x, self._video_extensions.get(x, 'flv'), self._video_dimensions.get(x, '???')))
246
247     def _real_initialize(self):
248         if self._downloader is None:
249             return
250
251         username = None
252         password = None
253         downloader_params = self._downloader.params
254
255         # Attempt to use provided username and password or .netrc data
256         if downloader_params.get('username', None) is not None:
257             username = downloader_params['username']
258             password = downloader_params['password']
259         elif downloader_params.get('usenetrc', False):
260             try:
261                 info = netrc.netrc().authenticators(self._NETRC_MACHINE)
262                 if info is not None:
263                     username = info[0]
264                     password = info[2]
265                 else:
266                     raise netrc.NetrcParseError('No authenticators for %s' % self._NETRC_MACHINE)
267             except (IOError, netrc.NetrcParseError) as err:
268                 self._downloader.report_warning(u'parsing .netrc: %s' % compat_str(err))
269                 return
270
271         # Set language
272         request = compat_urllib_request.Request(self._LANG_URL)
273         try:
274             self.report_lang()
275             compat_urllib_request.urlopen(request).read()
276         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
277             self._downloader.report_warning(u'unable to set language: %s' % compat_str(err))
278             return
279
280         # No authentication to be performed
281         if username is None:
282             return
283
284         request = compat_urllib_request.Request(self._LOGIN_URL)
285         try:
286             login_page = compat_urllib_request.urlopen(request).read().decode('utf-8')
287         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
288             self._downloader.report_warning(u'unable to fetch login page: %s' % compat_str(err))
289             return
290
291         galx = None
292         dsh = None
293         match = re.search(re.compile(r'<input.+?name="GALX".+?value="(.+?)"', re.DOTALL), login_page)
294         if match:
295           galx = match.group(1)
296
297         match = re.search(re.compile(r'<input.+?name="dsh".+?value="(.+?)"', re.DOTALL), login_page)
298         if match:
299           dsh = match.group(1)
300
301         # Log in
302         login_form_strs = {
303                 u'continue': u'https://www.youtube.com/signin?action_handle_signin=true&feature=sign_in_button&hl=en_US&nomobiletemp=1',
304                 u'Email': username,
305                 u'GALX': galx,
306                 u'Passwd': password,
307                 u'PersistentCookie': u'yes',
308                 u'_utf8': u'霱',
309                 u'bgresponse': u'js_disabled',
310                 u'checkConnection': u'',
311                 u'checkedDomains': u'youtube',
312                 u'dnConn': u'',
313                 u'dsh': dsh,
314                 u'pstMsg': u'0',
315                 u'rmShown': u'1',
316                 u'secTok': u'',
317                 u'signIn': u'Sign in',
318                 u'timeStmp': u'',
319                 u'service': u'youtube',
320                 u'uilel': u'3',
321                 u'hl': u'en_US',
322         }
323         # Convert to UTF-8 *before* urlencode because Python 2.x's urlencode
324         # chokes on unicode
325         login_form = dict((k.encode('utf-8'), v.encode('utf-8')) for k,v in login_form_strs.items())
326         login_data = compat_urllib_parse.urlencode(login_form).encode('ascii')
327         request = compat_urllib_request.Request(self._LOGIN_URL, login_data)
328         try:
329             self.report_login()
330             login_results = compat_urllib_request.urlopen(request).read().decode('utf-8')
331             if re.search(r'(?i)<form[^>]* id="gaia_loginform"', login_results) is not None:
332                 self._downloader.report_warning(u'unable to log in: bad username or password')
333                 return
334         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
335             self._downloader.report_warning(u'unable to log in: %s' % compat_str(err))
336             return
337
338         # Confirm age
339         age_form = {
340                 'next_url':     '/',
341                 'action_confirm':   'Confirm',
342                 }
343         request = compat_urllib_request.Request(self._AGE_URL, compat_urllib_parse.urlencode(age_form))
344         try:
345             self.report_age_confirmation()
346             compat_urllib_request.urlopen(request).read().decode('utf-8')
347         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
348             raise ExtractorError(u'Unable to confirm age: %s' % compat_str(err))
349
350     def _extract_id(self, url):
351         mobj = re.match(self._VALID_URL, url, re.VERBOSE)
352         if mobj is None:
353             raise ExtractorError(u'Invalid URL: %s' % url)
354         video_id = mobj.group(2)
355         return video_id
356
357     def _real_extract(self, url):
358         # Extract original video URL from URL with redirection, like age verification, using next_url parameter
359         mobj = re.search(self._NEXT_URL_RE, url)
360         if mobj:
361             url = 'https://www.youtube.com/' + compat_urllib_parse.unquote(mobj.group(1)).lstrip('/')
362         video_id = self._extract_id(url)
363
364         # Get video webpage
365         self.report_video_webpage_download(video_id)
366         url = 'https://www.youtube.com/watch?v=%s&gl=US&hl=en&has_verified=1' % video_id
367         request = compat_urllib_request.Request(url)
368         try:
369             video_webpage_bytes = compat_urllib_request.urlopen(request).read()
370         except (compat_urllib_error.URLError, compat_http_client.HTTPException, socket.error) as err:
371             raise ExtractorError(u'Unable to download video webpage: %s' % compat_str(err))
372
373         video_webpage = video_webpage_bytes.decode('utf-8', 'ignore')
374
375         # Attempt to extract SWF player URL
376         mobj = re.search(r'swfConfig.*?"(http:\\/\\/.*?watch.*?-.*?\.swf)"', video_webpage)
377         if mobj is not None:
378             player_url = re.sub(r'\\(.)', r'\1', mobj.group(1))
379         else:
380             player_url = None
381
382         # Get video info
383         self.report_video_info_webpage_download(video_id)
384         for el_type in ['&el=embedded', '&el=detailpage', '&el=vevo', '']:
385             video_info_url = ('https://www.youtube.com/get_video_info?&video_id=%s%s&ps=default&eurl=&gl=US&hl=en'
386                     % (video_id, el_type))
387             video_info_webpage = self._download_webpage(video_info_url, video_id,
388                                     note=False,
389                                     errnote='unable to download video info webpage')
390             video_info = compat_parse_qs(video_info_webpage)
391             if 'token' in video_info:
392                 break
393         if 'token' not in video_info:
394             if 'reason' in video_info:
395                 raise ExtractorError(u'YouTube said: %s' % video_info['reason'][0])
396             else:
397                 raise ExtractorError(u'"token" parameter not in video info for unknown reason')
398
399         # Check for "rental" videos
400         if 'ypc_video_rental_bar_text' in video_info and 'author' not in video_info:
401             raise ExtractorError(u'"rental" videos not supported')
402
403         # Start extracting information
404         self.report_information_extraction(video_id)
405
406         # uploader
407         if 'author' not in video_info:
408             raise ExtractorError(u'Unable to extract uploader name')
409         video_uploader = compat_urllib_parse.unquote_plus(video_info['author'][0])
410
411         # uploader_id
412         video_uploader_id = None
413         mobj = re.search(r'<link itemprop="url" href="http://www.youtube.com/(?:user|channel)/([^"]+)">', video_webpage)
414         if mobj is not None:
415             video_uploader_id = mobj.group(1)
416         else:
417             self._downloader.report_warning(u'unable to extract uploader nickname')
418
419         # title
420         if 'title' not in video_info:
421             raise ExtractorError(u'Unable to extract video title')
422         video_title = compat_urllib_parse.unquote_plus(video_info['title'][0])
423
424         # thumbnail image
425         if 'thumbnail_url' not in video_info:
426             self._downloader.report_warning(u'unable to extract video thumbnail')
427             video_thumbnail = ''
428         else:   # don't panic if we can't find it
429             video_thumbnail = compat_urllib_parse.unquote_plus(video_info['thumbnail_url'][0])
430
431         # upload date
432         upload_date = None
433         mobj = re.search(r'id="eow-date.*?>(.*?)</span>', video_webpage, re.DOTALL)
434         if mobj is not None:
435             upload_date = ' '.join(re.sub(r'[/,-]', r' ', mobj.group(1)).split())
436             upload_date = unified_strdate(upload_date)
437
438         # description
439         video_description = get_element_by_id("eow-description", video_webpage)
440         if video_description:
441             video_description = clean_html(video_description)
442         else:
443             fd_mobj = re.search(r'<meta name="description" content="([^"]+)"', video_webpage)
444             if fd_mobj:
445                 video_description = unescapeHTML(fd_mobj.group(1))
446             else:
447                 video_description = u''
448
449         # subtitles
450         video_subtitles = None
451
452         if self._downloader.params.get('writesubtitles', False):
453             video_subtitles = self._extract_subtitle(video_id)
454             if video_subtitles:
455                 (sub_error, sub_lang, sub) = video_subtitles[0]
456                 if sub_error:
457                     # We try with the automatic captions
458                     video_subtitles = self._request_automatic_caption(video_id, video_webpage)
459                     (sub_error_auto, sub_lang, sub) = video_subtitles[0]
460                     if sub is not None:
461                         pass
462                     else:
463                         # We report the original error
464                         self._downloader.report_warning(sub_error)
465
466         if self._downloader.params.get('allsubtitles', False):
467             video_subtitles = self._extract_all_subtitles(video_id)
468             for video_subtitle in video_subtitles:
469                 (sub_error, sub_lang, sub) = video_subtitle
470                 if sub_error:
471                     self._downloader.report_warning(sub_error)
472
473         if self._downloader.params.get('listsubtitles', False):
474             self._list_available_subtitles(video_id)
475             return
476
477         if 'length_seconds' not in video_info:
478             self._downloader.report_warning(u'unable to extract video duration')
479             video_duration = ''
480         else:
481             video_duration = compat_urllib_parse.unquote_plus(video_info['length_seconds'][0])
482
483         # Decide which formats to download
484         req_format = self._downloader.params.get('format', None)
485
486         try:
487             mobj = re.search(r';ytplayer.config = ({.*?});', video_webpage)
488             info = json.loads(mobj.group(1))
489             args = info['args']
490             if args.get('ptk','') == 'vevo' or 'dashmpd':
491                 # Vevo videos with encrypted signatures
492                 self.to_screen(u'%s: Vevo video detected.' % video_id)
493                 video_info['url_encoded_fmt_stream_map'] = [args['url_encoded_fmt_stream_map']]
494         except ValueError:
495             pass
496
497         if 'conn' in video_info and video_info['conn'][0].startswith('rtmp'):
498             self.report_rtmp_download()
499             video_url_list = [(None, video_info['conn'][0])]
500         elif 'url_encoded_fmt_stream_map' in video_info and len(video_info['url_encoded_fmt_stream_map']) >= 1:
501             url_map = {}
502             for url_data_str in video_info['url_encoded_fmt_stream_map'][0].split(','):
503                 url_data = compat_parse_qs(url_data_str)
504                 if 'itag' in url_data and 'url' in url_data:
505                     url = url_data['url'][0]
506                     if 'sig' in url_data:
507                         url += '&signature=' + url_data['sig'][0]
508                     elif 's' in url_data:
509                         signature = self._decrypt_signature(url_data['s'][0])
510                         url += '&signature=' + signature
511                     if 'ratebypass' not in url:
512                         url += '&ratebypass=yes'
513                     url_map[url_data['itag'][0]] = url
514
515             format_limit = self._downloader.params.get('format_limit', None)
516             available_formats = self._available_formats_prefer_free if self._downloader.params.get('prefer_free_formats', False) else self._available_formats
517             if format_limit is not None and format_limit in available_formats:
518                 format_list = available_formats[available_formats.index(format_limit):]
519             else:
520                 format_list = available_formats
521             existing_formats = [x for x in format_list if x in url_map]
522             if len(existing_formats) == 0:
523                 raise ExtractorError(u'no known formats available for video')
524             if self._downloader.params.get('listformats', None):
525                 self._print_formats(existing_formats)
526                 return
527             if req_format is None or req_format == 'best':
528                 video_url_list = [(existing_formats[0], url_map[existing_formats[0]])] # Best quality
529             elif req_format == 'worst':
530                 video_url_list = [(existing_formats[len(existing_formats)-1], url_map[existing_formats[len(existing_formats)-1]])] # worst quality
531             elif req_format in ('-1', 'all'):
532                 video_url_list = [(f, url_map[f]) for f in existing_formats] # All formats
533             else:
534                 # Specific formats. We pick the first in a slash-delimeted sequence.
535                 # For example, if '1/2/3/4' is requested and '2' and '4' are available, we pick '2'.
536                 req_formats = req_format.split('/')
537                 video_url_list = None
538                 for rf in req_formats:
539                     if rf in url_map:
540                         video_url_list = [(rf, url_map[rf])]
541                         break
542                 if video_url_list is None:
543                     raise ExtractorError(u'requested format not available')
544         else:
545             raise ExtractorError(u'no conn or url_encoded_fmt_stream_map information found in video info')
546
547         results = []
548         for format_param, video_real_url in video_url_list:
549             # Extension
550             video_extension = self._video_extensions.get(format_param, 'flv')
551
552             video_format = '{0} - {1}'.format(format_param if format_param else video_extension,
553                                               self._video_dimensions.get(format_param, '???'))
554
555             results.append({
556                 'id':       video_id,
557                 'url':      video_real_url,
558                 'uploader': video_uploader,
559                 'uploader_id': video_uploader_id,
560                 'upload_date':  upload_date,
561                 'title':    video_title,
562                 'ext':      video_extension,
563                 'format':   video_format,
564                 'thumbnail':    video_thumbnail,
565                 'description':  video_description,
566                 'player_url':   player_url,
567                 'subtitles':    video_subtitles,
568                 'duration':     video_duration
569             })
570         return results
571
572 class YoutubePlaylistIE(InfoExtractor):
573     """Information Extractor for YouTube playlists."""
574
575     _VALID_URL = r"""(?:
576                         (?:https?://)?
577                         (?:\w+\.)?
578                         youtube\.com/
579                         (?:
580                            (?:course|view_play_list|my_playlists|artist|playlist|watch)
581                            \? (?:.*?&)*? (?:p|a|list)=
582                         |  p/
583                         )
584                         ((?:PL|EC|UU)?[0-9A-Za-z-_]{10,})
585                         .*
586                      |
587                         ((?:PL|EC|UU)[0-9A-Za-z-_]{10,})
588                      )"""
589     _TEMPLATE_URL = 'https://gdata.youtube.com/feeds/api/playlists/%s?max-results=%i&start-index=%i&v=2&alt=json&safeSearch=none'
590     _MAX_RESULTS = 50
591     IE_NAME = u'youtube:playlist'
592
593     @classmethod
594     def suitable(cls, url):
595         """Receives a URL and returns True if suitable for this IE."""
596         return re.match(cls._VALID_URL, url, re.VERBOSE) is not None
597
598     def _real_extract(self, url):
599         # Extract playlist id
600         mobj = re.match(self._VALID_URL, url, re.VERBOSE)
601         if mobj is None:
602             raise ExtractorError(u'Invalid URL: %s' % url)
603
604         # Download playlist videos from API
605         playlist_id = mobj.group(1) or mobj.group(2)
606         page_num = 1
607         videos = []
608
609         while True:
610             url = self._TEMPLATE_URL % (playlist_id, self._MAX_RESULTS, self._MAX_RESULTS * (page_num - 1) + 1)
611             page = self._download_webpage(url, playlist_id, u'Downloading page #%s' % page_num)
612
613             try:
614                 response = json.loads(page)
615             except ValueError as err:
616                 raise ExtractorError(u'Invalid JSON in API response: ' + compat_str(err))
617
618             if 'feed' not in response:
619                 raise ExtractorError(u'Got a malformed response from YouTube API')
620             playlist_title = response['feed']['title']['$t']
621             if 'entry' not in response['feed']:
622                 # Number of videos is a multiple of self._MAX_RESULTS
623                 break
624
625             for entry in response['feed']['entry']:
626                 index = entry['yt$position']['$t']
627                 if 'media$group' in entry and 'media$player' in entry['media$group']:
628                     videos.append((index, entry['media$group']['media$player']['url']))
629
630             if len(response['feed']['entry']) < self._MAX_RESULTS:
631                 break
632             page_num += 1
633
634         videos = [v[1] for v in sorted(videos)]
635
636         url_results = [self.url_result(url, 'Youtube') for url in videos]
637         return [self.playlist_result(url_results, playlist_id, playlist_title)]
638
639
640 class YoutubeChannelIE(InfoExtractor):
641     """Information Extractor for YouTube channels."""
642
643     _VALID_URL = r"^(?:https?://)?(?:youtu\.be|(?:\w+\.)?youtube(?:-nocookie)?\.com)/channel/([0-9A-Za-z_-]+)"
644     _TEMPLATE_URL = 'http://www.youtube.com/channel/%s/videos?sort=da&flow=list&view=0&page=%s&gl=US&hl=en'
645     _MORE_PAGES_INDICATOR = 'yt-uix-load-more'
646     _MORE_PAGES_URL = 'http://www.youtube.com/channel_ajax?action_load_more_videos=1&flow=list&paging=%s&view=0&sort=da&channel_id=%s'
647     IE_NAME = u'youtube:channel'
648
649     def extract_videos_from_page(self, page):
650         ids_in_page = []
651         for mobj in re.finditer(r'href="/watch\?v=([0-9A-Za-z_-]+)&?', page):
652             if mobj.group(1) not in ids_in_page:
653                 ids_in_page.append(mobj.group(1))
654         return ids_in_page
655
656     def _real_extract(self, url):
657         # Extract channel id
658         mobj = re.match(self._VALID_URL, url)
659         if mobj is None:
660             raise ExtractorError(u'Invalid URL: %s' % url)
661
662         # Download channel page
663         channel_id = mobj.group(1)
664         video_ids = []
665         pagenum = 1
666
667         url = self._TEMPLATE_URL % (channel_id, pagenum)
668         page = self._download_webpage(url, channel_id,
669                                       u'Downloading page #%s' % pagenum)
670
671         # Extract video identifiers
672         ids_in_page = self.extract_videos_from_page(page)
673         video_ids.extend(ids_in_page)
674
675         # Download any subsequent channel pages using the json-based channel_ajax query
676         if self._MORE_PAGES_INDICATOR in page:
677             while True:
678                 pagenum = pagenum + 1
679
680                 url = self._MORE_PAGES_URL % (pagenum, channel_id)
681                 page = self._download_webpage(url, channel_id,
682                                               u'Downloading page #%s' % pagenum)
683
684                 page = json.loads(page)
685
686                 ids_in_page = self.extract_videos_from_page(page['content_html'])
687                 video_ids.extend(ids_in_page)
688
689                 if self._MORE_PAGES_INDICATOR  not in page['load_more_widget_html']:
690                     break
691
692         self._downloader.to_screen(u'[youtube] Channel %s: Found %i videos' % (channel_id, len(video_ids)))
693
694         urls = ['http://www.youtube.com/watch?v=%s' % id for id in video_ids]
695         url_entries = [self.url_result(url, 'Youtube') for url in urls]
696         return [self.playlist_result(url_entries, channel_id)]
697
698
699 class YoutubeUserIE(InfoExtractor):
700     """Information Extractor for YouTube users."""
701
702     _VALID_URL = r'(?:(?:(?:https?://)?(?:\w+\.)?youtube\.com/user/)|ytuser:)([A-Za-z0-9_-]+)'
703     _TEMPLATE_URL = 'http://gdata.youtube.com/feeds/api/users/%s'
704     _GDATA_PAGE_SIZE = 50
705     _GDATA_URL = 'http://gdata.youtube.com/feeds/api/users/%s/uploads?max-results=%d&start-index=%d'
706     _VIDEO_INDICATOR = r'/watch\?v=(.+?)[\<&]'
707     IE_NAME = u'youtube:user'
708
709     def _real_extract(self, url):
710         # Extract username
711         mobj = re.match(self._VALID_URL, url)
712         if mobj is None:
713             raise ExtractorError(u'Invalid URL: %s' % url)
714
715         username = mobj.group(1)
716
717         # Download video ids using YouTube Data API. Result size per
718         # query is limited (currently to 50 videos) so we need to query
719         # page by page until there are no video ids - it means we got
720         # all of them.
721
722         video_ids = []
723         pagenum = 0
724
725         while True:
726             start_index = pagenum * self._GDATA_PAGE_SIZE + 1
727
728             gdata_url = self._GDATA_URL % (username, self._GDATA_PAGE_SIZE, start_index)
729             page = self._download_webpage(gdata_url, username,
730                                           u'Downloading video ids from %d to %d' % (start_index, start_index + self._GDATA_PAGE_SIZE))
731
732             # Extract video identifiers
733             ids_in_page = []
734
735             for mobj in re.finditer(self._VIDEO_INDICATOR, page):
736                 if mobj.group(1) not in ids_in_page:
737                     ids_in_page.append(mobj.group(1))
738
739             video_ids.extend(ids_in_page)
740
741             # A little optimization - if current page is not
742             # "full", ie. does not contain PAGE_SIZE video ids then
743             # we can assume that this page is the last one - there
744             # are no more ids on further pages - no need to query
745             # again.
746
747             if len(ids_in_page) < self._GDATA_PAGE_SIZE:
748                 break
749
750             pagenum += 1
751
752         urls = ['http://www.youtube.com/watch?v=%s' % video_id for video_id in video_ids]
753         url_results = [self.url_result(url, 'Youtube') for url in urls]
754         return [self.playlist_result(url_results, playlist_title = username)]