-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathproxy.ts
More file actions
79 lines (69 loc) · 1.97 KB
/
Copy pathproxy.ts
File metadata and controls
79 lines (69 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
import { NextResponse } from "next/server";
import type { NextRequest } from "next/server";
import { getToken } from "next-auth/jwt";
export default async function proxy(req: NextRequest) {
const pathname = req.nextUrl.pathname;
if (
pathname === "/login" ||
pathname === "/admin/login" ||
pathname === "/admin/register" ||
pathname.startsWith("/api/auth") ||
pathname.startsWith("/_next") ||
pathname === "/favicon.ico"
) {
return NextResponse.next();
}
const token = await getToken({
req,
secret: process.env.NEXTAUTH_SECRET,
});
if (!token) {
if (pathname.startsWith("/dashboard")) {
return NextResponse.redirect(new URL("/login", req.url));
}
if (
pathname.startsWith("/admin") ||
pathname.startsWith("/advisor-dashboard")
) {
return NextResponse.redirect(new URL("/admin/login", req.url));
}
return NextResponse.next();
}
// if (pathname === "/" && token?.adminRole === "advisor") {
// return NextResponse.redirect(new URL("/advisor-dashboard", req.url));
// }
if (!token) {
if (
pathname.startsWith("/dashboard") ||
pathname.startsWith("/admin") ||
pathname.startsWith("/advisor-dashboard")
) {
return NextResponse.redirect(new URL("/login", req.url));
}
return NextResponse.next();
}
// USER
if (pathname.startsWith("/dashboard") && token.userType !== "user") {
return NextResponse.redirect(new URL("/login", req.url));
}
// ADMIN
if (pathname.startsWith("/admin") && token.adminRole !== "admin") {
return NextResponse.redirect(new URL("/admin/login", req.url));
}
// ADVISOR
if (
pathname.startsWith("/advisor-dashboard") &&
token.adminRole !== "advisor"
) {
return NextResponse.redirect(new URL("/admin/login", req.url));
}
return NextResponse.next();
}
export const config = {
matcher: [
"/dashboard/:path*",
"/admin/:path*",
"/advisor/:path*",
"/advisor-dashboard/:path*",
],
};