31 lines
903 B
TypeScript
31 lines
903 B
TypeScript
import { NextRequest, NextResponse } from 'next/server';
|
|
import { getAllConfig, setConfig } from '@/lib/db';
|
|
import { requireAdmin } from '@/lib/auth';
|
|
|
|
export async function GET() {
|
|
const unauthorized = await requireAdmin();
|
|
if (unauthorized) return unauthorized;
|
|
|
|
const config = await getAllConfig();
|
|
return NextResponse.json(config);
|
|
}
|
|
|
|
export async function POST(request: NextRequest) {
|
|
const unauthorized = await requireAdmin();
|
|
if (unauthorized) return unauthorized;
|
|
|
|
try {
|
|
const updates = await request.json() as Record<string, string>;
|
|
|
|
for (const [key, value] of Object.entries(updates)) {
|
|
await setConfig(key, value);
|
|
}
|
|
|
|
const config = await getAllConfig();
|
|
return NextResponse.json(config);
|
|
} catch (error) {
|
|
console.error('Config update error:', error);
|
|
return NextResponse.json({ error: 'Failed to update config' }, { status: 500 });
|
|
}
|
|
}
|