2020-04-05 09:32:19 +00:00
|
|
|
import {AudioMimeType, DetectAudioExt, GetArrayBuffer, GetFileInfo, GetMetaCoverURL, RequestJsonp} from "./util";
|
2020-03-01 15:36:16 +00:00
|
|
|
import {QmcMaskCreate58, QmcMaskDetectMflac, QmcMaskDetectMgg, QmcMaskGetDefault} from "./qmcMask";
|
2020-02-11 06:33:45 +00:00
|
|
|
|
2020-04-05 11:18:56 +00:00
|
|
|
import {decode} from "iconv-lite"
|
|
|
|
|
2019-09-07 17:50:04 +00:00
|
|
|
const musicMetadata = require("music-metadata-browser");
|
2020-02-11 06:33:45 +00:00
|
|
|
|
|
|
|
const HandlerMap = {
|
2020-02-11 06:48:27 +00:00
|
|
|
"mgg": {handler: QmcMaskDetectMgg, ext: "ogg", detect: true},
|
|
|
|
"mflac": {handler: QmcMaskDetectMflac, ext: "flac", detect: true},
|
|
|
|
"qmc0": {handler: QmcMaskGetDefault, ext: "mp3", detect: false},
|
2020-04-04 17:01:59 +00:00
|
|
|
"qmc2": {handler: QmcMaskGetDefault, ext: "ogg", detect: false},
|
2020-02-11 06:48:27 +00:00
|
|
|
"qmc3": {handler: QmcMaskGetDefault, ext: "mp3", detect: false},
|
|
|
|
"qmcogg": {handler: QmcMaskGetDefault, ext: "ogg", detect: false},
|
|
|
|
"qmcflac": {handler: QmcMaskGetDefault, ext: "flac", detect: false},
|
|
|
|
"bkcmp3": {handler: QmcMaskGetDefault, ext: "mp3", detect: false},
|
|
|
|
"bkcflac": {handler: QmcMaskGetDefault, ext: "flac", detect: false},
|
|
|
|
"tkm": {handler: QmcMaskGetDefault, ext: "m4a", detect: false}
|
2020-01-27 04:50:24 +00:00
|
|
|
};
|
2020-01-21 11:03:41 +00:00
|
|
|
|
2020-02-10 16:34:26 +00:00
|
|
|
export async function Decrypt(file, raw_filename, raw_ext) {
|
2020-02-11 06:33:45 +00:00
|
|
|
if (!(raw_ext in HandlerMap)) return {status: false, message: "File type is incorrect!"};
|
|
|
|
const handler = HandlerMap[raw_ext];
|
|
|
|
|
|
|
|
const fileData = new Uint8Array(await GetArrayBuffer(file));
|
|
|
|
let audioData, seed, keyData;
|
|
|
|
if (handler.detect) {
|
|
|
|
audioData = fileData.slice(0, -0x170);
|
|
|
|
seed = handler.handler(audioData);
|
|
|
|
keyData = fileData.slice(-0x170);
|
|
|
|
if (seed === undefined) seed = await queryKeyInfo(keyData, raw_filename, raw_ext);
|
2020-04-09 03:22:52 +00:00
|
|
|
if (seed === undefined) return {status: false, message: raw_ext + "格式仅提供实验性支持"};
|
2020-02-11 06:33:45 +00:00
|
|
|
} else {
|
|
|
|
audioData = fileData;
|
|
|
|
seed = handler.handler(audioData);
|
2019-07-05 07:05:11 +00:00
|
|
|
}
|
2020-04-05 09:32:19 +00:00
|
|
|
let musicDecoded = seed.Decrypt(audioData);
|
2020-02-11 06:33:45 +00:00
|
|
|
|
2020-04-05 09:32:19 +00:00
|
|
|
const ext = DetectAudioExt(musicDecoded, handler.ext);
|
2020-02-11 07:51:07 +00:00
|
|
|
const mime = AudioMimeType[ext];
|
|
|
|
|
2020-04-05 09:32:19 +00:00
|
|
|
let musicBlob = new Blob([musicDecoded], {type: mime});
|
|
|
|
|
|
|
|
const musicMeta = await musicMetadata.parseBlob(musicBlob);
|
2020-04-06 04:53:16 +00:00
|
|
|
for (let metaIdx in musicMeta.native) {
|
|
|
|
if (musicMeta.native[metaIdx].some(item => item.id === "TCON" && item.value === "(12)")) {
|
|
|
|
musicMeta.common.artist = decode(musicMeta.common.artist, "gbk");
|
|
|
|
musicMeta.common.title = decode(musicMeta.common.title, "gbk");
|
|
|
|
musicMeta.common.album = decode(musicMeta.common.album, "gbk");
|
|
|
|
}
|
2020-04-05 11:18:56 +00:00
|
|
|
}
|
2020-04-06 04:53:16 +00:00
|
|
|
|
2020-04-05 09:32:19 +00:00
|
|
|
const info = GetFileInfo(musicMeta.common.artist, musicMeta.common.title, raw_filename);
|
2020-02-11 06:33:45 +00:00
|
|
|
if (handler.detect) reportKeyUsage(keyData, seed.Matrix128,
|
2020-04-05 09:32:19 +00:00
|
|
|
info.artist, info.title, musicMeta.common.album, raw_filename, raw_ext);
|
|
|
|
|
|
|
|
let imgUrl = GetMetaCoverURL(musicMeta);
|
|
|
|
if (imgUrl === "") {
|
|
|
|
imgUrl = await queryAlbumCoverImage(info.artist, info.title, musicMeta.common.album);
|
|
|
|
//todo: 解决跨域获取图像的问题
|
|
|
|
}
|
2019-07-05 07:05:11 +00:00
|
|
|
return {
|
2020-01-21 11:03:41 +00:00
|
|
|
status: true,
|
|
|
|
title: info.title,
|
|
|
|
artist: info.artist,
|
2020-02-11 07:51:07 +00:00
|
|
|
ext: ext,
|
2020-04-05 09:32:19 +00:00
|
|
|
album: musicMeta.common.album,
|
|
|
|
picture: imgUrl,
|
|
|
|
file: URL.createObjectURL(musicBlob),
|
2019-07-05 07:05:11 +00:00
|
|
|
mime: mime
|
|
|
|
}
|
|
|
|
}
|
2020-02-11 06:33:45 +00:00
|
|
|
|
|
|
|
function reportKeyUsage(keyData, maskData, artist, title, album, filename, format) {
|
|
|
|
fetch("https://stats.ixarea.com/collect/qmcmask/usage", {
|
|
|
|
method: "POST",
|
|
|
|
headers: {"Content-Type": "application/json"},
|
|
|
|
body: JSON.stringify({
|
|
|
|
Mask: Array.from(maskData), Key: Array.from(keyData),
|
|
|
|
Artist: artist, Title: title, Album: album, Filename: filename, Format: format
|
|
|
|
}),
|
|
|
|
}).then().catch()
|
|
|
|
}
|
|
|
|
|
|
|
|
async function queryKeyInfo(keyData, filename, format) {
|
|
|
|
try {
|
|
|
|
const resp = await fetch("https://stats.ixarea.com/collect/qmcmask/query", {
|
|
|
|
method: "POST",
|
|
|
|
headers: {"Content-Type": "application/json"},
|
|
|
|
body: JSON.stringify({Format: format, Key: Array.from(keyData), Filename: filename}),
|
|
|
|
});
|
|
|
|
let data = await resp.json();
|
2020-02-11 06:48:27 +00:00
|
|
|
return QmcMaskCreate58(data.Matrix58, data.Super58A, data.Super58B);
|
2020-02-11 06:33:45 +00:00
|
|
|
} catch (e) {
|
2020-04-26 03:13:50 +00:00
|
|
|
console.log(e);
|
2020-02-11 06:33:45 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-05 09:32:19 +00:00
|
|
|
|
|
|
|
async function queryAlbumCoverImage(artist, title, album) {
|
|
|
|
let song_query_url = "https://c.y.qq.com/soso/fcgi-bin/client_search_cp?n=10&new_json=1&w=" +
|
|
|
|
encodeURIComponent(artist + " " + title + " " + album);
|
|
|
|
let jsonpData;
|
|
|
|
let queriedSong = undefined;
|
|
|
|
try {
|
|
|
|
jsonpData = await RequestJsonp(song_query_url, "callback");
|
|
|
|
queriedSong = jsonpData["data"]["song"]["list"][0];
|
|
|
|
} catch (e) {
|
|
|
|
}
|
|
|
|
let imgUrl = "";
|
2020-04-23 10:15:47 +00:00
|
|
|
if (!!queriedSong && !!queriedSong["album"]) {
|
2020-04-05 09:32:19 +00:00
|
|
|
if (queriedSong["album"]["pmid"] !== undefined) {
|
|
|
|
imgUrl = "https://y.gtimg.cn/music/photo_new/T002M000" + queriedSong["album"]["pmid"] + ".jpg"
|
|
|
|
} else if (queriedSong["album"]["id"] !== undefined) {
|
|
|
|
imgUrl = "https://imgcache.qq.com/music/photo/album/" +
|
2020-04-23 13:15:52 +00:00
|
|
|
queriedSong["album"]["id"] % 100 + "/albumpic_" + queriedSong["album"]["id"] + "_0.jpg"
|
2020-04-05 09:32:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return imgUrl;
|
2020-04-23 10:15:47 +00:00
|
|
|
}
|