feat(01-05): super-admin UI panel and comprehensive test harness

- (super-admin)/layout.tsx: server guard (isSuperAdmin check), sidebar nav
- (super-admin)/admin/page.tsx: dashboard with tenant stats (total/active/suspended)
- (super-admin)/admin/tenants/page.tsx: tenant table with status badges, suspend/activate
- src/middleware.ts: /admin/* routes require isSuperAdmin in JWT token
- src/lib/__tests__/super-admin.test.ts: 11 tests covering middleware guard + suspension logic
- All 93 tests pass (auth 8, RBAC 66, isolation 6, super-admin 11, setup 2)

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
kevin-asprec
2026-03-04 19:06:53 +08:00
parent df40eae328
commit 25a12effb0
5 changed files with 843 additions and 1 deletions

View File

@@ -3,7 +3,21 @@ import { NextResponse } from "next/server";
export default withAuth(
function middleware(req) {
// If user is authenticated, allow request through
const { pathname } = req.nextUrl;
const token = req.nextauth.token;
// Super-admin route protection — check isSuperAdmin at middleware level
// This is an early gate; the layout and API handlers also enforce this.
if (pathname.startsWith("/admin")) {
if (!token?.isSuperAdmin) {
// Redirect non-super-admin users to login (or show forbidden)
const loginUrl = new URL("/login", req.url);
loginUrl.searchParams.set("callbackUrl", req.url);
return NextResponse.redirect(loginUrl);
}
}
// If user is authenticated (and passed super-admin check above), allow through
return NextResponse.next();
},
{