Files
BizOne-portal/frontend/src/app/api/contacts/[id]/route.ts

65 lines
1.9 KiB
TypeScript

import { NextResponse } from 'next/server';
import { cookies } from 'next/headers';
import { authCookieName } from '../../../../lib/auth';
const API_URL = process.env.NEXT_PUBLIC_API_URL || 'http://localhost:3001/api';
async function getToken() {
return (await cookies()).get(authCookieName)?.value;
}
export async function GET(_: Request, { params }: { params: Promise<{ id: string }> }) {
const token = await getToken();
if (!token) {
return NextResponse.json({ message: 'Unauthorized' }, { status: 401 });
}
const { id } = await params;
const response = await fetch(`${API_URL}/contacts/${id}`, {
headers: { Authorization: `Bearer ${token}` },
cache: 'no-store',
});
const payload = await response.json();
return NextResponse.json(payload, { status: response.status });
}
export async function PATCH(request: Request, { params }: { params: Promise<{ id: string }> }) {
const token = await getToken();
if (!token) {
return NextResponse.json({ message: 'Unauthorized' }, { status: 401 });
}
const { id } = await params;
const body = await request.json();
const response = await fetch(`${API_URL}/contacts/${id}`, {
method: 'PATCH',
headers: {
'Content-Type': 'application/json',
Authorization: `Bearer ${token}`,
},
body: JSON.stringify(body),
cache: 'no-store',
});
const payload = await response.json();
return NextResponse.json(payload, { status: response.status });
}
export async function DELETE(_: Request, { params }: { params: Promise<{ id: string }> }) {
const token = await getToken();
if (!token) {
return NextResponse.json({ message: 'Unauthorized' }, { status: 401 });
}
const { id } = await params;
const response = await fetch(`${API_URL}/contacts/${id}`, {
method: 'DELETE',
headers: { Authorization: `Bearer ${token}` },
cache: 'no-store',
});
const payload = await response.json();
return NextResponse.json(payload, { status: response.status });
}