-
Notifications
You must be signed in to change notification settings - Fork 0
/
middleware.ts
46 lines (39 loc) · 1.28 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
import { NextResponse } from "next/server";
import type { NextRequest } from "next/server";
import { kv } from "@vercel/kv";
const redirectFactory = (request: NextRequest) => (newPath: string) => {
const pathname = new URL(request.url).pathname;
if (pathname === newPath) {
return NextResponse.next();
}
return NextResponse.redirect(new URL(newPath, request.url));
};
const middleware = async (request: NextRequest) => {
const pathname = new URL(request.url).pathname;
const redirect = redirectFactory(request);
const adminValue = request.cookies.get("bvj-secure")?.value;
if (pathname.includes("admin") && (!adminValue || !(await kv.exists(adminValue)))) {
return redirect("/admin/login");
}
const value = request.cookies.get("bvj")?.value;
if (!value || !(await kv.exists(value))) {
return redirect("/guest");
}
if (pathname === "/guest") {
return redirect("/");
}
return NextResponse.next();
};
export default middleware;
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)
*/
"/((?!api|_next/static|_next/image|favicon.ico).*)",
],
};