youtube-dl/youtube_dl/extractor/toutv.py

83 lines
3.0 KiB
Python
Raw Normal View History

2013-11-20 05:13:19 +00:00
# coding: utf-8
2014-02-05 12:02:03 +00:00
from __future__ import unicode_literals
import json
2017-12-02 19:22:17 +00:00
from .radiocanada import RadioCanadaIE
2019-03-06 08:28:14 +00:00
from ..compat import compat_HTTPError
from ..utils import (
2019-03-06 08:28:14 +00:00
ExtractorError,
int_or_none,
merge_dicts,
)
2013-11-20 05:13:19 +00:00
class TouTvIE(RadioCanadaIE):
_NETRC_MACHINE = 'toutv'
2014-02-05 12:02:03 +00:00
IE_NAME = 'tou.tv'
_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
_TESTS = [{
'url': 'http://ici.tou.tv/garfield-tout-court/S2015E17',
2014-02-05 12:02:03 +00:00
'info_dict': {
'id': '122017',
2015-02-01 14:01:33 +00:00
'ext': 'mp4',
'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': {
# m3u8 download
'skip_download': True,
2013-11-20 05:13:19 +00:00
},
'skip': '404 Not Found',
}, {
'url': 'http://ici.tou.tv/hackers',
'only_matching': True,
}, {
'url': 'https://ici.tou.tv/l-age-adulte/S01C501',
'only_matching': True,
}]
_CLIENT_KEY = '4dd36440-09d5-4468-8923-b6d91174ad36'
2013-11-20 05:13:19 +00:00
def _real_initialize(self):
email, password = self._get_login_info()
if email is None:
return
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',
'Email': email,
'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
self._claims = self._call_api('validation/v2/getClaims')['claims']
2013-11-20 05:13:19 +00:00
def _real_extract(self, url):
path = self._match_id(url)
metadata = self._download_json('http://ici.tou.tv/presentation/%s' % path, path)
# 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).
if metadata.get('IsDrm'):
self.report_warning('This video is probably DRM protected.', path)
video_id = metadata['IdMedia']
details = metadata['Details']
2013-11-20 05:13:19 +00:00
return merge_dicts({
2013-11-20 05:13:19 +00:00
'id': video_id,
'title': details.get('OriginalTitle'),
'thumbnail': details.get('ImageUrl'),
'duration': int_or_none(details.get('LengthInSeconds')),
}, self._extract_info(metadata.get('AppCode', 'toutv'), video_id))