加入卡密验证功能

This commit is contained in:
taiyi 2026-07-22 10:08:01 +08:00
parent b6080d5e16
commit 80efe5bdce

View File

@ -1,10 +1,27 @@
const BASE = "" import { clearStoredAuth, getAccessToken, getStoredAuth, saveStoredAuth } from "./auth";
const BASE = ""
async function request(path, opts = {}) { async function request(path, opts = {}) {
const token = getAccessToken();
const headers = { "Content-Type": "application/json", ...opts.headers };
if (token) headers.Authorization = `Bearer ${token}`;
const res = await fetch(`${BASE}${path}`, { const res = await fetch(`${BASE}${path}`, {
headers: { "Content-Type": "application/json", ...opts.headers }, headers,
...opts, ...opts,
}); });
const renewedToken = res.headers.get("x-license-token");
if (renewedToken) {
const current = getStoredAuth() || {};
saveStoredAuth({ ...current, token: renewedToken });
}
if (res.status === 401) {
clearStoredAuth();
}
if (!res.ok) { if (!res.ok) {
const err = await res.json().catch(() => ({ error: res.statusText })); const err = await res.json().catch(() => ({ error: res.statusText }));
throw new Error(err.error || "请求失败"); throw new Error(err.error || "请求失败");