-
Notifications
You must be signed in to change notification settings - Fork 0
/
middleware.ts
186 lines (149 loc) · 5.91 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
// import { type NextRequest, NextResponse } from "next/server";
// import { authenticatedUser } from "@/app/utils/amplify-server-utils";
// import { cookies } from "next/headers";
// export async function middleware(request: NextRequest) {
// const response = NextResponse.next();
// const user = await authenticatedUser({ request, response });
// // console.log(user);
// const userJson = JSON.stringify(user);
// (await cookies()).set("onestop_vyapar_user", userJson);
// const isOnDashboard = request.nextUrl.pathname.startsWith("/dashboard");
// const isOnAdminArea =
// request.nextUrl.pathname.startsWith("/dashboard/admins");
// if (isOnDashboard) {
// // console.log("user");
// if (!user) {
// return NextResponse.redirect(new URL("/auth/login", request.nextUrl));
// }
// if (isOnAdminArea && !user.isAdmin) {
// // console.log("not admin");
// return NextResponse.redirect(new URL("/dashboard", request.nextUrl));
// }
// }
// if (user && !request.nextUrl.pathname.startsWith("/dashboard")) {
// return NextResponse.redirect(new URL("/dashboard", request.nextUrl));
// }
// return response;
// }
// export const config = {
// /*
// * Match all request paths except for the ones starting with
// */
// matcher: ["/((?!api|_next/static|_next/image|.*\\.png$).*)"],
// };
// import { type NextRequest, NextResponse } from "next/server";
// import { authenticatedUser } from "@/app/utils/amplify-server-utils";
// import { cookies } from "next/headers";
// export async function middleware(request: NextRequest) {
// const response = NextResponse.next();
// const user = await authenticatedUser({ request, response });
// // console.log(user);
// // const userJson = JSON.stringify(user);
// // (await cookies()).set("onestop_vyapar_user", userJson);
// if (user) {
// const userJson = JSON.stringify(user); // Convert user object to JSON
// // Set the cookie with user information
// response.cookies.set("onestop_vyapar_user", userJson, {
// httpOnly: true,
// secure: process.env.NODE_ENV === "production", // Ensure it's secure in production
// path: "/",
// sameSite: "strict",
// });
// }
// const isOnDashboard = request.nextUrl.pathname.startsWith("/dashboard");
// const isOnAdminArea =
// request.nextUrl.pathname.startsWith("/dashboard/admins");
// if (isOnDashboard) {
// console.log("user");
// if (!user){
// return NextResponse.redirect(new URL("/auth/login", request.nextUrl));
// }
// if (isOnAdminArea && !user.isAdmin){
// console.log("not admin");
// return NextResponse.redirect(new URL("/dashboard", request.nextUrl));
// }
// }
// if (user && !request.nextUrl.pathname.startsWith("/dashboard")) {
// return NextResponse.redirect(new URL("/dashboard", request.nextUrl));
// }
// return response;
// }
// export const config = {
// /*
// * Match all request paths except for the ones starting with
// */
// matcher: ["/((?!api|_next/static|_next/image|.*\\.png$).*)"],
// };
import { type NextRequest, NextResponse } from "next/server";
import { authenticatedUser } from "@/app/utils/amplify-server-utils";
import { cookies } from "next/headers";
// Token verification function
const verifyAccessToken = (token: string): boolean => {
// Replace with actual token validation logic (e.g., JWT verification)
return token === 'your-secure-token'; // Example for illustration
};
export async function middleware(request: NextRequest) {
const response = NextResponse.next();
// Access token validation for API routes under /api/endpoints
// if (request.nextUrl.pathname.startsWith("/api/endpoints")) {
// const token = request.headers.get("authorization_");
// if (!token) {
// return NextResponse.json({ error: "Unauthorized: Access token missing" }, { status: 401 });
// }
// const isValid = verifyAccessToken(token);
// if (!isValid) {
// return NextResponse.json({ error: "Unauthorized: Invalid access token" }, { status: 403 });
// }
// return response; // Allow API request to proceed if token is valid
// }
// Authentication logic for non-API routes
const user = await authenticatedUser({ request, response });
if (user) {
const userJson = JSON.stringify(user); // Convert user object to JSON
await response.cookies.set("onestop_vyapar_user", userJson, {
httpOnly: true,
secure: process.env.NODE_ENV === "production", // Ensure secure cookies in production
path: "/",
sameSite: "strict",
});
const auth = request.nextUrl.pathname.startsWith("/auth");
if(auth)
{
return NextResponse.redirect(new URL("/dashboard", request.nextUrl));
}
}
const isOnDashboard = request.nextUrl.pathname.startsWith("/dashboard");
const isOnAdminArea = request.nextUrl.pathname.startsWith("/dashboard/admins");
if (isOnDashboard) {
// const userJson = JSON.stringify(user);
const host = request.nextUrl.hostname
response.cookies.set("HOST", host, {
httpOnly: true,
secure: process.env.NODE_ENV === "production", // Ensure secure cookies in production
path: "/",
sameSite: "lax",
});
if (!user) {
return NextResponse.redirect(new URL("/auth/login", request.nextUrl));
}
if (isOnAdminArea && !user.isAdmin) {
return NextResponse.redirect(new URL("/dashboard", request.nextUrl));
}
}
// if (user && !request.nextUrl.pathname.startsWith("/dashboard")) {
// return NextResponse.redirect(new URL("/dashboard", request.nextUrl));
// }
return response;
}
export const config = {
/*
* Match all request paths
* Middleware is applied to:
* - `/dashboard` and admin routes for authentication
* - `/api/endpoints` for access token validation
*/
matcher: [
"/((?!api|_next/static|_next/image|.*\\.png$).*)", // Non-API routes
// "/api/endpoints/:path*", // Secure API routes
],
};