| 
									
										
										
										
											2015-08-06 19:17:50 +01:00
										 |  |  | # coding: utf-8 | 
					
						
							|  |  |  | from __future__ import unicode_literals | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-03 00:29:53 +01:00
										 |  |  | import re | 
					
						
							| 
									
										
										
										
											2015-09-04 15:42:09 +01:00
										 |  |  | import base64 | 
					
						
							| 
									
										
										
										
											2015-09-03 00:29:53 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-18 09:51:59 +01:00
										 |  |  | from .common import InfoExtractor | 
					
						
							| 
									
										
										
										
											2016-01-10 07:45:41 +01:00
										 |  |  | from ..compat import ( | 
					
						
							|  |  |  |     compat_urllib_parse, | 
					
						
							|  |  |  |     compat_str, | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2015-08-08 00:06:03 +06:00
										 |  |  | from ..utils import ( | 
					
						
							|  |  |  |     int_or_none, | 
					
						
							|  |  |  |     parse_iso8601, | 
					
						
							| 
									
										
										
										
											2015-11-21 22:18:17 +06:00
										 |  |  |     sanitized_Request, | 
					
						
							| 
									
										
										
										
											2015-09-03 16:59:10 +01:00
										 |  |  |     smuggle_url, | 
					
						
							|  |  |  |     unsmuggle_url, | 
					
						
							| 
									
										
										
										
											2015-08-08 00:06:03 +06:00
										 |  |  | ) | 
					
						
							| 
									
										
										
										
											2015-08-06 19:17:50 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-18 09:51:59 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-08-08 00:06:03 +06:00
										 |  |  | class DCNIE(InfoExtractor): | 
					
						
							| 
									
										
										
										
											2015-09-03 00:29:53 +01:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?dcndigital\.ae/(?:#/)?show/(?P<show_id>\d+)/[^/]+(?:/(?P<video_id>\d+)/(?P<season_id>\d+))?' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         show_id, video_id, season_id = re.match(self._VALID_URL, url).groups() | 
					
						
							|  |  |  |         if video_id and int(video_id) > 0: | 
					
						
							| 
									
										
										
										
											2015-12-27 09:56:15 +01:00
										 |  |  |             return self.url_result( | 
					
						
							|  |  |  |                 'http://www.dcndigital.ae/media/%s' % video_id, 'DCNVideo') | 
					
						
							|  |  |  |         elif season_id and int(season_id) > 0: | 
					
						
							|  |  |  |             return self.url_result(smuggle_url( | 
					
						
							|  |  |  |                 'http://www.dcndigital.ae/program/season/%s' % season_id, | 
					
						
							|  |  |  |                 {'show_id': show_id}), 'DCNSeason') | 
					
						
							| 
									
										
										
										
											2015-09-03 00:29:53 +01:00
										 |  |  |         else: | 
					
						
							| 
									
										
										
										
											2015-12-27 09:56:15 +01:00
										 |  |  |             return self.url_result( | 
					
						
							|  |  |  |                 'http://www.dcndigital.ae/program/%s' % show_id, 'DCNSeason') | 
					
						
							| 
									
										
										
										
											2015-09-03 00:29:53 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-27 09:56:15 +01:00
										 |  |  | class DCNBaseIE(InfoExtractor): | 
					
						
							|  |  |  |     def _extract_video_info(self, video_data, video_id, is_live): | 
					
						
							|  |  |  |         title = video_data.get('title_en') or video_data['title_ar'] | 
					
						
							|  |  |  |         img = video_data.get('img') | 
					
						
							|  |  |  |         thumbnail = 'http://admin.mangomolo.com/analytics/%s' % img if img else None | 
					
						
							|  |  |  |         duration = int_or_none(video_data.get('duration')) | 
					
						
							|  |  |  |         description = video_data.get('description_en') or video_data.get('description_ar') | 
					
						
							|  |  |  |         timestamp = parse_iso8601(video_data.get('create_time'), ' ') | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         return { | 
					
						
							|  |  |  |             'id': video_id, | 
					
						
							|  |  |  |             'title': self._live_title(title) if is_live else title, | 
					
						
							|  |  |  |             'description': description, | 
					
						
							|  |  |  |             'thumbnail': thumbnail, | 
					
						
							|  |  |  |             'duration': duration, | 
					
						
							|  |  |  |             'timestamp': timestamp, | 
					
						
							|  |  |  |             'is_live': is_live, | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _extract_video_formats(self, webpage, video_id, entry_protocol): | 
					
						
							| 
									
										
										
										
											2015-12-28 10:27:17 +01:00
										 |  |  |         formats = [] | 
					
						
							| 
									
										
										
										
											2015-12-27 09:56:15 +01:00
										 |  |  |         m3u8_url = self._html_search_regex( | 
					
						
							| 
									
										
										
										
											2015-12-28 10:27:17 +01:00
										 |  |  |             r'file\s*:\s*"([^"]+)', webpage, 'm3u8 url', fatal=False) | 
					
						
							|  |  |  |         if m3u8_url: | 
					
						
							| 
									
										
										
										
											2015-12-29 00:58:24 +06:00
										 |  |  |             formats.extend(self._extract_m3u8_formats( | 
					
						
							|  |  |  |                 m3u8_url, video_id, 'mp4', entry_protocol, m3u8_id='hls', fatal=None)) | 
					
						
							| 
									
										
										
										
											2015-12-27 09:56:15 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         rtsp_url = self._search_regex( | 
					
						
							|  |  |  |             r'<a[^>]+href="(rtsp://[^"]+)"', webpage, 'rtsp url', fatal=False) | 
					
						
							|  |  |  |         if rtsp_url: | 
					
						
							|  |  |  |             formats.append({ | 
					
						
							|  |  |  |                 'url': rtsp_url, | 
					
						
							|  |  |  |                 'format_id': 'rtsp', | 
					
						
							|  |  |  |             }) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         self._sort_formats(formats) | 
					
						
							|  |  |  |         return formats | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class DCNVideoIE(DCNBaseIE): | 
					
						
							| 
									
										
										
										
											2015-09-03 16:59:10 +01:00
										 |  |  |     IE_NAME = 'dcn:video' | 
					
						
							| 
									
										
										
										
											2015-09-04 15:42:09 +01:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?dcndigital\.ae/(?:#/)?(?:video/[^/]+|media|catchup/[^/]+/[^/]+)/(?P<id>\d+)' | 
					
						
							| 
									
										
										
										
											2015-07-18 09:51:59 +01:00
										 |  |  |     _TEST = { | 
					
						
							| 
									
										
										
										
											2015-09-03 00:29:53 +01:00
										 |  |  |         'url': 'http://www.dcndigital.ae/#/video/%D8%B1%D8%AD%D9%84%D8%A9-%D8%A7%D9%84%D8%B9%D9%85%D8%B1-%D8%A7%D9%84%D8%AD%D9%84%D9%82%D8%A9-1/17375', | 
					
						
							| 
									
										
										
										
											2015-07-18 09:51:59 +01:00
										 |  |  |         'info_dict': | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'id': '17375', | 
					
						
							| 
									
										
										
										
											2015-08-08 00:06:03 +06:00
										 |  |  |             'ext': 'mp4', | 
					
						
							| 
									
										
										
										
											2015-07-18 09:51:59 +01:00
										 |  |  |             'title': 'رحلة العمر : الحلقة 1', | 
					
						
							| 
									
										
										
										
											2015-08-08 00:06:03 +06:00
										 |  |  |             'description': 'md5:0156e935d870acb8ef0a66d24070c6d6', | 
					
						
							|  |  |  |             'duration': 2041, | 
					
						
							|  |  |  |             'timestamp': 1227504126, | 
					
						
							|  |  |  |             'upload_date': '20081124', | 
					
						
							| 
									
										
										
										
											2015-08-06 19:17:50 +01:00
										 |  |  |         }, | 
					
						
							|  |  |  |         'params': { | 
					
						
							|  |  |  |             # m3u8 download | 
					
						
							|  |  |  |             'skip_download': True, | 
					
						
							|  |  |  |         }, | 
					
						
							| 
									
										
										
										
											2015-07-18 09:51:59 +01:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         video_id = self._match_id(url) | 
					
						
							| 
									
										
										
										
											2015-08-08 00:06:03 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-11-21 22:18:17 +06:00
										 |  |  |         request = sanitized_Request( | 
					
						
							| 
									
										
										
										
											2015-08-08 00:06:03 +06:00
										 |  |  |             'http://admin.mangomolo.com/analytics/index.php/plus/video?id=%s' % video_id, | 
					
						
							|  |  |  |             headers={'Origin': 'http://www.dcndigital.ae'}) | 
					
						
							| 
									
										
										
										
											2015-12-27 09:56:15 +01:00
										 |  |  |         video_data = self._download_json(request, video_id) | 
					
						
							|  |  |  |         info = self._extract_video_info(video_data, video_id, False) | 
					
						
							| 
									
										
										
										
											2015-08-08 00:06:03 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-07-18 09:51:59 +01:00
										 |  |  |         webpage = self._download_webpage( | 
					
						
							| 
									
										
										
										
											2015-09-05 15:38:05 +08:00
										 |  |  |             'http://admin.mangomolo.com/analytics/index.php/customers/embed/video?' + | 
					
						
							|  |  |  |             compat_urllib_parse.urlencode({ | 
					
						
							| 
									
										
										
										
											2015-12-27 09:56:15 +01:00
										 |  |  |                 'id': video_data['id'], | 
					
						
							|  |  |  |                 'user_id': video_data['user_id'], | 
					
						
							|  |  |  |                 'signature': video_data['signature'], | 
					
						
							| 
									
										
										
										
											2015-08-08 00:06:03 +06:00
										 |  |  |                 'countries': 'Q0M=', | 
					
						
							|  |  |  |                 'filter': 'DENY', | 
					
						
							|  |  |  |             }), video_id) | 
					
						
							| 
									
										
										
										
											2015-12-27 09:56:15 +01:00
										 |  |  |         info['formats'] = self._extract_video_formats(webpage, video_id, 'm3u8_native') | 
					
						
							|  |  |  |         return info | 
					
						
							| 
									
										
										
										
											2015-08-08 00:06:03 +06:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-27 09:56:15 +01:00
										 |  |  | class DCNLiveIE(DCNBaseIE): | 
					
						
							| 
									
										
										
										
											2015-09-04 15:42:09 +01:00
										 |  |  |     IE_NAME = 'dcn:live' | 
					
						
							|  |  |  |     _VALID_URL = r'https?://(?:www\.)?dcndigital\.ae/(?:#/)?live/(?P<id>\d+)' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							|  |  |  |         channel_id = self._match_id(url) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-28 10:38:31 +01:00
										 |  |  |         request = sanitized_Request( | 
					
						
							| 
									
										
										
										
											2015-09-04 15:42:09 +01:00
										 |  |  |             'http://admin.mangomolo.com/analytics/index.php/plus/getchanneldetails?channel_id=%s' % channel_id, | 
					
						
							|  |  |  |             headers={'Origin': 'http://www.dcndigital.ae'}) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-12-27 09:56:15 +01:00
										 |  |  |         channel_data = self._download_json(request, channel_id) | 
					
						
							|  |  |  |         info = self._extract_video_info(channel_data, channel_id, True) | 
					
						
							| 
									
										
										
										
											2015-09-04 15:42:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  |         webpage = self._download_webpage( | 
					
						
							| 
									
										
										
										
											2015-09-05 11:30:42 +01:00
										 |  |  |             'http://admin.mangomolo.com/analytics/index.php/customers/embed/index?' + | 
					
						
							|  |  |  |             compat_urllib_parse.urlencode({ | 
					
						
							| 
									
										
										
										
											2015-12-27 09:56:15 +01:00
										 |  |  |                 'id': base64.b64encode(channel_data['user_id'].encode()).decode(), | 
					
						
							|  |  |  |                 'channelid': base64.b64encode(channel_data['id'].encode()).decode(), | 
					
						
							|  |  |  |                 'signature': channel_data['signature'], | 
					
						
							| 
									
										
										
										
											2015-09-04 15:42:09 +01:00
										 |  |  |                 'countries': 'Q0M=', | 
					
						
							|  |  |  |                 'filter': 'DENY', | 
					
						
							|  |  |  |             }), channel_id) | 
					
						
							| 
									
										
										
										
											2015-12-27 09:56:15 +01:00
										 |  |  |         info['formats'] = self._extract_video_formats(webpage, channel_id, 'm3u8') | 
					
						
							|  |  |  |         return info | 
					
						
							| 
									
										
										
										
											2015-09-04 15:42:09 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-03 16:59:10 +01:00
										 |  |  | class DCNSeasonIE(InfoExtractor): | 
					
						
							|  |  |  |     IE_NAME = 'dcn:season' | 
					
						
							| 
									
										
										
										
											2015-09-03 00:29:53 +01:00
										 |  |  |     _VALID_URL = r'https?://(?:www\.)?dcndigital\.ae/(?:#/)?program/(?:(?P<show_id>\d+)|season/(?P<season_id>\d+))' | 
					
						
							|  |  |  |     _TEST = { | 
					
						
							|  |  |  |         'url': 'http://dcndigital.ae/#/program/205024/%D9%85%D8%AD%D8%A7%D8%B6%D8%B1%D8%A7%D8%AA-%D8%A7%D9%84%D8%B4%D9%8A%D8%AE-%D8%A7%D9%84%D8%B4%D8%B9%D8%B1%D8%A7%D9%88%D9%8A', | 
					
						
							|  |  |  |         'info_dict': | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2015-09-03 16:59:10 +01:00
										 |  |  |             'id': '7910', | 
					
						
							| 
									
										
										
										
											2015-09-03 00:29:53 +01:00
										 |  |  |             'title': 'محاضرات الشيخ الشعراوي', | 
					
						
							|  |  |  |         }, | 
					
						
							|  |  |  |         'playlist_mincount': 27, | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     def _real_extract(self, url): | 
					
						
							| 
									
										
										
										
											2015-09-03 16:59:10 +01:00
										 |  |  |         url, smuggled_data = unsmuggle_url(url, {}) | 
					
						
							| 
									
										
										
										
											2015-09-03 00:29:53 +01:00
										 |  |  |         show_id, season_id = re.match(self._VALID_URL, url).groups() | 
					
						
							| 
									
										
										
										
											2015-09-05 11:30:42 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-03 00:29:53 +01:00
										 |  |  |         data = {} | 
					
						
							|  |  |  |         if season_id: | 
					
						
							|  |  |  |             data['season'] = season_id | 
					
						
							| 
									
										
										
										
											2015-09-03 16:59:10 +01:00
										 |  |  |             show_id = smuggled_data.get('show_id') | 
					
						
							|  |  |  |             if show_id is None: | 
					
						
							| 
									
										
										
										
											2015-12-28 10:38:31 +01:00
										 |  |  |                 request = sanitized_Request( | 
					
						
							| 
									
										
										
										
											2015-09-03 16:59:10 +01:00
										 |  |  |                     'http://admin.mangomolo.com/analytics/index.php/plus/season_info?id=%s' % season_id, | 
					
						
							|  |  |  |                     headers={'Origin': 'http://www.dcndigital.ae'}) | 
					
						
							|  |  |  |                 season = self._download_json(request, season_id) | 
					
						
							|  |  |  |                 show_id = season['id'] | 
					
						
							| 
									
										
										
										
											2015-09-03 00:29:53 +01:00
										 |  |  |         data['show_id'] = show_id | 
					
						
							| 
									
										
										
										
											2015-12-28 10:38:31 +01:00
										 |  |  |         request = sanitized_Request( | 
					
						
							| 
									
										
										
										
											2015-09-03 00:29:53 +01:00
										 |  |  |             'http://admin.mangomolo.com/analytics/index.php/plus/show', | 
					
						
							|  |  |  |             compat_urllib_parse.urlencode(data), | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 'Origin': 'http://www.dcndigital.ae', | 
					
						
							|  |  |  |                 'Content-Type': 'application/x-www-form-urlencoded' | 
					
						
							| 
									
										
										
										
											2015-08-08 00:06:03 +06:00
										 |  |  |             }) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-09-03 00:29:53 +01:00
										 |  |  |         show = self._download_json(request, show_id) | 
					
						
							| 
									
										
										
										
											2015-10-31 15:40:11 +01:00
										 |  |  |         if not season_id: | 
					
						
							|  |  |  |             season_id = show['default_season'] | 
					
						
							|  |  |  |         for season in show['seasons']: | 
					
						
							|  |  |  |             if season['id'] == season_id: | 
					
						
							|  |  |  |                 title = season.get('title_en') or season['title_ar'] | 
					
						
							| 
									
										
										
										
											2015-08-08 00:06:03 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-31 15:40:11 +01:00
										 |  |  |                 entries = [] | 
					
						
							|  |  |  |                 for video in show['videos']: | 
					
						
							| 
									
										
										
										
											2016-01-10 07:45:41 +01:00
										 |  |  |                     video_id = compat_str(video['id']) | 
					
						
							| 
									
										
										
										
											2015-12-27 09:56:15 +01:00
										 |  |  |                     entries.append(self.url_result( | 
					
						
							| 
									
										
										
										
											2016-01-10 07:45:41 +01:00
										 |  |  |                         'http://www.dcndigital.ae/media/%s' % video_id, 'DCNVideo', video_id)) | 
					
						
							| 
									
										
										
										
											2015-08-08 00:06:03 +06:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-10-31 15:40:11 +01:00
										 |  |  |                 return self.playlist_result(entries, season_id, title) |