dcn.py 7.4 KB

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