-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathmiddleware.js
39 lines (32 loc) · 1.1 KB
/
middleware.js
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
import { NextResponse } from "next/server";
import { auth0 } from "./lib/auth0"
export async function middleware(request) {
const authRes = await auth0.middleware(request);
// authentication routes — let the middleware handle it
if (request.nextUrl.pathname.startsWith("/auth")) {
return authRes;
}
// public routes — no need to check for session
if (request.nextUrl.pathname === ("/")) {
return authRes;
}
const { origin } = new URL(request.url)
const session = await auth0.getSession()
// user does not have a session — redirect to login
if (!session) {
return NextResponse.redirect(`${origin}/auth/login`)
}
return authRes
}
export const config = {
matcher: [
/*
* Match all request paths except for the ones starting with:
* - _next/static (static files)
* - _next/image (image optimization files)
* - favicon.ico, sitemap.xml, robots.txt (metadata files)
* - api (API routes)
*/
"/((?!_next/static|_next/image|favicon.ico|sitemap.xml|robots.txt|api).*)",
],
}