daisuki.py 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. from __future__ import unicode_literals
  2. import base64
  3. import json
  4. import random
  5. import re
  6. from .common import InfoExtractor
  7. from ..aes import (
  8. aes_cbc_decrypt,
  9. aes_cbc_encrypt,
  10. )
  11. from ..utils import (
  12. bytes_to_intlist,
  13. bytes_to_long,
  14. clean_html,
  15. ExtractorError,
  16. intlist_to_bytes,
  17. get_element_by_id,
  18. js_to_json,
  19. int_or_none,
  20. long_to_bytes,
  21. pkcs1pad,
  22. remove_end,
  23. )
  24. class DaisukiIE(InfoExtractor):
  25. _VALID_URL = r'https?://(?:www\.)?daisuki\.net/[^/]+/[^/]+/[^/]+/watch\.[^.]+\.(?P<id>\d+)\.html'
  26. _TEST = {
  27. 'url': 'http://www.daisuki.net/tw/en/anime/watch.TheIdolMasterCG.11213.html',
  28. 'info_dict': {
  29. 'id': '11213',
  30. 'ext': 'mp4',
  31. 'title': '#01 Who is in the pumpkin carriage? - THE IDOLM@STER CINDERELLA GIRLS',
  32. 'creator': 'BANDAI NAMCO Entertainment',
  33. },
  34. 'params': {
  35. 'skip_download': True, # AES-encrypted HLS stream
  36. },
  37. }
  38. # The public key in PEM format can be found in clientlibs_anime_watch.min.js
  39. _RSA_KEY = (0xc5524c25e8e14b366b3754940beeb6f96cb7e2feef0b932c7659a0c5c3bf173d602464c2df73d693b513ae06ff1be8f367529ab30bf969c5640522181f2a0c51ea546ae120d3d8d908595e4eff765b389cde080a1ef7f1bbfb07411cc568db73b7f521cedf270cbfbe0ddbc29b1ac9d0f2d8f4359098caffee6d07915020077d, 65537)
  40. def _real_extract(self, url):
  41. video_id = self._match_id(url)
  42. webpage = self._download_webpage(url, video_id)
  43. flashvars = self._parse_json(self._search_regex(
  44. r'(?s)var\s+flashvars\s*=\s*({.+?});', webpage, 'flashvars'),
  45. video_id, transform_source=js_to_json)
  46. iv = [0] * 16
  47. data = {}
  48. for key in ('device_cd', 'mv_id', 'ss1_prm', 'ss2_prm', 'ss3_prm', 'ss_id'):
  49. data[key] = flashvars.get(key, '')
  50. encrypted_rtn = None
  51. # Some AES keys are rejected. Try it with different AES keys
  52. for idx in range(5):
  53. aes_key = [random.randint(0, 254) for _ in range(32)]
  54. padded_aeskey = intlist_to_bytes(pkcs1pad(aes_key, 128))
  55. n, e = self._RSA_KEY
  56. encrypted_aeskey = long_to_bytes(pow(bytes_to_long(padded_aeskey), e, n))
  57. init_data = self._download_json('http://www.daisuki.net/bin/bgn/init', video_id, query={
  58. 's': flashvars.get('s', ''),
  59. 'c': flashvars.get('ss3_prm', ''),
  60. 'e': url,
  61. 'd': base64.b64encode(intlist_to_bytes(aes_cbc_encrypt(
  62. bytes_to_intlist(json.dumps(data)),
  63. aes_key, iv))).decode('ascii'),
  64. 'a': base64.b64encode(encrypted_aeskey).decode('ascii'),
  65. }, note='Downloading JSON metadata' + (' (try #%d)' % (idx + 1) if idx > 0 else ''))
  66. if 'rtn' in init_data:
  67. encrypted_rtn = init_data['rtn']
  68. break
  69. self._sleep(5, video_id)
  70. if encrypted_rtn is None:
  71. raise ExtractorError('Failed to fetch init data')
  72. rtn = self._parse_json(
  73. intlist_to_bytes(aes_cbc_decrypt(bytes_to_intlist(
  74. base64.b64decode(encrypted_rtn)),
  75. aes_key, iv)).decode('utf-8').rstrip('\0'),
  76. video_id)
  77. formats = self._extract_m3u8_formats(
  78. rtn['play_url'], video_id, ext='mp4', entry_protocol='m3u8_native')
  79. title = remove_end(self._og_search_title(webpage), ' - DAISUKI')
  80. creator = self._html_search_regex(
  81. r'Creator\s*:\s*([^<]+)', webpage, 'creator', fatal=False)
  82. return {
  83. 'id': video_id,
  84. 'title': title,
  85. 'formats': formats,
  86. 'creator': creator,
  87. }
  88. class DaisukiPlaylistIE(InfoExtractor):
  89. _VALID_URL = r'https?://(?:www\.)daisuki\.net/[^/]+/[^/]+/[^/]+/detail\.(?P<id>[a-zA-Z0-9]+)\.html'
  90. _TEST = {
  91. 'url': 'http://www.daisuki.net/tw/en/anime/detail.TheIdolMasterCG.html',
  92. 'info_dict': {
  93. 'id': 'TheIdolMasterCG',
  94. 'title': 'THE IDOLM@STER CINDERELLA GIRLS',
  95. 'description': 'md5:0f2c028a9339f7a2c7fbf839edc5c5d8',
  96. },
  97. 'playlist_count': 26,
  98. }
  99. def _real_extract(self, url):
  100. playlist_id = self._match_id(url)
  101. webpage = self._download_webpage(url, playlist_id)
  102. episode_pattern = r'''(?sx)
  103. <img[^>]+delay="[^"]+/(\d+)/movie\.jpg".+?
  104. <p[^>]+class=".*?\bepisodeNumber\b.*?">(?:<a[^>]+>)?([^<]+)'''
  105. entries = [{
  106. '_type': 'url_transparent',
  107. 'url': url.replace('detail', 'watch').replace('.html', '.' + movie_id + '.html'),
  108. 'episode_id': episode_id,
  109. 'episode_number': int_or_none(episode_id),
  110. } for movie_id, episode_id in re.findall(episode_pattern, webpage)]
  111. playlist_title = remove_end(
  112. self._og_search_title(webpage, fatal=False), ' - Anime - DAISUKI')
  113. playlist_description = clean_html(get_element_by_id('synopsisTxt', webpage))
  114. return self.playlist_result(entries, playlist_id, playlist_title, playlist_description)