| 
									
										
										
										
											2015-02-15 04:57:52 +06:00
										 |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-04-01 09:56:18 +01:00
										 |  |  | import re | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-02 21:20:59 +01:00
										 |  |  | from .theplatform import ThePlatformIE | 
					
						
							| 
									
										
										
										
											2016-04-01 09:56:18 +01:00
										 |  |  | from ..utils import ( | 
					
						
							|  |  |  |     smuggle_url, | 
					
						
							|  |  |  |     update_url_query, | 
					
						
							|  |  |  |     unescapeHTML, | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  |     extract_attributes, | 
					
						
							| 
									
										
										
										
											2016-06-29 16:18:16 +01:00
										 |  |  |     get_element_by_attribute, | 
					
						
							| 
									
										
										
										
											2016-04-01 09:56:18 +01:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  | from ..compat import ( | 
					
						
							|  |  |  |     compat_urlparse, | 
					
						
							|  |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-02 21:20:59 +01:00
										 |  |  | class AENetworksBaseIE(ThePlatformIE): | 
					
						
							|  |  |  |     _THEPLATFORM_KEY = 'crazyjava' | 
					
						
							|  |  |  |     _THEPLATFORM_SECRET = 's3cr3t' | 
					
						
							| 
									
										
										
										
											2015-02-15 04:57:52 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  | class AENetworksIE(AENetworksBaseIE): | 
					
						
							| 
									
										
										
										
											2016-01-17 03:02:45 +06:00
										 |  |  |     IE_NAME = 'aenetworks' | 
					
						
							|  |  |  |     IE_DESC = 'A+E Networks: A&E, Lifetime, History.com, FYI Network' | 
					
						
							| 
									
										
										
										
											2017-04-13 23:39:55 +07:00
										 |  |  |     _VALID_URL = r'''(?x)
 | 
					
						
							|  |  |  |                     https?:// | 
					
						
							|  |  |  |                         (?:www\.)? | 
					
						
							|  |  |  |                         (?P<domain> | 
					
						
							|  |  |  |                             (?:history|aetv|mylifetime|lifetimemovieclub)\.com| | 
					
						
							|  |  |  |                             fyi\.tv | 
					
						
							|  |  |  |                         )/ | 
					
						
							|  |  |  |                         (?: | 
					
						
							|  |  |  |                             shows/(?P<show_path>[^/]+(?:/[^/]+){0,2})| | 
					
						
							|  |  |  |                             movies/(?P<movie_display_id>[^/]+)(?:/full-movie)?| | 
					
						
							|  |  |  |                             specials/(?P<special_display_id>[^/]+)/full-special | 
					
						
							|  |  |  |                         ) | 
					
						
							|  |  |  |                     '''
 | 
					
						
							| 
									
										
										
										
											2015-02-15 04:57:52 +06:00
										 |  |  |     _TESTS = [{ | 
					
						
							| 
									
										
										
										
											2016-01-15 15:16:57 +01:00
										 |  |  |         'url': 'http://www.history.com/shows/mountain-men/season-1/episode-1', | 
					
						
							| 
									
										
										
										
											2016-12-01 12:15:35 +01:00
										 |  |  |         'md5': 'a97a65f7e823ae10e9244bc5433d5fe6', | 
					
						
							| 
									
										
										
										
											2016-01-15 15:16:57 +01:00
										 |  |  |         'info_dict': { | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  |             'id': '22253814', | 
					
						
							| 
									
										
										
										
											2016-01-15 15:16:57 +01:00
										 |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2016-02-14 15:37:17 +06:00
										 |  |  |             'title': 'Winter Is Coming', | 
					
						
							| 
									
										
										
										
											2016-01-16 20:56:53 +08:00
										 |  |  |             'description': 'md5:641f424b7a19d8e24f26dea22cf59d74', | 
					
						
							| 
									
										
										
										
											2016-04-01 18:06:11 +01:00
										 |  |  |             'timestamp': 1338306241, | 
					
						
							|  |  |  |             'upload_date': '20120529', | 
					
						
							|  |  |  |             'uploader': 'AENE-NEW', | 
					
						
							| 
									
										
										
										
											2016-01-15 15:16:57 +01:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2015-02-15 04:57:52 +06:00
										 |  |  |         'add_ie': ['ThePlatform'], | 
					
						
							| 
									
										
										
										
											2016-01-15 16:18:07 +01:00
										 |  |  |     }, { | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  |         'url': 'http://www.history.com/shows/ancient-aliens/season-1', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '71889446852', | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         'playlist_mincount': 5, | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.mylifetime.com/shows/atlanta-plastic', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': 'SERIES4317', | 
					
						
							|  |  |  |             'title': 'Atlanta Plastic', | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         'playlist_mincount': 2, | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.aetv.com/shows/duck-dynasty/season-9/episode-1', | 
					
						
							| 
									
										
										
										
											2016-01-15 16:18:07 +01:00
										 |  |  |         'only_matching': True | 
					
						
							|  |  |  |     }, { | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  |         'url': 'http://www.fyi.tv/shows/tiny-house-nation/season-1/episode-8', | 
					
						
							| 
									
										
										
										
											2016-01-15 16:18:07 +01:00
										 |  |  |         'only_matching': True | 
					
						
							|  |  |  |     }, { | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  |         'url': 'http://www.mylifetime.com/shows/project-runway-junior/season-1/episode-6', | 
					
						
							| 
									
										
										
										
											2016-01-15 16:18:07 +01:00
										 |  |  |         'only_matching': True | 
					
						
							| 
									
										
										
										
											2016-06-29 16:55:17 +01:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.mylifetime.com/movies/center-stage-on-pointe/full-movie', | 
					
						
							|  |  |  |         'only_matching': True | 
					
						
							| 
									
										
										
										
											2017-02-12 17:48:11 +05:30
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'https://www.lifetimemovieclub.com/movies/a-killer-among-us', | 
					
						
							|  |  |  |         'only_matching': True | 
					
						
							| 
									
										
										
										
											2017-04-13 23:39:55 +07:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.history.com/specials/sniper-into-the-kill-zone/full-special', | 
					
						
							|  |  |  |         'only_matching': True | 
					
						
							| 
									
										
										
										
											2015-02-15 04:57:52 +06:00
										 |  |  |     }] | 
					
						
							| 
									
										
										
										
											2016-07-02 21:20:59 +01:00
										 |  |  |     _DOMAIN_TO_REQUESTOR_ID = { | 
					
						
							|  |  |  |         'history.com': 'HISTORY', | 
					
						
							|  |  |  |         'aetv.com': 'AETV', | 
					
						
							|  |  |  |         'mylifetime.com': 'LIFETIME', | 
					
						
							| 
									
										
										
										
											2017-02-12 17:48:11 +05:30
										 |  |  |         'lifetimemovieclub.com': 'LIFETIMEMOVIECLUB', | 
					
						
							| 
									
										
										
										
											2016-07-02 21:20:59 +01:00
										 |  |  |         'fyi.tv': 'FYI', | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2015-02-15 04:57:52 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2017-04-13 23:39:55 +07:00
										 |  |  |         domain, show_path, movie_display_id, special_display_id = re.match(self._VALID_URL, url).groups() | 
					
						
							|  |  |  |         display_id = show_path or movie_display_id or special_display_id | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  |         webpage = self._download_webpage(url, display_id) | 
					
						
							| 
									
										
										
										
											2016-06-29 16:55:17 +01:00
										 |  |  |         if show_path: | 
					
						
							|  |  |  |             url_parts = show_path.split('/') | 
					
						
							|  |  |  |             url_parts_len = len(url_parts) | 
					
						
							|  |  |  |             if url_parts_len == 1: | 
					
						
							|  |  |  |                 entries = [] | 
					
						
							|  |  |  |                 for season_url_path in re.findall(r'(?s)<li[^>]+data-href="(/shows/%s/season-\d+)"' % url_parts[0], webpage): | 
					
						
							|  |  |  |                     entries.append(self.url_result( | 
					
						
							|  |  |  |                         compat_urlparse.urljoin(url, season_url_path), 'AENetworks')) | 
					
						
							|  |  |  |                 return self.playlist_result( | 
					
						
							|  |  |  |                     entries, self._html_search_meta('aetn:SeriesId', webpage), | 
					
						
							|  |  |  |                     self._html_search_meta('aetn:SeriesTitle', webpage)) | 
					
						
							|  |  |  |             elif url_parts_len == 2: | 
					
						
							|  |  |  |                 entries = [] | 
					
						
							| 
									
										
										
										
											2017-01-26 19:15:43 +01:00
										 |  |  |                 for episode_item in re.findall(r'(?s)<[^>]+class="[^"]*(?:episode|program)-item[^"]*"[^>]*>', webpage): | 
					
						
							| 
									
										
										
										
											2016-06-29 16:55:17 +01:00
										 |  |  |                     episode_attributes = extract_attributes(episode_item) | 
					
						
							|  |  |  |                     episode_url = compat_urlparse.urljoin( | 
					
						
							|  |  |  |                         url, episode_attributes['data-canonical']) | 
					
						
							|  |  |  |                     entries.append(self.url_result( | 
					
						
							|  |  |  |                         episode_url, 'AENetworks', | 
					
						
							|  |  |  |                         episode_attributes['data-videoid'])) | 
					
						
							|  |  |  |                 return self.playlist_result( | 
					
						
							|  |  |  |                     entries, self._html_search_meta('aetn:SeasonId', webpage)) | 
					
						
							| 
									
										
										
										
											2016-07-02 21:20:59 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         query = { | 
					
						
							|  |  |  |             'mbr': 'true', | 
					
						
							| 
									
										
										
										
											2016-12-01 12:15:35 +01:00
										 |  |  |             'assetTypes': 'high_video_s3' | 
					
						
							| 
									
										
										
										
											2016-07-02 21:20:59 +01:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2016-06-29 16:55:17 +01:00
										 |  |  |         video_id = self._html_search_meta('aetn:VideoID', webpage) | 
					
						
							|  |  |  |         media_url = self._search_regex( | 
					
						
							| 
									
										
										
										
											2017-04-06 02:28:09 +07:00
										 |  |  |             [r"media_url\s*=\s*'(?P<url>[^']+)'", | 
					
						
							|  |  |  |              r'data-media-url=(?P<url>(?:https?:)?//[^\s>]+)', | 
					
						
							|  |  |  |              r'data-media-url=(["\'])(?P<url>(?:(?!\1).)+?)\1'], | 
					
						
							|  |  |  |             webpage, 'video url', group='url') | 
					
						
							| 
									
										
										
										
											2016-07-02 21:20:59 +01:00
										 |  |  |         theplatform_metadata = self._download_theplatform_metadata(self._search_regex( | 
					
						
							|  |  |  |             r'https?://link.theplatform.com/s/([^?]+)', media_url, 'theplatform_path'), video_id) | 
					
						
							|  |  |  |         info = self._parse_theplatform_metadata(theplatform_metadata) | 
					
						
							|  |  |  |         if theplatform_metadata.get('AETN$isBehindWall'): | 
					
						
							|  |  |  |             requestor_id = self._DOMAIN_TO_REQUESTOR_ID[domain] | 
					
						
							| 
									
										
										
										
											2016-08-14 17:55:56 +01:00
										 |  |  |             resource = self._get_mvpd_resource( | 
					
						
							|  |  |  |                 requestor_id, theplatform_metadata['title'], | 
					
						
							|  |  |  |                 theplatform_metadata.get('AETN$PPL_pplProgramId') or theplatform_metadata.get('AETN$PPL_pplProgramId_OLD'), | 
					
						
							|  |  |  |                 theplatform_metadata['ratings'][0]['rating']) | 
					
						
							| 
									
										
										
										
											2016-07-02 21:20:59 +01:00
										 |  |  |             query['auth'] = self._extract_mvpd_auth( | 
					
						
							|  |  |  |                 url, video_id, requestor_id, resource) | 
					
						
							|  |  |  |         info.update(self._search_json_ld(webpage, video_id, fatal=False)) | 
					
						
							|  |  |  |         media_url = update_url_query(media_url, query) | 
					
						
							|  |  |  |         media_url = self._sign_url(media_url, self._THEPLATFORM_KEY, self._THEPLATFORM_SECRET) | 
					
						
							|  |  |  |         formats, subtitles = self._extract_theplatform_smil(media_url, video_id) | 
					
						
							|  |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  |         info.update({ | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'formats': formats, | 
					
						
							|  |  |  |             'subtitles': subtitles, | 
					
						
							|  |  |  |         }) | 
					
						
							| 
									
										
										
										
											2016-06-29 16:55:17 +01:00
										 |  |  |         return info | 
					
						
							| 
									
										
										
										
											2015-02-15 04:57:52 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  | class HistoryTopicIE(AENetworksBaseIE): | 
					
						
							|  |  |  |     IE_NAME = 'history:topic' | 
					
						
							|  |  |  |     IE_DESC = 'History.com Topic' | 
					
						
							| 
									
										
										
										
											2016-07-03 13:01:04 +07:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?history\.com/topics/(?:[^/]+/)?(?P<topic_id>[^/]+)(?:/[^/]+(?:/(?P<video_display_id>[^/?#]+))?)?' | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  |     _TESTS = [{ | 
					
						
							|  |  |  |         'url': 'http://www.history.com/topics/valentines-day/history-of-valentines-day/videos/bet-you-didnt-know-valentines-day?m=528e394da93ae&s=undefined&f=1&free=false', | 
					
						
							|  |  |  |         'info_dict': { | 
					
						
							|  |  |  |             'id': '40700995724', | 
					
						
							|  |  |  |             'ext': 'mp4', | 
					
						
							|  |  |  |             'title': "Bet You Didn't Know: Valentine's Day", | 
					
						
							|  |  |  |             'description': 'md5:7b57ea4829b391995b405fa60bd7b5f7', | 
					
						
							|  |  |  |             'timestamp': 1375819729, | 
					
						
							|  |  |  |             'upload_date': '20130806', | 
					
						
							|  |  |  |             'uploader': 'AENE-NEW', | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         'params': { | 
					
						
							|  |  |  |             # m3u8 download | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         'add_ie': ['ThePlatform'], | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.history.com/topics/world-war-i/world-war-i-history/videos', | 
					
						
							|  |  |  |         'info_dict': | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'id': 'world-war-i-history', | 
					
						
							| 
									
										
										
										
											2016-06-29 16:18:16 +01:00
										 |  |  |             'title': 'World War I History', | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  |         }, | 
					
						
							| 
									
										
										
										
											2016-12-01 12:15:35 +01:00
										 |  |  |         'playlist_mincount': 23, | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.history.com/topics/world-war-i-history/videos', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2016-07-03 13:01:04 +07:00
										 |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.history.com/topics/world-war-i/world-war-i-history', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							|  |  |  |     }, { | 
					
						
							|  |  |  |         'url': 'http://www.history.com/topics/world-war-i/world-war-i-history/speeches', | 
					
						
							|  |  |  |         'only_matching': True, | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  |     }] | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-07-02 21:20:59 +01:00
										 |  |  |     def theplatform_url_result(self, theplatform_url, video_id, query): | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             '_type': 'url_transparent', | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'url': smuggle_url( | 
					
						
							|  |  |  |                 update_url_query(theplatform_url, query), | 
					
						
							|  |  |  |                 { | 
					
						
							|  |  |  |                     'sig': { | 
					
						
							|  |  |  |                         'key': self._THEPLATFORM_KEY, | 
					
						
							|  |  |  |                         'secret': self._THEPLATFORM_SECRET, | 
					
						
							|  |  |  |                     }, | 
					
						
							|  |  |  |                     'force_smil_url': True | 
					
						
							|  |  |  |                 }), | 
					
						
							|  |  |  |             'ie_key': 'ThePlatform', | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2016-06-29 16:55:17 +01:00
										 |  |  |         topic_id, video_display_id = re.match(self._VALID_URL, url).groups() | 
					
						
							|  |  |  |         if video_display_id: | 
					
						
							|  |  |  |             webpage = self._download_webpage(url, video_display_id) | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  |             release_url, video_id = re.search(r"_videoPlayer.play\('([^']+)'\s*,\s*'[^']+'\s*,\s*'(\d+)'\)", webpage).groups() | 
					
						
							|  |  |  |             release_url = unescapeHTML(release_url) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             return self.theplatform_url_result( | 
					
						
							|  |  |  |                 release_url, video_id, { | 
					
						
							|  |  |  |                     'mbr': 'true', | 
					
						
							| 
									
										
										
										
											2016-12-01 12:15:35 +01:00
										 |  |  |                     'switch': 'hls', | 
					
						
							|  |  |  |                     'assetTypes': 'high_video_ak', | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  |                 }) | 
					
						
							|  |  |  |         else: | 
					
						
							|  |  |  |             webpage = self._download_webpage(url, topic_id) | 
					
						
							|  |  |  |             entries = [] | 
					
						
							|  |  |  |             for episode_item in re.findall(r'<a.+?data-release-url="[^"]+"[^>]*>', webpage): | 
					
						
							|  |  |  |                 video_attributes = extract_attributes(episode_item) | 
					
						
							|  |  |  |                 entries.append(self.theplatform_url_result( | 
					
						
							| 
									
										
										
										
											2016-06-29 16:03:32 +01:00
										 |  |  |                     video_attributes['data-release-url'], video_attributes['data-id'], { | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  |                         'mbr': 'true', | 
					
						
							| 
									
										
										
										
											2016-12-01 12:15:35 +01:00
										 |  |  |                         'switch': 'hls', | 
					
						
							|  |  |  |                         'assetTypes': 'high_video_ak', | 
					
						
							| 
									
										
										
										
											2016-06-29 15:49:17 +01:00
										 |  |  |                     })) | 
					
						
							| 
									
										
										
										
											2016-06-29 16:18:16 +01:00
										 |  |  |             return self.playlist_result(entries, topic_id, get_element_by_attribute('class', 'show-title', webpage)) |