-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.ts
57 lines (49 loc) · 1.66 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import type { NextRequest } from "next/server";
import { NextResponse } from "next/server";
import { tokenConstants, verifyToken } from "@/utils/auth";
export async function middleware(request: NextRequest) {
// Handle Auth Pages (Prevent logged-in users from accessing login/register)
if (request.nextUrl.pathname.startsWith("/auth")) {
const userToken = request.cookies.get(tokenConstants.user);
if (userToken?.value) {
try {
const isValid = await verifyToken(userToken.value);
if (isValid) {
// Redirect to user dashboard if already logged in
return NextResponse.redirect(new URL("/", request.url));
}
} catch (error) {
// If token verification fails, allow access to auth pages
return NextResponse.next();
}
}
}
// Handle User Authentication
if (request.nextUrl.pathname.startsWith("/user")) {
const userToken = request.cookies.get(tokenConstants.user);
if (!userToken?.value) {
const loginUrl = new URL("/auth/login", request.url);
loginUrl.searchParams.set("next", request.nextUrl.pathname);
return NextResponse.redirect(loginUrl);
}
try {
const isValid = await verifyToken(userToken.value);
if (!isValid) {
const loginUrl = new URL("/auth/login", request.url);
loginUrl.searchParams.set("next", request.nextUrl.pathname);
return NextResponse.redirect(loginUrl);
}
} catch (error) {
const loginUrl = new URL("/auth/login", request.url);
loginUrl.searchParams.set("next", request.nextUrl.pathname);
return NextResponse.redirect(loginUrl);
}
}
return NextResponse.next();
}
export const config = {
matcher: [
"/user/:path*",
"/auth/:path*", // Add auth paths to the matcher
],
};