mirror of
https://git.unlock-music.dev/um/web.git
synced 2025-04-06 04:08:58 +08:00
53 lines
1.6 KiB
TypeScript
53 lines
1.6 KiB
TypeScript
import {
|
|
AudioMimeType,
|
|
GetArrayBuffer,
|
|
GetCoverFromFile,
|
|
GetMetaFromFile,
|
|
SniffAudioExt,
|
|
SplitFilename,
|
|
} from '@/decrypt/utils';
|
|
|
|
import { Decrypt as QmcDecrypt, HandlerMap } from '@/decrypt/qmc';
|
|
|
|
import { DecryptResult } from '@/decrypt/entity';
|
|
|
|
import { parseBlob as metaParseBlob } from 'music-metadata-browser';
|
|
|
|
export function DecryptBuffer(buffer: Uint8Array | Buffer) {
|
|
let length = buffer.byteLength;
|
|
for (let i = 0; i < length; i++) {
|
|
let byte = buffer[i] ^ 0xf4; // xor 0xf4
|
|
byte = ((byte & 0b0011_1111) << 2) | (byte >> 6); // rol 2
|
|
buffer[i] = byte;
|
|
}
|
|
}
|
|
|
|
export async function Decrypt(file: Blob, raw_filename: string, _: string): Promise<DecryptResult> {
|
|
const buffer = new Uint8Array(await GetArrayBuffer(file));
|
|
DecryptBuffer(buffer);
|
|
let ext = SniffAudioExt(buffer, '');
|
|
const newName = SplitFilename(raw_filename);
|
|
let audioBlob: Blob;
|
|
if (ext !== '' || newName.ext === 'mp3') {
|
|
audioBlob = new Blob([buffer], { type: AudioMimeType[ext] });
|
|
} else if (newName.ext in HandlerMap) {
|
|
audioBlob = new Blob([buffer], { type: 'application/octet-stream' });
|
|
return QmcDecrypt(audioBlob, newName.name, newName.ext);
|
|
} else {
|
|
throw '不支持的QQ音乐缓存格式';
|
|
}
|
|
const tag = await metaParseBlob(audioBlob);
|
|
const { title, artist } = GetMetaFromFile(raw_filename, tag.common.title, tag.common.artist);
|
|
|
|
return {
|
|
title,
|
|
artist,
|
|
ext,
|
|
album: tag.common.album,
|
|
picture: GetCoverFromFile(tag),
|
|
file: URL.createObjectURL(audioBlob),
|
|
blob: audioBlob,
|
|
mime: AudioMimeType[ext],
|
|
};
|
|
}
|