[daisuki] add support for motto.daisuki.com(fixes #14681)
This commit is contained in:
		
							parent
							
								
									a3474aa59e
								
							
						
					
					
						commit
						5f699251e9
					
				
					 2 changed files with 41 additions and 47 deletions
				
			
		| 
						 | 
					@ -13,33 +13,30 @@ from ..aes import (
 | 
				
			||||||
from ..utils import (
 | 
					from ..utils import (
 | 
				
			||||||
    bytes_to_intlist,
 | 
					    bytes_to_intlist,
 | 
				
			||||||
    bytes_to_long,
 | 
					    bytes_to_long,
 | 
				
			||||||
    clean_html,
 | 
					    extract_attributes,
 | 
				
			||||||
    ExtractorError,
 | 
					    ExtractorError,
 | 
				
			||||||
    intlist_to_bytes,
 | 
					    intlist_to_bytes,
 | 
				
			||||||
    get_element_by_id,
 | 
					 | 
				
			||||||
    js_to_json,
 | 
					    js_to_json,
 | 
				
			||||||
    int_or_none,
 | 
					    int_or_none,
 | 
				
			||||||
    long_to_bytes,
 | 
					    long_to_bytes,
 | 
				
			||||||
    pkcs1pad,
 | 
					    pkcs1pad,
 | 
				
			||||||
    remove_end,
 | 
					 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class DaisukiIE(InfoExtractor):
 | 
					class DaisukiMottoIE(InfoExtractor):
 | 
				
			||||||
    _VALID_URL = r'https?://(?:www\.)?daisuki\.net/[^/]+/[^/]+/[^/]+/watch\.[^.]+\.(?P<id>\d+)\.html'
 | 
					    _VALID_URL = r'https?://motto\.daisuki\.net/framewatch/embed/[^/]+/(?P<id>[0-9a-zA-Z]{3})'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    _TEST = {
 | 
					    _TEST = {
 | 
				
			||||||
        'url': 'http://www.daisuki.net/tw/en/anime/watch.TheIdolMasterCG.11213.html',
 | 
					        'url': 'http://motto.daisuki.net/framewatch/embed/embedDRAGONBALLSUPERUniverseSurvivalsaga/V2e/760/428',
 | 
				
			||||||
        'info_dict': {
 | 
					        'info_dict': {
 | 
				
			||||||
            'id': '11213',
 | 
					            'id': 'V2e',
 | 
				
			||||||
            'ext': 'mp4',
 | 
					            'ext': 'mp4',
 | 
				
			||||||
            'title': '#01 Who is in the pumpkin carriage? - THE IDOLM@STER CINDERELLA GIRLS',
 | 
					            'title': '#117 SHOWDOWN OF LOVE! ANDROIDS VS UNIVERSE 2!!',
 | 
				
			||||||
            'subtitles': {
 | 
					            'subtitles': {
 | 
				
			||||||
                'mul': [{
 | 
					                'mul': [{
 | 
				
			||||||
                    'ext': 'ttml',
 | 
					                    'ext': 'ttml',
 | 
				
			||||||
                }],
 | 
					                }],
 | 
				
			||||||
            },
 | 
					            },
 | 
				
			||||||
            'creator': 'BANDAI NAMCO Entertainment',
 | 
					 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
        'params': {
 | 
					        'params': {
 | 
				
			||||||
            'skip_download': True,  # AES-encrypted HLS stream
 | 
					            'skip_download': True,  # AES-encrypted HLS stream
 | 
				
			||||||
| 
						 | 
					@ -73,15 +70,17 @@ class DaisukiIE(InfoExtractor):
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            n, e = self._RSA_KEY
 | 
					            n, e = self._RSA_KEY
 | 
				
			||||||
            encrypted_aeskey = long_to_bytes(pow(bytes_to_long(padded_aeskey), e, n))
 | 
					            encrypted_aeskey = long_to_bytes(pow(bytes_to_long(padded_aeskey), e, n))
 | 
				
			||||||
            init_data = self._download_json('http://www.daisuki.net/bin/bgn/init', video_id, query={
 | 
					            init_data = self._download_json(
 | 
				
			||||||
                's': flashvars.get('s', ''),
 | 
					                'http://motto.daisuki.net/fastAPI/bgn/init/',
 | 
				
			||||||
                'c': flashvars.get('ss3_prm', ''),
 | 
					                video_id, query={
 | 
				
			||||||
                'e': url,
 | 
					                    's': flashvars.get('s', ''),
 | 
				
			||||||
                'd': base64.b64encode(intlist_to_bytes(aes_cbc_encrypt(
 | 
					                    'c': flashvars.get('ss3_prm', ''),
 | 
				
			||||||
                    bytes_to_intlist(json.dumps(data)),
 | 
					                    'e': url,
 | 
				
			||||||
                    aes_key, iv))).decode('ascii'),
 | 
					                    'd': base64.b64encode(intlist_to_bytes(aes_cbc_encrypt(
 | 
				
			||||||
                'a': base64.b64encode(encrypted_aeskey).decode('ascii'),
 | 
					                        bytes_to_intlist(json.dumps(data)),
 | 
				
			||||||
            }, note='Downloading JSON metadata' + (' (try #%d)' % (idx + 1) if idx > 0 else ''))
 | 
					                        aes_key, iv))).decode('ascii'),
 | 
				
			||||||
 | 
					                    'a': base64.b64encode(encrypted_aeskey).decode('ascii'),
 | 
				
			||||||
 | 
					                }, note='Downloading JSON metadata' + (' (try #%d)' % (idx + 1) if idx > 0 else ''))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
            if 'rtn' in init_data:
 | 
					            if 'rtn' in init_data:
 | 
				
			||||||
                encrypted_rtn = init_data['rtn']
 | 
					                encrypted_rtn = init_data['rtn']
 | 
				
			||||||
| 
						 | 
					@ -98,14 +97,11 @@ class DaisukiIE(InfoExtractor):
 | 
				
			||||||
                aes_key, iv)).decode('utf-8').rstrip('\0'),
 | 
					                aes_key, iv)).decode('utf-8').rstrip('\0'),
 | 
				
			||||||
            video_id)
 | 
					            video_id)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        title = rtn['title_str']
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        formats = self._extract_m3u8_formats(
 | 
					        formats = self._extract_m3u8_formats(
 | 
				
			||||||
            rtn['play_url'], video_id, ext='mp4', entry_protocol='m3u8_native')
 | 
					            rtn['play_url'], video_id, ext='mp4', entry_protocol='m3u8_native')
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        title = remove_end(self._og_search_title(webpage), ' - DAISUKI')
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        creator = self._html_search_regex(
 | 
					 | 
				
			||||||
            r'Creator\s*:\s*([^<]+)', webpage, 'creator', fatal=False)
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        subtitles = {}
 | 
					        subtitles = {}
 | 
				
			||||||
        caption_url = rtn.get('caption_url')
 | 
					        caption_url = rtn.get('caption_url')
 | 
				
			||||||
        if caption_url:
 | 
					        if caption_url:
 | 
				
			||||||
| 
						 | 
					@ -120,21 +116,18 @@ class DaisukiIE(InfoExtractor):
 | 
				
			||||||
            'title': title,
 | 
					            'title': title,
 | 
				
			||||||
            'formats': formats,
 | 
					            'formats': formats,
 | 
				
			||||||
            'subtitles': subtitles,
 | 
					            'subtitles': subtitles,
 | 
				
			||||||
            'creator': creator,
 | 
					 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class DaisukiPlaylistIE(InfoExtractor):
 | 
					class DaisukiMottoPlaylistIE(InfoExtractor):
 | 
				
			||||||
    _VALID_URL = r'https?://(?:www\.)daisuki\.net/[^/]+/[^/]+/[^/]+/detail\.(?P<id>[a-zA-Z0-9]+)\.html'
 | 
					    _VALID_URL = r'https?://motto\.daisuki\.net/(?P<id>information)/'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    _TEST = {
 | 
					    _TEST = {
 | 
				
			||||||
        'url': 'http://www.daisuki.net/tw/en/anime/detail.TheIdolMasterCG.html',
 | 
					        'url': 'http://motto.daisuki.net/information/',
 | 
				
			||||||
        'info_dict': {
 | 
					        'info_dict': {
 | 
				
			||||||
            'id': 'TheIdolMasterCG',
 | 
					            'title': 'DRAGON BALL SUPER',
 | 
				
			||||||
            'title': 'THE IDOLM@STER CINDERELLA GIRLS',
 | 
					 | 
				
			||||||
            'description': 'md5:0f2c028a9339f7a2c7fbf839edc5c5d8',
 | 
					 | 
				
			||||||
        },
 | 
					        },
 | 
				
			||||||
        'playlist_count': 26,
 | 
					        'playlist_mincount': 117,
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    def _real_extract(self, url):
 | 
					    def _real_extract(self, url):
 | 
				
			||||||
| 
						 | 
					@ -142,18 +135,19 @@ class DaisukiPlaylistIE(InfoExtractor):
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        webpage = self._download_webpage(url, playlist_id)
 | 
					        webpage = self._download_webpage(url, playlist_id)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        episode_pattern = r'''(?sx)
 | 
					        entries = []
 | 
				
			||||||
            <img[^>]+delay="[^"]+/(\d+)/movie\.jpg".+?
 | 
					        for li in re.findall(r'(<li[^>]+?data-product_id="[a-zA-Z0-9]{3}"[^>]+>)', webpage):
 | 
				
			||||||
            <p[^>]+class=".*?\bepisodeNumber\b.*?">(?:<a[^>]+>)?([^<]+)'''
 | 
					            attr = extract_attributes(li)
 | 
				
			||||||
        entries = [{
 | 
					            ad_id = attr.get('data-ad_id')
 | 
				
			||||||
            '_type': 'url_transparent',
 | 
					            product_id = attr.get('data-product_id')
 | 
				
			||||||
            'url': url.replace('detail', 'watch').replace('.html', '.' + movie_id + '.html'),
 | 
					            if ad_id and product_id:
 | 
				
			||||||
            'episode_id': episode_id,
 | 
					                episode_id = attr.get('data-chapter')
 | 
				
			||||||
            'episode_number': int_or_none(episode_id),
 | 
					                entries.append({
 | 
				
			||||||
        } for movie_id, episode_id in re.findall(episode_pattern, webpage)]
 | 
					                    '_type': 'url_transparent',
 | 
				
			||||||
 | 
					                    'url': 'http://motto.daisuki.net/framewatch/embed/%s/%s/760/428' % (ad_id, product_id),
 | 
				
			||||||
 | 
					                    'episode_id': episode_id,
 | 
				
			||||||
 | 
					                    'episode_number': int_or_none(episode_id),
 | 
				
			||||||
 | 
					                    'ie_key': 'DaisukiMotto',
 | 
				
			||||||
 | 
					                })
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        playlist_title = remove_end(
 | 
					        return self.playlist_result(entries, playlist_title='DRAGON BALL SUPER')
 | 
				
			||||||
            self._og_search_title(webpage, fatal=False), ' - Anime - DAISUKI')
 | 
					 | 
				
			||||||
        playlist_description = clean_html(get_element_by_id('synopsisTxt', webpage))
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
        return self.playlist_result(entries, playlist_id, playlist_title, playlist_description)
 | 
					 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -246,8 +246,8 @@ from .dailymotion import (
 | 
				
			||||||
    DailymotionCloudIE,
 | 
					    DailymotionCloudIE,
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
from .daisuki import (
 | 
					from .daisuki import (
 | 
				
			||||||
    DaisukiIE,
 | 
					    DaisukiMottoIE,
 | 
				
			||||||
    DaisukiPlaylistIE,
 | 
					    DaisukiMottoPlaylistIE,
 | 
				
			||||||
)
 | 
					)
 | 
				
			||||||
from .daum import (
 | 
					from .daum import (
 | 
				
			||||||
    DaumIE,
 | 
					    DaumIE,
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue