import { NextRequest, NextResponse } from "next/server"; import { getCompressionSettings, updateCompressionSettings } from "@/lib/db/compression"; import { isAuthenticated } from "@/shared/utils/apiAuth"; import { isValidationFailure, validateBody } from "@/shared/validation/helpers"; import { compressionSettingsUpdateSchema } from "@/shared/validation/compressionConfigSchemas"; export async function GET(request: NextRequest) { if (!(await isAuthenticated(request))) { return NextResponse.json({ error: "Unauthorized" }, { status: 401 }); } try { const settings = await getCompressionSettings(); return NextResponse.json(settings); } catch (error) { return NextResponse.json({ error: String(error) }, { status: 500 }); } } export async function PUT(request: NextRequest) { if (!(await isAuthenticated(request))) { return NextResponse.json({ error: "Unauthorized" }, { status: 401 }); } try { let rawBody: unknown; try { rawBody = await request.json(); } catch { return NextResponse.json({ error: "Invalid JSON body" }, { status: 400 }); } const validation = validateBody(compressionSettingsUpdateSchema, rawBody); if (isValidationFailure(validation)) { return NextResponse.json({ error: validation.error }, { status: 400 }); } const settings = await updateCompressionSettings( validation.data as Parameters[0] ); return NextResponse.json(settings); } catch (error) { return NextResponse.json({ error: String(error) }, { status: 500 }); } }