import { authMiddleware } from "../utils/auth.js"; export const onRequest = async (context: RouteContext): Promise => { const request = context.request; const env = context.env as Env; const authResponse = await authMiddleware(request, env); if (authResponse) { return authResponse; } const KV_KEY = "settings" try { // GET 请求处理 if (request.method === 'GET') { const settings = await env.KV.get(KV_KEY); return new Response(settings || '{}', { status: 200, headers: { 'Content-Type': 'application/json' } }); } // POST 请求处理 if (request.method === 'POST') { const data = await request.json(); // 存储账号数据 await env.KV.put(KV_KEY, JSON.stringify(data)); return new Response(JSON.stringify({ message: '保存成功' }), { status: 200, headers: { 'Content-Type': 'application/json' } }); } // 不支持的请求方法 return new Response(JSON.stringify({ error: '不支持的请求方法' }), { status: 405, headers: { 'Content-Type': 'application/json' } }); } catch (error) { return new Response(JSON.stringify({ error: '服务器内部错误' }), { status: 500, headers: { 'Content-Type': 'application/json' } }); } };