# coding: utf-8 from __future__ import unicode_literals import re from .turner import TurnerBaseIE class CartoonNetworkIE(TurnerBaseIE): _VALID_URL = r'https?://(?:www\.)?cartoonnetwork\.com/video/(?:[^/]+/)+(?P[^/?#]+)-(?:clip|episode)\.html' _TEST = { 'url': 'https://www.cartoonnetwork.com/video/steven-universe/garnet-gets-a-job-clip.html', 'info_dict': { 'id': '96bc363957a17bc03d16feb86b8391a321f7e670', 'ext': 'mp4', 'title': 'Garnet Gets a Job', 'description': 'Garnet and Steven explore the most unlikely timelines in Beach City.', }, 'params': { # m3u8 download 'skip_download': True, }, } def _real_extract(self, url): display_id = self._match_id(url) webpage = self._download_webpage(url, display_id) video_id = self._html_search_regex(r'[^>]+.mediaId = "(.+?)"', webpage, 'video_id') title = self._html_search_regex(r'[^>]+.episodeTitle = "(.+?)"', webpage, 'title') auth = self._html_search_regex(r'[^>]+currentVideo.authType = "(.+?)"', webpage, 'authType') if "auth" in auth: auth_required = '' if "unauth" in auth: auth_required = 'true' #Auth needs to be first due to Auth being in unauth. :/ #print(auth_required) videoType = self._html_search_regex(r'[^>]+.videoType = "(.+?)"', webpage, 'videoType') if 'short' in videoType: description = '' else: description = self._html_search_regex(r'id="[^>]+description[^>]*>(.+?)', webpage, 'description') info = self._extract_ngtv_info( video_id, {'networkId': 'cartoonnetwork'}, { 'url': url, 'site_name': 'CartoonNetwork', 'auth_required': auth_required, }, ) info.update({ 'id': video_id, 'title': title, 'description': description, }) return info