18 lines
673 B
TypeScript
18 lines
673 B
TypeScript
import { cookies } from "next/headers";
|
|
import { NextResponse } from "next/server";
|
|
import { AUTH_COOKIE_NAME } from "@/lib/auth";
|
|
|
|
const mercuryBase = `${process.env.MERCURY_INTERNAL_URL ?? "http://mercury-api:8000"}/api/v1`;
|
|
|
|
export async function GET() {
|
|
const cookieStore = await cookies();
|
|
const token = cookieStore.get(AUTH_COOKIE_NAME)?.value;
|
|
if (!token) {
|
|
return NextResponse.json({ detail: "Not authenticated" }, { status: 401 });
|
|
}
|
|
const response = await fetch(`${mercuryBase}/auth/me`, {
|
|
headers: { Authorization: `Bearer ${token}` }
|
|
});
|
|
const data = await response.json();
|
|
return NextResponse.json(data, { status: response.status });
|
|
}
|