]> jfr.im git - yt-dlp.git/blame - youtube_dl/extractor/dcn.py
[people] Remove bogus comment
[yt-dlp.git] / youtube_dl / extractor / dcn.py
CommitLineData
cd6b555e 1# coding: utf-8
2from __future__ import unicode_literals
3
9f4921bf 4import re
8e2898ed 5import base64
9f4921bf 6
3af1fac7 7from .common import InfoExtractor
3fc088f8 8from ..compat import (
15707c7e 9 compat_urllib_parse_urlencode,
3fc088f8 10 compat_str,
11)
f94639fa
S
12from ..utils import (
13 int_or_none,
14 parse_iso8601,
5c2266df 15 sanitized_Request,
b477da20 16 smuggle_url,
17 unsmuggle_url,
6e6bc8da 18 urlencode_postdata,
f94639fa 19)
cd6b555e 20
3af1fac7 21
f94639fa 22class DCNIE(InfoExtractor):
9f4921bf 23 _VALID_URL = r'https?://(?:www\.)?dcndigital\.ae/(?:#/)?show/(?P<show_id>\d+)/[^/]+(?:/(?P<video_id>\d+)/(?P<season_id>\d+))?'
24
25 def _real_extract(self, url):
26 show_id, video_id, season_id = re.match(self._VALID_URL, url).groups()
9f4921bf 27 if video_id and int(video_id) > 0:
6afe044b 28 return self.url_result(
29 'http://www.dcndigital.ae/media/%s' % video_id, 'DCNVideo')
30 elif season_id and int(season_id) > 0:
31 return self.url_result(smuggle_url(
32 'http://www.dcndigital.ae/program/season/%s' % season_id,
33 {'show_id': show_id}), 'DCNSeason')
9f4921bf 34 else:
6afe044b 35 return self.url_result(
36 'http://www.dcndigital.ae/program/%s' % show_id, 'DCNSeason')
9f4921bf 37
38
6afe044b 39class DCNBaseIE(InfoExtractor):
40 def _extract_video_info(self, video_data, video_id, is_live):
41 title = video_data.get('title_en') or video_data['title_ar']
42 img = video_data.get('img')
43 thumbnail = 'http://admin.mangomolo.com/analytics/%s' % img if img else None
44 duration = int_or_none(video_data.get('duration'))
45 description = video_data.get('description_en') or video_data.get('description_ar')
46 timestamp = parse_iso8601(video_data.get('create_time'), ' ')
47
48 return {
49 'id': video_id,
50 'title': self._live_title(title) if is_live else title,
51 'description': description,
52 'thumbnail': thumbnail,
53 'duration': duration,
54 'timestamp': timestamp,
55 'is_live': is_live,
56 }
57
58 def _extract_video_formats(self, webpage, video_id, entry_protocol):
bca9bea1 59 formats = []
6afe044b 60 m3u8_url = self._html_search_regex(
bca9bea1 61 r'file\s*:\s*"([^"]+)', webpage, 'm3u8 url', fatal=False)
62 if m3u8_url:
7e5edcfd
S
63 formats.extend(self._extract_m3u8_formats(
64 m3u8_url, video_id, 'mp4', entry_protocol, m3u8_id='hls', fatal=None))
6afe044b 65
66 rtsp_url = self._search_regex(
67 r'<a[^>]+href="(rtsp://[^"]+)"', webpage, 'rtsp url', fatal=False)
68 if rtsp_url:
69 formats.append({
70 'url': rtsp_url,
71 'format_id': 'rtsp',
72 })
73
74 self._sort_formats(formats)
75 return formats
76
77
78class DCNVideoIE(DCNBaseIE):
b477da20 79 IE_NAME = 'dcn:video'
8e2898ed 80 _VALID_URL = r'https?://(?:www\.)?dcndigital\.ae/(?:#/)?(?:video/[^/]+|media|catchup/[^/]+/[^/]+)/(?P<id>\d+)'
3af1fac7 81 _TEST = {
9f4921bf 82 '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',
3af1fac7 83 'info_dict':
84 {
85 'id': '17375',
f94639fa 86 'ext': 'mp4',
3af1fac7 87 'title': 'رحلة العمر : الحلقة 1',
f94639fa 88 'description': 'md5:0156e935d870acb8ef0a66d24070c6d6',
f94639fa
S
89 'duration': 2041,
90 'timestamp': 1227504126,
91 'upload_date': '20081124',
cd6b555e 92 },
93 'params': {
94 # m3u8 download
95 'skip_download': True,
96 },
3af1fac7 97 }
98
99 def _real_extract(self, url):
100 video_id = self._match_id(url)
f94639fa 101
5c2266df 102 request = sanitized_Request(
f94639fa
S
103 'http://admin.mangomolo.com/analytics/index.php/plus/video?id=%s' % video_id,
104 headers={'Origin': 'http://www.dcndigital.ae'})
6afe044b 105 video_data = self._download_json(request, video_id)
106 info = self._extract_video_info(video_data, video_id, False)
f94639fa 107
3af1fac7 108 webpage = self._download_webpage(
9dd73ef4 109 'http://admin.mangomolo.com/analytics/index.php/customers/embed/video?' +
15707c7e 110 compat_urllib_parse_urlencode({
6afe044b 111 'id': video_data['id'],
112 'user_id': video_data['user_id'],
113 'signature': video_data['signature'],
f94639fa
S
114 'countries': 'Q0M=',
115 'filter': 'DENY',
116 }), video_id)
6afe044b 117 info['formats'] = self._extract_video_formats(webpage, video_id, 'm3u8_native')
118 return info
f94639fa 119
f94639fa 120
6afe044b 121class DCNLiveIE(DCNBaseIE):
8e2898ed 122 IE_NAME = 'dcn:live'
123 _VALID_URL = r'https?://(?:www\.)?dcndigital\.ae/(?:#/)?live/(?P<id>\d+)'
8e2898ed 124
125 def _real_extract(self, url):
126 channel_id = self._match_id(url)
127
974c1b2d 128 request = sanitized_Request(
8e2898ed 129 'http://admin.mangomolo.com/analytics/index.php/plus/getchanneldetails?channel_id=%s' % channel_id,
130 headers={'Origin': 'http://www.dcndigital.ae'})
131
6afe044b 132 channel_data = self._download_json(request, channel_id)
133 info = self._extract_video_info(channel_data, channel_id, True)
8e2898ed 134
135 webpage = self._download_webpage(
48637515 136 'http://admin.mangomolo.com/analytics/index.php/customers/embed/index?' +
15707c7e 137 compat_urllib_parse_urlencode({
6afe044b 138 'id': base64.b64encode(channel_data['user_id'].encode()).decode(),
139 'channelid': base64.b64encode(channel_data['id'].encode()).decode(),
140 'signature': channel_data['signature'],
8e2898ed 141 'countries': 'Q0M=',
142 'filter': 'DENY',
143 }), channel_id)
6afe044b 144 info['formats'] = self._extract_video_formats(webpage, channel_id, 'm3u8')
145 return info
8e2898ed 146
147
b477da20 148class DCNSeasonIE(InfoExtractor):
149 IE_NAME = 'dcn:season'
9f4921bf 150 _VALID_URL = r'https?://(?:www\.)?dcndigital\.ae/(?:#/)?program/(?:(?P<show_id>\d+)|season/(?P<season_id>\d+))'
151 _TEST = {
152 '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',
153 'info_dict':
154 {
b477da20 155 'id': '7910',
9f4921bf 156 'title': 'محاضرات الشيخ الشعراوي',
9f4921bf 157 },
158 'playlist_mincount': 27,
159 }
160
161 def _real_extract(self, url):
b477da20 162 url, smuggled_data = unsmuggle_url(url, {})
9f4921bf 163 show_id, season_id = re.match(self._VALID_URL, url).groups()
48637515 164
9f4921bf 165 data = {}
166 if season_id:
9f4921bf 167 data['season'] = season_id
b477da20 168 show_id = smuggled_data.get('show_id')
169 if show_id is None:
974c1b2d 170 request = sanitized_Request(
b477da20 171 'http://admin.mangomolo.com/analytics/index.php/plus/season_info?id=%s' % season_id,
172 headers={'Origin': 'http://www.dcndigital.ae'})
173 season = self._download_json(request, season_id)
174 show_id = season['id']
9f4921bf 175 data['show_id'] = show_id
974c1b2d 176 request = sanitized_Request(
9f4921bf 177 'http://admin.mangomolo.com/analytics/index.php/plus/show',
6e6bc8da 178 urlencode_postdata(data),
9f4921bf 179 {
180 'Origin': 'http://www.dcndigital.ae',
181 'Content-Type': 'application/x-www-form-urlencoded'
f94639fa
S
182 })
183
9f4921bf 184 show = self._download_json(request, show_id)
50b9dd73 185 if not season_id:
186 season_id = show['default_season']
187 for season in show['seasons']:
188 if season['id'] == season_id:
189 title = season.get('title_en') or season['title_ar']
f94639fa 190
50b9dd73 191 entries = []
192 for video in show['videos']:
3fc088f8 193 video_id = compat_str(video['id'])
6afe044b 194 entries.append(self.url_result(
3fc088f8 195 'http://www.dcndigital.ae/media/%s' % video_id, 'DCNVideo', video_id))
f94639fa 196
50b9dd73 197 return self.playlist_result(entries, season_id, title)