-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmiddleware.ts
More file actions
29 lines (25 loc) · 934 Bytes
/
middleware.ts
File metadata and controls
29 lines (25 loc) · 934 Bytes
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
import { MiddlewareConfig, NextRequest, NextResponse } from "next/server";
import { verifyUser } from "./app/_lib/dal";
export async function middleware(req: NextRequest) {
const isVerified = await verifyUser();
const publicRoutes = [/^\/login$/, /^\/signup$/, /^\/preview\/\w+$/ ];
const {
nextUrl: { pathname },
} = req;
const isPublicRoutes = publicRoutes.some(pattern=> pattern.test(pathname))
if (!isVerified.isAuth && !isPublicRoutes) {
return NextResponse.redirect(new URL("/login", req.nextUrl));
}
}
export const config: MiddlewareConfig = {
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, sitemap.xml, robots.txt (metadata files)
*/
"/((?!api|_next/static|_next/image|favicon.ico|sitemap.xml|robots.txt).*)",
],
};