90 lines
2.9 KiB
TypeScript
90 lines
2.9 KiB
TypeScript
import { NextRequest, NextResponse } from 'next/server'
|
|
import { headers } from 'next/headers'
|
|
import { auth } from '@/lib/auth'
|
|
import { supabaseAdmin } from '@/lib/supabase/server'
|
|
|
|
// PUT /api/presets/[id]
|
|
// Accepts any subset of: name, data, is_community
|
|
export async function PUT(
|
|
req: NextRequest,
|
|
{ params }: { params: Promise<{ id: string }> },
|
|
) {
|
|
const session = await auth.api.getSession({ headers: await headers() })
|
|
if (!session?.user) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
|
|
}
|
|
|
|
const { id } = await params
|
|
const body = await req.json()
|
|
const { name, data, is_community } = body
|
|
|
|
if (name === undefined && data === undefined && is_community === undefined) {
|
|
return NextResponse.json({ error: 'Nothing to update' }, { status: 400 })
|
|
}
|
|
|
|
const existingResult = await supabaseAdmin
|
|
.from('presets')
|
|
.select('user_id')
|
|
.eq('id', id)
|
|
.single()
|
|
const existing = existingResult.data as { user_id: string | null } | null
|
|
|
|
if (!existing || existing.user_id !== session.user.id) {
|
|
return NextResponse.json({ error: 'Not found or forbidden' }, { status: 403 })
|
|
}
|
|
|
|
const updates: Record<string, unknown> = {}
|
|
if (name !== undefined) updates.name = name
|
|
if (data !== undefined) updates.data = data
|
|
if (is_community !== undefined) updates.is_community = is_community
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
const { data: preset, error } = await (supabaseAdmin as any)
|
|
.from('presets')
|
|
.update(updates)
|
|
.eq('id', id)
|
|
.select()
|
|
.single()
|
|
|
|
if (error) return NextResponse.json({ error: error.message }, { status: 500 })
|
|
return NextResponse.json({ preset })
|
|
}
|
|
|
|
// DELETE /api/presets/[id]
|
|
export async function DELETE(
|
|
req: NextRequest,
|
|
{ params }: { params: Promise<{ id: string }> },
|
|
) {
|
|
const session = await auth.api.getSession({ headers: await headers() })
|
|
if (!session?.user) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
|
|
}
|
|
|
|
const { id } = await params
|
|
|
|
const existingResult = await supabaseAdmin
|
|
.from('presets')
|
|
.select('user_id, thumbnail_url')
|
|
.eq('id', id)
|
|
.single()
|
|
const existing = existingResult.data as { user_id: string | null; thumbnail_url: string | null } | null
|
|
|
|
if (!existing || existing.user_id !== session.user.id) {
|
|
return NextResponse.json({ error: 'Not found or forbidden' }, { status: 403 })
|
|
}
|
|
|
|
// Delete thumbnail from storage if present
|
|
if (existing.thumbnail_url) {
|
|
const url = existing.thumbnail_url as string
|
|
const match = url.match(/preset-thumbnails\/(.+)$/)
|
|
if (match?.[1]) {
|
|
await supabaseAdmin.storage.from('preset-thumbnails').remove([match[1]])
|
|
}
|
|
}
|
|
|
|
const { error } = await supabaseAdmin.from('presets').delete().eq('id', id)
|
|
|
|
if (error) return NextResponse.json({ error: error.message }, { status: 500 })
|
|
return NextResponse.json({ success: true })
|
|
}
|