40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import { NextRequest, NextResponse } from 'next/server'
|
|
import { cookies } from 'next/headers'
|
|
|
|
const API_BASE_URL = process.env.API_BASE_URL || process.env.NEXT_PUBLIC_API_BASE_URL
|
|
|
|
export async function PATCH(
|
|
req: NextRequest,
|
|
{ params }: { params: Promise<{ id: string }> }
|
|
) {
|
|
const cookieStore = await cookies()
|
|
const token = cookieStore.get('session_token')?.value
|
|
if (!token) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 })
|
|
}
|
|
|
|
const { id } = await params
|
|
const body = await req.json()
|
|
|
|
try {
|
|
const res = await fetch(`${API_BASE_URL}/api/v1/admin/feedback/${id}`, {
|
|
method: 'PATCH',
|
|
headers: {
|
|
Authorization: `Bearer ${token}`,
|
|
'Content-Type': 'application/json',
|
|
Accept: 'application/json',
|
|
},
|
|
body: JSON.stringify(body),
|
|
cache: 'no-store',
|
|
})
|
|
if (!res.ok) {
|
|
return NextResponse.json({ error: await res.text() }, { status: res.status })
|
|
}
|
|
return res.status === 204
|
|
? new NextResponse(null, { status: 204 })
|
|
: NextResponse.json(await res.json())
|
|
} catch (e) {
|
|
return NextResponse.json({ error: 'Request failed' }, { status: 500 })
|
|
}
|
|
}
|