-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.ts
31 lines (28 loc) · 863 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
import { uuidValidateV4 } from "@/utils/uuidValidate";
import { NextResponse } from "next/server";
import type { NextRequest } from "next/server";
import { v4 as uuidv4 } from "uuid";
export default async function middleware(request: NextRequest) {
const userId = request.cookies.get("userId")?.value;
const res = NextResponse.next();
if (!userId || !uuidValidateV4(userId)) {
const id = uuidv4();
res.cookies.set("userId", id);
}
return res;
}
export const config = {
matcher: [
/*
* Match all request paths except for the ones starting with:
* - api (API routes)
* - _next/static (static files)
* - _next/image (image optimization files)
* - favicon.ico (favicon file)
* If cookie with key userId is missing
*/
{
source: "/((?!api|_next/static|_next/image|favicon.ico).*)",
},
],
};