| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-24 08:41:52 +07:00
										 |  |  | import collections | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  | import json | 
					
						
							| 
									
										
										
										
											2016-08-24 08:41:52 +07:00
										 |  |  | import os | 
					
						
							| 
									
										
										
										
											2015-11-22 00:07:09 +06:00
										 |  |  | import random | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  | from .common import InfoExtractor | 
					
						
							|  |  |  | from ..compat import ( | 
					
						
							|  |  |  |     compat_str, | 
					
						
							|  |  |  |     compat_urlparse, | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | from ..utils import ( | 
					
						
							| 
									
										
										
										
											2016-10-22 21:15:39 +07:00
										 |  |  |     dict_get, | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |     ExtractorError, | 
					
						
							| 
									
										
										
										
											2016-08-24 08:41:52 +07:00
										 |  |  |     float_or_none, | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |     int_or_none, | 
					
						
							|  |  |  |     parse_duration, | 
					
						
							| 
									
										
										
										
											2015-12-06 01:39:28 +06:00
										 |  |  |     qualities, | 
					
						
							| 
									
										
										
										
											2016-08-24 08:41:52 +07:00
										 |  |  |     srt_subtitles_timecode, | 
					
						
							| 
									
										
										
										
											2017-08-17 22:45:40 +07:00
										 |  |  |     try_get, | 
					
						
							| 
									
										
										
										
											2017-02-11 17:00:52 +07:00
										 |  |  |     update_url_query, | 
					
						
							| 
									
										
										
										
											2016-03-26 02:19:24 +06:00
										 |  |  |     urlencode_postdata, | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-21 21:37:29 +06:00
										 |  |  | class PluralsightBaseIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2016-10-21 03:00:03 +07:00
										 |  |  |     _API_BASE = 'https://app.pluralsight.com' | 
					
						
							| 
									
										
										
										
											2015-11-21 21:37:29 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-17 22:45:40 +07:00
										 |  |  |     def _download_course(self, course_id, url, display_id): | 
					
						
							|  |  |  |         try: | 
					
						
							|  |  |  |             return self._download_course_rpc(course_id, url, display_id) | 
					
						
							|  |  |  |         except ExtractorError: | 
					
						
							|  |  |  |             # Old API fallback | 
					
						
							|  |  |  |             return self._download_json( | 
					
						
							|  |  |  |                 'https://app.pluralsight.com/player/user/api/v1/player/payload', | 
					
						
							|  |  |  |                 display_id, data=urlencode_postdata({'courseId': course_id}), | 
					
						
							|  |  |  |                 headers={'Referer': url}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _download_course_rpc(self, course_id, url, display_id): | 
					
						
							|  |  |  |         response = self._download_json( | 
					
						
							|  |  |  |             '%s/player/functions/rpc' % self._API_BASE, display_id, | 
					
						
							|  |  |  |             'Downloading course JSON', | 
					
						
							|  |  |  |             data=json.dumps({ | 
					
						
							|  |  |  |                 'fn': 'bootstrapPlayer', | 
					
						
							|  |  |  |                 'payload': { | 
					
						
							|  |  |  |                     'courseId': course_id, | 
					
						
							|  |  |  |                 }, | 
					
						
							|  |  |  |             }).encode('utf-8'), | 
					
						
							|  |  |  |             headers={ | 
					
						
							|  |  |  |                 'Content-Type': 'application/json;charset=utf-8', | 
					
						
							|  |  |  |                 'Referer': url, | 
					
						
							|  |  |  |             }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         course = try_get(response, lambda x: x['payload']['course'], dict) | 
					
						
							|  |  |  |         if course: | 
					
						
							|  |  |  |             return course | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         raise ExtractorError( | 
					
						
							|  |  |  |             '%s said: %s' % (self.IE_NAME, response['error']['message']), | 
					
						
							|  |  |  |             expected=True) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-21 21:37:29 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  | class PluralsightIE(PluralsightBaseIE): | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |     IE_NAME = 'pluralsight' | 
					
						
							| 
									
										
										
										
											2016-10-16 17:20:32 +07:00
										 |  |  |     _VALID_URL = r'https?://(?:(?:www|app)\.)?pluralsight\.com/(?:training/)?player\?' | 
					
						
							| 
									
										
										
										
											2015-11-21 21:25:48 +06:00
										 |  |  |     _LOGIN_URL = 'https://app.pluralsight.com/id/' | 
					
						
							| 
									
										
										
										
											2015-11-21 21:37:29 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |     _NETRC_MACHINE = 'pluralsight' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-21 08:08:34 +06:00
										 |  |  |     _TESTS = [{ | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |         'url': 'http://www.pluralsight.com/training/player?author=mike-mckeown&name=hosting-sql-server-windows-azure-iaas-m7-mgmt&mode=live&clip=3&course=hosting-sql-server-windows-azure-iaas', | 
					
						
							|  |  |  |         'md5': '4d458cf5cf4c593788672419a8dd4cf8', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'hosting-sql-server-windows-azure-iaas-m7-mgmt-04', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2017-03-22 02:28:04 +07:00
										 |  |  |             'title': 'Demo Monitoring', | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |             'duration': 338, | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         'skip': 'Requires pluralsight account credentials', | 
					
						
							| 
									
										
										
										
											2015-11-21 08:08:34 +06:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'https://app.pluralsight.com/training/player?course=angularjs-get-started&author=scott-allen&name=angularjs-get-started-m1-introduction&clip=0&mode=live', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2015-11-21 08:25:52 +06:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         # available without pluralsight account | 
					
						
							|  |  |  |         'url': 'http://app.pluralsight.com/training/player?author=scott-allen&name=angularjs-get-started-m1-introduction&mode=live&clip=0&course=angularjs-get-started', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2016-10-16 17:20:32 +07:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'https://app.pluralsight.com/player?course=ccna-intro-networking&author=ross-bagurdes&name=ccna-intro-networking-m06&clip=0', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2015-11-21 08:08:34 +06:00
										 |  |  |     }] | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_initialize(self): | 
					
						
							|  |  |  |         self._login() | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _login(self): | 
					
						
							| 
									
										
										
										
											2018-05-26 16:12:44 +01:00
										 |  |  |         username, password = self._get_login_info() | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |         if username is None: | 
					
						
							| 
									
										
										
										
											2015-11-21 08:25:52 +06:00
										 |  |  |             return | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  |         login_page = self._download_webpage( | 
					
						
							|  |  |  |             self._LOGIN_URL, None, 'Downloading login page') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         login_form = self._hidden_inputs(login_page) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         login_form.update({ | 
					
						
							| 
									
										
										
										
											2016-04-01 22:46:46 +06:00
										 |  |  |             'Username': username, | 
					
						
							|  |  |  |             'Password': password, | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |         }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         post_url = self._search_regex( | 
					
						
							|  |  |  |             r'<form[^>]+action=(["\'])(?P<url>.+?)\1', login_page, | 
					
						
							|  |  |  |             'post url', default=self._LOGIN_URL, group='url') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if not post_url.startswith('http'): | 
					
						
							|  |  |  |             post_url = compat_urlparse.urljoin(self._LOGIN_URL, post_url) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         response = self._download_webpage( | 
					
						
							| 
									
										
										
										
											2017-11-11 20:49:03 +07:00
										 |  |  |             post_url, None, 'Logging in', | 
					
						
							| 
									
										
										
										
											2016-08-24 08:52:12 +07:00
										 |  |  |             data=urlencode_postdata(login_form), | 
					
						
							|  |  |  |             headers={'Content-Type': 'application/x-www-form-urlencoded'}) | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  |         error = self._search_regex( | 
					
						
							|  |  |  |             r'<span[^>]+class="field-validation-error"[^>]*>([^<]+)</span>', | 
					
						
							|  |  |  |             response, 'error message', default=None) | 
					
						
							|  |  |  |         if error: | 
					
						
							|  |  |  |             raise ExtractorError('Unable to login: %s' % error, expected=True) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-21 21:49:37 +06:00
										 |  |  |         if all(p not in response for p in ('__INITIAL_STATE__', '"currentUser"')): | 
					
						
							| 
									
										
										
										
											2017-02-10 22:48:11 +07:00
										 |  |  |             BLOCKED = 'Your account has been blocked due to suspicious activity' | 
					
						
							|  |  |  |             if BLOCKED in response: | 
					
						
							|  |  |  |                 raise ExtractorError( | 
					
						
							|  |  |  |                     'Unable to login: %s' % BLOCKED, expected=True) | 
					
						
							| 
									
										
										
										
											2017-12-05 22:34:56 +07:00
										 |  |  |             MUST_AGREE = 'To continue using Pluralsight, you must agree to' | 
					
						
							|  |  |  |             if any(p in response for p in (MUST_AGREE, '>Disagree<', '>Agree<')): | 
					
						
							|  |  |  |                 raise ExtractorError( | 
					
						
							|  |  |  |                     'Unable to login: %s some documents. Go to pluralsight.com, ' | 
					
						
							|  |  |  |                     'log in and agree with what Pluralsight requires.' | 
					
						
							|  |  |  |                     % MUST_AGREE, expected=True) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-21 21:49:37 +06:00
										 |  |  |             raise ExtractorError('Unable to log in') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-17 13:46:05 +01:00
										 |  |  |     def _get_subtitles(self, author, clip_idx, lang, name, duration, video_id): | 
					
						
							| 
									
										
										
										
											2016-08-24 08:41:52 +07:00
										 |  |  |         captions_post = { | 
					
						
							|  |  |  |             'a': author, | 
					
						
							| 
									
										
										
										
											2018-05-17 13:46:05 +01:00
										 |  |  |             'cn': clip_idx, | 
					
						
							| 
									
										
										
										
											2016-08-24 08:41:52 +07:00
										 |  |  |             'lc': lang, | 
					
						
							|  |  |  |             'm': name, | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |         captions = self._download_json( | 
					
						
							| 
									
										
										
										
											2016-10-21 03:00:03 +07:00
										 |  |  |             '%s/player/retrieve-captions' % self._API_BASE, video_id, | 
					
						
							| 
									
										
										
										
											2016-08-24 08:41:52 +07:00
										 |  |  |             'Downloading captions JSON', 'Unable to download captions JSON', | 
					
						
							|  |  |  |             fatal=False, data=json.dumps(captions_post).encode('utf-8'), | 
					
						
							|  |  |  |             headers={'Content-Type': 'application/json;charset=utf-8'}) | 
					
						
							|  |  |  |         if captions: | 
					
						
							|  |  |  |             return { | 
					
						
							|  |  |  |                 lang: [{ | 
					
						
							|  |  |  |                     'ext': 'json', | 
					
						
							|  |  |  |                     'data': json.dumps(captions), | 
					
						
							|  |  |  |                 }, { | 
					
						
							|  |  |  |                     'ext': 'srt', | 
					
						
							|  |  |  |                     'data': self._convert_subtitles(duration, captions), | 
					
						
							|  |  |  |                 }] | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     @staticmethod | 
					
						
							|  |  |  |     def _convert_subtitles(duration, subs): | 
					
						
							|  |  |  |         srt = '' | 
					
						
							| 
									
										
										
										
											2016-10-22 21:15:39 +07:00
										 |  |  |         TIME_OFFSET_KEYS = ('displayTimeOffset', 'DisplayTimeOffset') | 
					
						
							|  |  |  |         TEXT_KEYS = ('text', 'Text') | 
					
						
							| 
									
										
										
										
											2016-08-24 08:41:52 +07:00
										 |  |  |         for num, current in enumerate(subs): | 
					
						
							|  |  |  |             current = subs[num] | 
					
						
							| 
									
										
										
										
											2016-10-22 21:15:39 +07:00
										 |  |  |             start, text = ( | 
					
						
							| 
									
										
										
										
											2017-12-29 22:59:49 +02:00
										 |  |  |                 float_or_none(dict_get(current, TIME_OFFSET_KEYS, skip_false_values=False)), | 
					
						
							| 
									
										
										
										
											2016-10-22 21:15:39 +07:00
										 |  |  |                 dict_get(current, TEXT_KEYS)) | 
					
						
							| 
									
										
										
										
											2016-08-24 08:41:52 +07:00
										 |  |  |             if start is None or text is None: | 
					
						
							|  |  |  |                 continue | 
					
						
							|  |  |  |             end = duration if num == len(subs) - 1 else float_or_none( | 
					
						
							| 
									
										
										
										
											2017-12-29 22:59:49 +02:00
										 |  |  |                 dict_get(subs[num + 1], TIME_OFFSET_KEYS, skip_false_values=False)) | 
					
						
							| 
									
										
										
										
											2016-08-24 08:52:12 +07:00
										 |  |  |             if end is None: | 
					
						
							|  |  |  |                 continue | 
					
						
							| 
									
										
										
										
											2016-08-24 08:41:52 +07:00
										 |  |  |             srt += os.linesep.join( | 
					
						
							|  |  |  |                 ( | 
					
						
							|  |  |  |                     '%d' % num, | 
					
						
							|  |  |  |                     '%s --> %s' % ( | 
					
						
							|  |  |  |                         srt_subtitles_timecode(start), | 
					
						
							|  |  |  |                         srt_subtitles_timecode(end)), | 
					
						
							|  |  |  |                     text, | 
					
						
							|  |  |  |                     os.linesep, | 
					
						
							|  |  |  |                 )) | 
					
						
							|  |  |  |         return srt | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2015-11-21 08:08:34 +06:00
										 |  |  |         qs = compat_urlparse.parse_qs(compat_urlparse.urlparse(url).query) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         author = qs.get('author', [None])[0] | 
					
						
							|  |  |  |         name = qs.get('name', [None])[0] | 
					
						
							| 
									
										
										
										
											2018-05-17 13:46:05 +01:00
										 |  |  |         clip_idx = qs.get('clip', [None])[0] | 
					
						
							| 
									
										
										
										
											2016-10-21 03:00:03 +07:00
										 |  |  |         course_name = qs.get('course', [None])[0] | 
					
						
							| 
									
										
										
										
											2015-11-21 08:08:34 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-17 13:46:05 +01:00
										 |  |  |         if any(not f for f in (author, name, clip_idx, course_name,)): | 
					
						
							| 
									
										
										
										
											2015-11-21 08:08:34 +06:00
										 |  |  |             raise ExtractorError('Invalid URL', expected=True) | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-17 13:46:05 +01:00
										 |  |  |         display_id = '%s-%s' % (name, clip_idx) | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-17 22:45:40 +07:00
										 |  |  |         course = self._download_course(course_name, url, display_id) | 
					
						
							| 
									
										
										
										
											2016-10-21 03:00:03 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |         collection = course['modules'] | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-26 02:34:25 +07:00
										 |  |  |         clip = None | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  |         for module_ in collection: | 
					
						
							| 
									
										
										
										
											2015-11-23 03:08:38 +06:00
										 |  |  |             if name in (module_.get('moduleName'), module_.get('name')): | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |                 for clip_ in module_.get('clips', []): | 
					
						
							|  |  |  |                     clip_index = clip_.get('clipIndex') | 
					
						
							| 
									
										
										
										
											2015-11-23 03:08:38 +06:00
										 |  |  |                     if clip_index is None: | 
					
						
							|  |  |  |                         clip_index = clip_.get('index') | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |                     if clip_index is None: | 
					
						
							|  |  |  |                         continue | 
					
						
							| 
									
										
										
										
											2018-05-17 13:46:05 +01:00
										 |  |  |                     if compat_str(clip_index) == clip_idx: | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |                         clip = clip_ | 
					
						
							|  |  |  |                         break | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if not clip: | 
					
						
							|  |  |  |             raise ExtractorError('Unable to resolve clip') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-22 02:28:04 +07:00
										 |  |  |         title = clip['title'] | 
					
						
							| 
									
										
										
										
											2018-05-17 13:46:05 +01:00
										 |  |  |         clip_id = clip.get('clipName') or clip.get('name') or clip['clipId'] | 
					
						
							| 
									
										
										
										
											2016-08-24 08:41:52 +07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |         QUALITIES = { | 
					
						
							|  |  |  |             'low': {'width': 640, 'height': 480}, | 
					
						
							|  |  |  |             'medium': {'width': 848, 'height': 640}, | 
					
						
							|  |  |  |             'high': {'width': 1024, 'height': 768}, | 
					
						
							| 
									
										
										
										
											2015-12-06 01:39:28 +06:00
										 |  |  |             'high-widescreen': {'width': 1280, 'height': 720}, | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-06 01:39:28 +06:00
										 |  |  |         QUALITIES_PREFERENCE = ('low', 'medium', 'high', 'high-widescreen',) | 
					
						
							|  |  |  |         quality_key = qualities(QUALITIES_PREFERENCE) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-22 00:42:58 +06:00
										 |  |  |         AllowedQuality = collections.namedtuple('AllowedQuality', ['ext', 'qualities']) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |         ALLOWED_QUALITIES = ( | 
					
						
							| 
									
										
										
										
											2015-12-06 01:39:28 +06:00
										 |  |  |             AllowedQuality('webm', ['high', ]), | 
					
						
							|  |  |  |             AllowedQuality('mp4', ['low', 'medium', 'high', ]), | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |         ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-06 01:39:28 +06:00
										 |  |  |         # Some courses also offer widescreen resolution for high quality (see | 
					
						
							|  |  |  |         # https://github.com/rg3/youtube-dl/issues/7766) | 
					
						
							| 
									
										
										
										
											2016-10-21 03:00:03 +07:00
										 |  |  |         widescreen = course.get('supportsWideScreenVideoFormats') is True | 
					
						
							| 
									
										
										
										
											2015-12-06 01:39:28 +06:00
										 |  |  |         best_quality = 'high-widescreen' if widescreen else 'high' | 
					
						
							|  |  |  |         if widescreen: | 
					
						
							|  |  |  |             for allowed_quality in ALLOWED_QUALITIES: | 
					
						
							|  |  |  |                 allowed_quality.qualities.append(best_quality) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-22 00:56:40 +06:00
										 |  |  |         # In order to minimize the number of calls to ViewClip API and reduce | 
					
						
							|  |  |  |         # the probability of being throttled or banned by Pluralsight we will request | 
					
						
							| 
									
										
										
										
											2015-11-22 00:58:25 +06:00
										 |  |  |         # only single format until formats listing was explicitly requested. | 
					
						
							| 
									
										
										
										
											2015-11-22 00:42:58 +06:00
										 |  |  |         if self._downloader.params.get('listformats', False): | 
					
						
							|  |  |  |             allowed_qualities = ALLOWED_QUALITIES | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             def guess_allowed_qualities(): | 
					
						
							|  |  |  |                 req_format = self._downloader.params.get('format') or 'best' | 
					
						
							| 
									
										
										
										
											2015-12-06 01:40:13 +06:00
										 |  |  |                 req_format_split = req_format.split('-', 1) | 
					
						
							| 
									
										
										
										
											2015-11-22 00:42:58 +06:00
										 |  |  |                 if len(req_format_split) > 1: | 
					
						
							|  |  |  |                     req_ext, req_quality = req_format_split | 
					
						
							| 
									
										
										
										
											2017-08-06 08:44:28 +07:00
										 |  |  |                     req_quality = '-'.join(req_quality.split('-')[:2]) | 
					
						
							| 
									
										
										
										
											2015-11-22 00:42:58 +06:00
										 |  |  |                     for allowed_quality in ALLOWED_QUALITIES: | 
					
						
							|  |  |  |                         if req_ext == allowed_quality.ext and req_quality in allowed_quality.qualities: | 
					
						
							|  |  |  |                             return (AllowedQuality(req_ext, (req_quality, )), ) | 
					
						
							|  |  |  |                 req_ext = 'webm' if self._downloader.params.get('prefer_free_formats') else 'mp4' | 
					
						
							| 
									
										
										
										
											2015-12-06 01:39:28 +06:00
										 |  |  |                 return (AllowedQuality(req_ext, (best_quality, )), ) | 
					
						
							| 
									
										
										
										
											2015-11-22 00:42:58 +06:00
										 |  |  |             allowed_qualities = guess_allowed_qualities() | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |         formats = [] | 
					
						
							| 
									
										
										
										
											2015-12-06 01:39:28 +06:00
										 |  |  |         for ext, qualities_ in allowed_qualities: | 
					
						
							|  |  |  |             for quality in qualities_: | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |                 f = QUALITIES[quality].copy() | 
					
						
							|  |  |  |                 clip_post = { | 
					
						
							| 
									
										
										
										
											2016-10-21 03:00:03 +07:00
										 |  |  |                     'author': author, | 
					
						
							|  |  |  |                     'includeCaptions': False, | 
					
						
							| 
									
										
										
										
											2018-05-17 13:46:05 +01:00
										 |  |  |                     'clipIndex': int(clip_idx), | 
					
						
							| 
									
										
										
										
											2016-10-21 03:00:03 +07:00
										 |  |  |                     'courseName': course_name, | 
					
						
							|  |  |  |                     'locale': 'en', | 
					
						
							|  |  |  |                     'moduleName': name, | 
					
						
							|  |  |  |                     'mediaType': ext, | 
					
						
							|  |  |  |                     'quality': '%dx%d' % (f['width'], f['height']), | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |                 } | 
					
						
							|  |  |  |                 format_id = '%s-%s' % (ext, quality) | 
					
						
							| 
									
										
										
										
											2016-10-21 04:35:32 +07:00
										 |  |  |                 viewclip = self._download_json( | 
					
						
							| 
									
										
										
										
											2016-10-21 03:00:03 +07:00
										 |  |  |                     '%s/video/clips/viewclip' % self._API_BASE, display_id, | 
					
						
							| 
									
										
										
										
											2016-10-21 04:35:32 +07:00
										 |  |  |                     'Downloading %s viewclip JSON' % format_id, fatal=False, | 
					
						
							| 
									
										
										
										
											2016-08-24 08:52:12 +07:00
										 |  |  |                     data=json.dumps(clip_post).encode('utf-8'), | 
					
						
							|  |  |  |                     headers={'Content-Type': 'application/json;charset=utf-8'}) | 
					
						
							| 
									
										
										
										
											2015-11-22 00:07:09 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 # Pluralsight tracks multiple sequential calls to ViewClip API and start | 
					
						
							|  |  |  |                 # to return 429 HTTP errors after some time (see | 
					
						
							|  |  |  |                 # https://github.com/rg3/youtube-dl/pull/6989). Moreover it may even lead | 
					
						
							|  |  |  |                 # to account ban (see https://github.com/rg3/youtube-dl/issues/6842). | 
					
						
							|  |  |  |                 # To somewhat reduce the probability of these consequences | 
					
						
							|  |  |  |                 # we will sleep random amount of time before each call to ViewClip. | 
					
						
							|  |  |  |                 self._sleep( | 
					
						
							|  |  |  |                     random.randint(2, 5), display_id, | 
					
						
							|  |  |  |                     '%(video_id)s: Waiting for %(timeout)s seconds to avoid throttling') | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-10-21 04:35:32 +07:00
										 |  |  |                 if not viewclip: | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |                     continue | 
					
						
							| 
									
										
										
										
											2016-10-21 04:35:32 +07:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 clip_urls = viewclip.get('urls') | 
					
						
							|  |  |  |                 if not isinstance(clip_urls, list): | 
					
						
							|  |  |  |                     continue | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 for clip_url_data in clip_urls: | 
					
						
							|  |  |  |                     clip_url = clip_url_data.get('url') | 
					
						
							|  |  |  |                     if not clip_url: | 
					
						
							|  |  |  |                         continue | 
					
						
							|  |  |  |                     cdn = clip_url_data.get('cdn') | 
					
						
							|  |  |  |                     clip_f = f.copy() | 
					
						
							|  |  |  |                     clip_f.update({ | 
					
						
							|  |  |  |                         'url': clip_url, | 
					
						
							|  |  |  |                         'ext': ext, | 
					
						
							|  |  |  |                         'format_id': '%s-%s' % (format_id, cdn) if cdn else format_id, | 
					
						
							|  |  |  |                         'quality': quality_key(quality), | 
					
						
							|  |  |  |                         'source_preference': int_or_none(clip_url_data.get('rank')), | 
					
						
							|  |  |  |                     }) | 
					
						
							|  |  |  |                     formats.append(clip_f) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-24 08:41:52 +07:00
										 |  |  |         duration = int_or_none( | 
					
						
							|  |  |  |             clip.get('duration')) or parse_duration(clip.get('formattedDuration')) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         # TODO: other languages? | 
					
						
							|  |  |  |         subtitles = self.extract_subtitles( | 
					
						
							| 
									
										
										
										
											2018-05-17 13:46:05 +01:00
										 |  |  |             author, clip_idx, 'en', name, duration, display_id) | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							| 
									
										
										
										
											2018-05-17 13:46:05 +01:00
										 |  |  |             'id': clip_id, | 
					
						
							| 
									
										
										
										
											2016-08-24 08:41:52 +07:00
										 |  |  |             'title': title, | 
					
						
							|  |  |  |             'duration': duration, | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |             'creator': author, | 
					
						
							| 
									
										
										
										
											2016-08-24 08:41:52 +07:00
										 |  |  |             'formats': formats, | 
					
						
							|  |  |  |             'subtitles': subtitles, | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-21 21:37:29 +06:00
										 |  |  | class PluralsightCourseIE(PluralsightBaseIE): | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |     IE_NAME = 'pluralsight:course' | 
					
						
							| 
									
										
										
										
											2015-11-21 08:32:48 +06:00
										 |  |  |     _VALID_URL = r'https?://(?:(?:www|app)\.)?pluralsight\.com/(?:library/)?courses/(?P<id>[^/]+)' | 
					
						
							| 
									
										
										
										
											2015-11-21 08:25:52 +06:00
										 |  |  |     _TESTS = [{ | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |         # Free course from Pluralsight Starter Subscription for Microsoft TechNet | 
					
						
							|  |  |  |         # https://offers.pluralsight.com/technet?loc=zTS3z&prod=zOTprodz&tech=zOttechz&prog=zOTprogz&type=zSOz&media=zOTmediaz&country=zUSz | 
					
						
							|  |  |  |         'url': 'http://www.pluralsight.com/courses/hosting-sql-server-windows-azure-iaas', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'hosting-sql-server-windows-azure-iaas', | 
					
						
							|  |  |  |             'title': 'Hosting SQL Server in Microsoft Azure IaaS Fundamentals', | 
					
						
							|  |  |  |             'description': 'md5:61b37e60f21c4b2f91dc621a977d0986', | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         'playlist_count': 31, | 
					
						
							| 
									
										
										
										
											2015-11-21 08:25:52 +06:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         # available without pluralsight account | 
					
						
							|  |  |  |         'url': 'https://www.pluralsight.com/courses/angularjs-get-started', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2015-11-21 08:32:48 +06:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'https://app.pluralsight.com/library/courses/understanding-microsoft-azure-amazon-aws/table-of-contents', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2015-11-21 08:25:52 +06:00
										 |  |  |     }] | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         course_id = self._match_id(url) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-23 11:21:56 +06:00
										 |  |  |         # TODO: PSM cookie | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-17 22:45:40 +07:00
										 |  |  |         course = self._download_course(course_id, url, course_id) | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  |         title = course['title'] | 
					
						
							| 
									
										
										
										
											2017-02-11 17:00:52 +07:00
										 |  |  |         course_name = course['name'] | 
					
						
							|  |  |  |         course_data = course['modules'] | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |         description = course.get('description') or course.get('shortDescription') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         entries = [] | 
					
						
							| 
									
										
										
										
											2016-03-27 02:10:52 +06:00
										 |  |  |         for num, module in enumerate(course_data, 1): | 
					
						
							| 
									
										
										
										
											2017-02-11 17:00:52 +07:00
										 |  |  |             author = module.get('author') | 
					
						
							|  |  |  |             module_name = module.get('name') | 
					
						
							|  |  |  |             if not author or not module_name: | 
					
						
							|  |  |  |                 continue | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |             for clip in module.get('clips', []): | 
					
						
							| 
									
										
										
										
											2017-02-11 17:00:52 +07:00
										 |  |  |                 clip_index = int_or_none(clip.get('index')) | 
					
						
							|  |  |  |                 if clip_index is None: | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  |                     continue | 
					
						
							| 
									
										
										
										
											2017-02-11 17:00:52 +07:00
										 |  |  |                 clip_url = update_url_query( | 
					
						
							|  |  |  |                     '%s/player' % self._API_BASE, query={ | 
					
						
							|  |  |  |                         'mode': 'live', | 
					
						
							|  |  |  |                         'course': course_name, | 
					
						
							|  |  |  |                         'author': author, | 
					
						
							|  |  |  |                         'name': module_name, | 
					
						
							|  |  |  |                         'clip': clip_index, | 
					
						
							|  |  |  |                     }) | 
					
						
							| 
									
										
										
										
											2016-03-27 02:10:52 +06:00
										 |  |  |                 entries.append({ | 
					
						
							|  |  |  |                     '_type': 'url_transparent', | 
					
						
							| 
									
										
										
										
											2017-02-11 17:00:52 +07:00
										 |  |  |                     'url': clip_url, | 
					
						
							| 
									
										
										
										
											2016-03-27 02:10:52 +06:00
										 |  |  |                     'ie_key': PluralsightIE.ie_key(), | 
					
						
							|  |  |  |                     'chapter': module.get('title'), | 
					
						
							|  |  |  |                     'chapter_number': num, | 
					
						
							|  |  |  |                     'chapter_id': module.get('moduleRef'), | 
					
						
							|  |  |  |                 }) | 
					
						
							| 
									
										
										
										
											2015-08-23 10:42:34 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  |         return self.playlist_result(entries, course_id, title, description) |