-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.js
45 lines (38 loc) · 1.21 KB
/
middleware.js
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
// middleware.js
import { NextResponse } from "next/server";
import { getToken } from "next-auth/jwt";
export async function middleware(req) {
const token = await getToken({ req, secret: process.env.AUTH_SECRET });
const { pathname } = req.nextUrl;
// Define protected routes
const protectedRoutes = [
"/dashboard/candidate",
"/dashboard/recruiter",
"/create-profile",
"/schedule",
];
// If the user is trying to access a protected route
if (protectedRoutes.includes(pathname)) {
if (!token) {
// If not authenticated, redirect to sign-in
return NextResponse.redirect(new URL("/api/auth/signin", req.url));
}
}
// If the user accesses the home page "/", redirect them based on their redirectTo
if (pathname === "/") {
if (token?.redirectTo) {
return NextResponse.redirect(new URL(token.redirectTo, req.url));
}
}
// Allow the request to proceed if no redirection is needed
return NextResponse.next();
}
export const config = {
matcher: [
"/",
"/dashboard/candidate",
"/dashboard/recruiter",
"/create-profile",
"/schedule",
],
};