Gate /profile behind login, same pattern as /admin

This commit is contained in:
2026-08-25 13:49:52 +07:00
parent cfb6b4fb62
commit 04b1bb734f
+25 -1
View File
@@ -124,10 +124,34 @@ async function guardAdmin(request: NextRequest): Promise<NextResponse | null> {
} }
} }
/** `/profile` requires any valid session (no specific role) — it renders
* unconditionally otherwise (`profile/page.tsx` has no server component
* data fetch to fail on), so an anonymous visitor would see the full form
* shell with every save silently 401ing instead of being sent to log in. */
async function guardProfile(request: NextRequest): Promise<NextResponse | null> {
const { pathname } = request.nextUrl;
if (pathname !== "/profile") return null;
const token = request.cookies.get(SESSION_COOKIE)?.value;
const secret = process.env.JWT_SECRET;
if (!token || !secret) {
return NextResponse.redirect(new URL("/login", request.url));
}
try {
await jwtVerify(token, new TextEncoder().encode(secret));
return null;
} catch {
return NextResponse.redirect(new URL("/login", request.url));
}
}
export async function middleware(request: NextRequest) { export async function middleware(request: NextRequest) {
const adminRedirect = await guardAdmin(request); const adminRedirect = await guardAdmin(request);
if (adminRedirect) return adminRedirect; if (adminRedirect) return adminRedirect;
const profileRedirect = await guardProfile(request);
if (profileRedirect) return profileRedirect;
const rules = matchRules(request.nextUrl.pathname); const rules = matchRules(request.nextUrl.pathname);
if (!rules) return NextResponse.next(); if (!rules) return NextResponse.next();
@@ -177,5 +201,5 @@ export async function middleware(request: NextRequest) {
} }
export const config = { export const config = {
matcher: ["/api/:path*", "/admin/:path*"], matcher: ["/api/:path*", "/admin/:path*", "/profile"],
}; };