Refactor authentication system: replace NextAuth with custom login/logout/session handling, improve cookie management, and enhance error handling
Build and Push Reader Image / docker (push) Successful in 39s

This commit is contained in:
2026-04-24 01:53:32 +07:00
parent 690a2fbd51
commit 7c4404ded8
26 changed files with 368 additions and 239 deletions
+34
View File
@@ -0,0 +1,34 @@
import { NextRequest, NextResponse } from "next/server"
import { AUTH_COOKIE_NAME } from "@/lib/auth-cookie"
export const runtime = "nodejs"
export const dynamic = "force-dynamic"
const readerApiOrigin = (process.env.READER_API_ORIGIN || "http://localhost:8000").replace(/\/+$/, "")
export async function GET(req: NextRequest) {
const accessToken = req.cookies.get(AUTH_COOKIE_NAME)?.value || ""
if (!accessToken) {
return NextResponse.json({ user: null }, { status: 200 })
}
try {
const upstream = await fetch(`${readerApiOrigin}/api/auth/session`, {
method: "GET",
headers: { authorization: `Bearer ${accessToken}` },
cache: "no-store",
signal: AbortSignal.timeout(5000),
})
if (!upstream.ok) {
return NextResponse.json({ user: null }, { status: 200 })
}
const data = await upstream.json()
const user = data?.user || null
return NextResponse.json({ user }, { status: 200 })
} catch (error) {
console.error("/api/auth/session failed", error)
return NextResponse.json({ user: null }, { status: 200 })
}
}