-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.ts
33 lines (25 loc) · 899 Bytes
/
middleware.ts
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
import { NextResponse } from 'next/server';
import type { NextRequest } from 'next/server';
import { getToken } from 'next-auth/jwt';
export async function middleware(request: NextRequest) {
const token = await getToken({
req: request,
secret: process.env.NEXTAUTH_SECRET,
});
// console.log('token', token);
const publicPaths = ['/login', '/register', '/about'];
const isPublicPath = publicPaths.some((path) =>
request.nextUrl.pathname.startsWith(path),
);
const isRootPath = request.nextUrl.pathname === '/';
if (!token && !isPublicPath && !isRootPath) {
return NextResponse.redirect(new URL('/login', request.url));
}
if (token && !token?.userType) {
return NextResponse.redirect(new URL('/user-type', request.url));
}
return NextResponse.next();
}
export const config = {
matcher: ['/((?!api|_next/static|_next/image|favicon.ico).*)'],
};