This commit is contained in:
phaichayon
2026-06-11 12:46:57 +07:00
parent 1993d88306
commit 7a390cf0df
720 changed files with 100919 additions and 0 deletions

73
src/proxy.ts Normal file
View File

@@ -0,0 +1,73 @@
import { auth } from "@/auth";
import { NextResponse } from "next/server";
const protectedApiPrefixes = [
"/api/products",
"/api/organizations",
"/api/users",
];
const superAdminOnlyRoutes = ["/dashboard/workspaces"];
const organizationAdminRoutes = [
"/dashboard/users",
"/dashboard/workspaces/team",
];
export default auth((req) => {
const pathname = req.nextUrl.pathname;
const isCanonicalCrmRoute =
pathname === "/dashboard" || pathname.startsWith("/dashboard/crm");
// if (!isCanonicalCrmRoute && pathname.startsWith("/dashboard")) {
// const redirectedPath = pathname.replace("/dashboard", "/example/dashboard");
// return NextResponse.redirect(new URL(redirectedPath, req.nextUrl.origin));
// }
const isDashboardRoute = pathname.startsWith("/dashboard");
const isProtectedApiRoute = protectedApiPrefixes.some((prefix) =>
pathname.startsWith(prefix),
);
const user = req.auth?.user;
const isSignedIn = !!user;
const isSuperAdmin = user?.systemRole === "super_admin";
const isOrganizationAdmin =
isSuperAdmin ||
(user?.activeOrganizationId &&
(user.activeMembershipRole === "admin" ||
user.activePermissions?.includes("users:manage")));
if (!isSignedIn && (isDashboardRoute || isProtectedApiRoute)) {
if (isProtectedApiRoute) {
return NextResponse.json({ message: "Unauthorized" }, { status: 401 });
}
const signInUrl = new URL("/auth/sign-in", req.nextUrl.origin);
signInUrl.searchParams.set("callbackUrl", pathname);
return NextResponse.redirect(signInUrl);
}
if (
isSignedIn &&
superAdminOnlyRoutes.some((prefix) => pathname.startsWith(prefix)) &&
!isSuperAdmin
) {
return NextResponse.redirect(new URL("/dashboard", req.nextUrl.origin));
}
if (
isSignedIn &&
organizationAdminRoutes.some((prefix) => pathname.startsWith(prefix)) &&
!isOrganizationAdmin
) {
return NextResponse.redirect(new URL("/dashboard", req.nextUrl.origin));
}
return NextResponse.next();
});
export const config = {
matcher: [
"/((?!_next|[^?]*\\.(?:html?|css|js(?!on)|jpe?g|webp|png|gif|svg|ttf|woff2?|ico|csv|docx?|xlsx?|zip|webmanifest)).*)",
"/(api|trpc)(.*)",
],
};