feat: implement resource index decryption

- Add `cipher` utility for resource index decryption/encryption
- Automatically decrypt `index_initial.json` and `index_main.json` during archiving
- pages: Update `ResourcesTab` to display links to decrypted versions of index files
- Update README to reflect that some raw data is now decrypted
This commit is contained in:
daydreamer-json
2026-03-30 17:21:08 +09:00
parent 75899425a1
commit 80dbeeb545
5 changed files with 75 additions and 5 deletions

View File

@@ -5,6 +5,7 @@ import PQueue from 'p-queue';
import semver from 'semver';
import apiUtils from '../utils/api/index.js';
import argvUtils from '../utils/argv.js';
import cipher from '../utils/cipher.js';
import appConfig from '../utils/config.js';
import logger from '../utils/logger.js';
import mathUtils from '../utils/math.js';
@@ -487,6 +488,26 @@ async function fetchAndSaveAllGameResRawData(gameTargets: GameTarget[]) {
for (const url of webAssetUrls) addToQueue(url);
await networkQueue.onIdle();
// res index decryption
for (const url of resourceUrls) {
const urlObj = new URL(url);
urlObj.search = '';
if (['index_initial.json', 'index_main.json'].includes(urlObj.pathname.split('/').pop()!) === false) continue;
const localPath = path.join(
argvUtils.getArgv()['outputDir'],
'raw',
urlObj.hostname,
...urlObj.pathname.split('/').filter(Boolean),
);
const localPathDec = localPath.replace(/\.json$/, '_dec.json');
if (!(await Bun.file(localPathDec).exists()) && (await Bun.file(localPath).exists())) {
const encBytes = new Uint8Array(Buffer.from(await Bun.file(localPath).text(), 'base64'));
const decBytes = cipher.decryptResIndex(encBytes, appConfig.cipher.akEndfield.resIndexKey);
await Bun.write(localPathDec, decBytes);
}
}
logger.info(`Fetched raw game resources: ${wroteFiles.length} files`);
}