32 lines
956 B
TypeScript
32 lines
956 B
TypeScript
import { NextResponse } from 'next/server';
|
|
import { auth } from '../../../../auth';
|
|
|
|
const API_BASE = process.env.NEXT_PUBLIC_API_URL_INTERNAL || 'http://recipe-api:8080';
|
|
|
|
export async function POST(req: Request) {
|
|
const session = await auth();
|
|
if (!session?.accessToken) {
|
|
return NextResponse.json({ error: 'Unauthorized' }, { status: 401 });
|
|
}
|
|
|
|
const body = await req.json();
|
|
const { productId } = body as { productId: number };
|
|
|
|
const res = await fetch(`${API_BASE}/api/pantry`, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
Authorization: `Bearer ${session.accessToken}`,
|
|
},
|
|
body: JSON.stringify({ productId }),
|
|
cache: 'no-store',
|
|
});
|
|
|
|
if (!res.ok) {
|
|
const text = await res.text();
|
|
return NextResponse.json({ error: text || 'Kunde inte lägga till baslager-vara' }, { status: res.status });
|
|
}
|
|
|
|
return NextResponse.json({ ok: true });
|
|
}
|