]> Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/shahid.py
d95ea06be56844deb3c34276fb1c4e7e18d64173
[youtubedl] / youtube_dl / extractor / shahid.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 from .common import InfoExtractor
5 from ..compat import compat_urllib_parse_urlencode
6 from ..utils import (
7 ExtractorError,
8 int_or_none,
9 parse_iso8601,
10 )
11
12
13 class ShahidIE(InfoExtractor):
14 _VALID_URL = r'https?://shahid\.mbc\.net/ar/episode/(?P<id>\d+)/?'
15 _TESTS = [{
16 'url': 'https://shahid.mbc.net/ar/episode/90574/%D8%A7%D9%84%D9%85%D9%84%D9%83-%D8%B9%D8%A8%D8%AF%D8%A7%D9%84%D9%84%D9%87-%D8%A7%D9%84%D8%A5%D9%86%D8%B3%D8%A7%D9%86-%D8%A7%D9%84%D9%85%D9%88%D8%B3%D9%85-1-%D9%83%D9%84%D9%8A%D8%A8-3.html',
17 'info_dict': {
18 'id': '90574',
19 'ext': 'mp4',
20 'title': 'الملك عبدالله الإنسان الموسم 1 كليب 3',
21 'description': 'الفيلم الوثائقي - الملك عبد الله الإنسان',
22 'duration': 2972,
23 'timestamp': 1422057420,
24 'upload_date': '20150123',
25 },
26 'params': {
27 # m3u8 download
28 'skip_download': True,
29 }
30 }, {
31 # shahid plus subscriber only
32 'url': 'https://shahid.mbc.net/ar/episode/90511/%D9%85%D8%B1%D8%A7%D9%8A%D8%A7-2011-%D8%A7%D9%84%D9%85%D9%88%D8%B3%D9%85-1-%D8%A7%D9%84%D8%AD%D9%84%D9%82%D8%A9-1.html',
33 'only_matching': True
34 }]
35
36 def _handle_error(self, response):
37 if not isinstance(response, dict):
38 return
39 error = response.get('error')
40 if error:
41 raise ExtractorError(
42 '%s returned error: %s' % (self.IE_NAME, '\n'.join(error.values())),
43 expected=True)
44
45 def _download_json(self, url, video_id, note='Downloading JSON metadata'):
46 response = super(ShahidIE, self)._download_json(url, video_id, note)['data']
47 self._handle_error(response)
48 return response
49
50 def _real_extract(self, url):
51 video_id = self._match_id(url)
52
53 webpage = self._download_webpage(url, video_id)
54
55 api_vars = {
56 'id': video_id,
57 'type': 'player',
58 'url': 'http://api.shahid.net/api/v1_1',
59 'playerType': 'episode',
60 }
61
62 flashvars = self._search_regex(
63 r'var\s+flashvars\s*=\s*({[^}]+})', webpage, 'flashvars', default=None)
64 if flashvars:
65 for key in api_vars.keys():
66 value = self._search_regex(
67 r'\b%s\s*:\s*(?P<q>["\'])(?P<value>.+?)(?P=q)' % key,
68 flashvars, 'type', default=None, group='value')
69 if value:
70 api_vars[key] = value
71
72 player = self._download_json(
73 'https://shahid.mbc.net/arContent/getPlayerContent-param-.id-%s.type-%s.html'
74 % (video_id, api_vars['type']), video_id, 'Downloading player JSON')
75
76 if player.get('drm'):
77 raise ExtractorError('This video is DRM protected.', expected=True)
78
79 formats = self._extract_m3u8_formats(player['url'], video_id, 'mp4')
80 self._sort_formats(formats)
81
82 video = self._download_json(
83 '%s/%s/%s?%s' % (
84 api_vars['url'], api_vars['playerType'], api_vars['id'],
85 compat_urllib_parse_urlencode({
86 'apiKey': 'sh@hid0nlin3',
87 'hash': 'b2wMCTHpSmyxGqQjJFOycRmLSex+BpTK/ooxy6vHaqs=',
88 })),
89 video_id, 'Downloading video JSON')
90
91 video = video[api_vars['playerType']]
92
93 title = video['title']
94 description = video.get('description')
95 thumbnail = video.get('thumbnailUrl')
96 duration = int_or_none(video.get('duration'))
97 timestamp = parse_iso8601(video.get('referenceDate'))
98 categories = [
99 category['name']
100 for category in video.get('genres', []) if 'name' in category]
101
102 return {
103 'id': video_id,
104 'title': title,
105 'description': description,
106 'thumbnail': thumbnail,
107 'duration': duration,
108 'timestamp': timestamp,
109 'categories': categories,
110 'formats': formats,
111 }