From 477d66e9e951e3219c719c41d9d3ae64fad95a16 Mon Sep 17 00:00:00 2001 From: MengYX Date: Sat, 18 Dec 2021 21:56:48 +0800 Subject: [PATCH] chore: remove unused api (cherry picked from commit 3727f67e407807de33be64905b927561aaf1c10f) --- src/utils/api.ts | 39 --------------------------------------- 1 file changed, 39 deletions(-) diff --git a/src/utils/api.ts b/src/utils/api.ts index 9bc0dcf..331d832 100644 --- a/src/utils/api.ts +++ b/src/utils/api.ts @@ -1,5 +1,3 @@ -import { fromByteArray as Base64Encode } from 'base64-js'; - export const IXAREA_API_ENDPOINT = 'https://um-api.ixarea.com'; export interface UpdateInfo { @@ -19,43 +17,6 @@ export async function checkUpdate(version: string): Promise { return await resp.json(); } -export function reportKeyUsage( - keyData: Uint8Array, - maskData: number[], - filename: string, - format: string, - title: string, - artist?: string, - album?: string, -) { - return fetch(IXAREA_API_ENDPOINT + '/qmcmask/usage', { - method: 'POST', - headers: { 'Content-Type': 'application/json' }, - body: JSON.stringify({ - Mask: Base64Encode(new Uint8Array(maskData)), - Key: Base64Encode(keyData), - Artist: artist, - Title: title, - Album: album, - Filename: filename, - Format: format, - }), - }); -} - -interface KeyInfo { - Matrix44: string; -} - -export async function queryKeyInfo(keyData: Uint8Array, filename: string, format: string): Promise { - const resp = await fetch(IXAREA_API_ENDPOINT + '/qmcmask/query', { - method: 'POST', - headers: { 'Content-Type': 'application/json' }, - body: JSON.stringify({ Format: format, Key: Base64Encode(keyData), Filename: filename, Type: 44 }), - }); - return await resp.json(); -} - export interface CoverInfo { Id: string; Type: number;