2019-03-06 08:20:27 +00:00
|
|
|
import json
|
2017-12-02 19:22:17 +00:00
|
|
|
|
2019-02-06 12:59:12 +00:00
|
|
|
from .radiocanada import RadioCanadaIE
|
2019-03-06 08:28:14 +00:00
|
|
|
from ..compat import compat_HTTPError
|
2016-09-16 16:36:22 +00:00
|
|
|
from ..utils import (
|
2019-03-06 08:28:14 +00:00
|
|
|
ExtractorError,
|
2016-09-16 16:36:22 +00:00
|
|
|
int_or_none,
|
2019-02-06 12:59:12 +00:00
|
|
|
merge_dicts,
|
2016-09-16 16:36:22 +00:00
|
|
|
)
|
2013-11-20 05:13:19 +00:00
|
|
|
|
|
|
|
|
2022-11-16 00:57:43 +00:00
|
|
|
class TouTvIE(RadioCanadaIE): # XXX: Do not subclass from concrete IE
|
2016-09-16 16:36:22 +00:00
|
|
|
_NETRC_MACHINE = 'toutv'
|
2014-02-05 12:02:03 +00:00
|
|
|
IE_NAME = 'tou.tv'
|
2017-12-12 10:11:44 +00:00
|
|
|
_VALID_URL = r'https?://ici\.tou\.tv/(?P<id>[a-zA-Z0-9_-]+(?:/S[0-9]+[EC][0-9]+)?)'
|
2013-11-20 05:13:19 +00:00
|
|
|
|
2016-11-04 20:24:42 +00:00
|
|
|
_TESTS = [{
|
2016-05-24 15:06:02 +00:00
|
|
|
'url': 'http://ici.tou.tv/garfield-tout-court/S2015E17',
|
2014-02-05 12:02:03 +00:00
|
|
|
'info_dict': {
|
2016-05-24 15:06:02 +00:00
|
|
|
'id': '122017',
|
2015-02-01 14:01:33 +00:00
|
|
|
'ext': 'mp4',
|
2016-05-24 15:06:02 +00:00
|
|
|
'title': 'Saison 2015 Épisode 17',
|
|
|
|
'description': 'La photo de famille 2',
|
|
|
|
'upload_date': '20100717',
|
2013-11-20 05:13:19 +00:00
|
|
|
},
|
2014-02-05 12:02:03 +00:00
|
|
|
'params': {
|
2016-05-24 15:06:02 +00:00
|
|
|
# m3u8 download
|
|
|
|
'skip_download': True,
|
2013-11-20 05:13:19 +00:00
|
|
|
},
|
2016-09-16 16:36:22 +00:00
|
|
|
'skip': '404 Not Found',
|
2016-11-04 20:24:42 +00:00
|
|
|
}, {
|
|
|
|
'url': 'http://ici.tou.tv/hackers',
|
|
|
|
'only_matching': True,
|
2017-12-12 10:11:44 +00:00
|
|
|
}, {
|
|
|
|
'url': 'https://ici.tou.tv/l-age-adulte/S01C501',
|
|
|
|
'only_matching': True,
|
2016-11-04 20:24:42 +00:00
|
|
|
}]
|
2019-06-12 20:41:46 +00:00
|
|
|
_CLIENT_KEY = '90505c8d-9c34-4f34-8da1-3a85bdc6d4f4'
|
2013-11-20 05:13:19 +00:00
|
|
|
|
2022-03-18 20:53:33 +00:00
|
|
|
def _perform_login(self, username, password):
|
2019-03-06 08:28:14 +00:00
|
|
|
try:
|
|
|
|
self._access_token = self._download_json(
|
|
|
|
'https://services.radio-canada.ca/toutv/profiling/accounts/login',
|
|
|
|
None, 'Logging in', data=json.dumps({
|
|
|
|
'ClientId': self._CLIENT_KEY,
|
|
|
|
'ClientSecret': '34026772-244b-49b6-8b06-317b30ac9a20',
|
2022-03-18 20:53:33 +00:00
|
|
|
'Email': username,
|
2019-03-06 08:28:14 +00:00
|
|
|
'Password': password,
|
|
|
|
'Scope': 'id.write media-validation.read',
|
|
|
|
}).encode(), headers={
|
|
|
|
'Authorization': 'client-key ' + self._CLIENT_KEY,
|
|
|
|
'Content-Type': 'application/json;charset=utf-8',
|
|
|
|
})['access_token']
|
|
|
|
except ExtractorError as e:
|
|
|
|
if isinstance(e.cause, compat_HTTPError) and e.cause.code == 401:
|
|
|
|
error = self._parse_json(e.cause.read().decode(), None)['Message']
|
|
|
|
raise ExtractorError(error, expected=True)
|
|
|
|
raise
|
2019-02-06 12:59:12 +00:00
|
|
|
self._claims = self._call_api('validation/v2/getClaims')['claims']
|
2016-09-16 16:36:22 +00:00
|
|
|
|
2013-11-20 05:13:19 +00:00
|
|
|
def _real_extract(self, url):
|
2016-05-24 15:06:02 +00:00
|
|
|
path = self._match_id(url)
|
2019-04-23 23:28:00 +00:00
|
|
|
metadata = self._download_json(
|
|
|
|
'https://services.radio-canada.ca/toutv/presentation/%s' % path, path, query={
|
|
|
|
'client_key': self._CLIENT_KEY,
|
|
|
|
'device': 'web',
|
|
|
|
'version': 4,
|
|
|
|
})
|
2017-08-23 15:28:09 +00:00
|
|
|
# IsDrm does not necessarily mean the video is DRM protected (see
|
2019-03-09 12:14:41 +00:00
|
|
|
# https://github.com/ytdl-org/youtube-dl/issues/13994).
|
2021-05-17 12:23:08 +00:00
|
|
|
if not self.get_param('allow_unplayable_formats') and metadata.get('IsDrm'):
|
2017-08-23 15:28:09 +00:00
|
|
|
self.report_warning('This video is probably DRM protected.', path)
|
2016-05-24 15:06:02 +00:00
|
|
|
video_id = metadata['IdMedia']
|
|
|
|
details = metadata['Details']
|
2013-11-20 05:13:19 +00:00
|
|
|
|
2019-02-06 12:59:12 +00:00
|
|
|
return merge_dicts({
|
2013-11-20 05:13:19 +00:00
|
|
|
'id': video_id,
|
2019-02-06 12:59:12 +00:00
|
|
|
'title': details.get('OriginalTitle'),
|
2019-04-23 23:28:00 +00:00
|
|
|
'description': details.get('Description'),
|
2016-05-24 15:06:02 +00:00
|
|
|
'thumbnail': details.get('ImageUrl'),
|
|
|
|
'duration': int_or_none(details.get('LengthInSeconds')),
|
2019-04-23 23:28:00 +00:00
|
|
|
'series': metadata.get('ProgramTitle'),
|
|
|
|
'season_number': int_or_none(metadata.get('SeasonNumber')),
|
|
|
|
'season': metadata.get('SeasonTitle'),
|
|
|
|
'episode_number': int_or_none(metadata.get('EpisodeNumber')),
|
|
|
|
'episode': metadata.get('EpisodeTitle'),
|
2019-02-06 12:59:12 +00:00
|
|
|
}, self._extract_info(metadata.get('AppCode', 'toutv'), video_id))
|