-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmiddleware.ts
60 lines (47 loc) · 1.46 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
import { NextRequest } from 'next/server'
import authConfig from '@/lib/auth/auth.config'
import {
DEFAULT_LOGIN_REDIRECT,
apiAuthPrefix,
authRoutes,
publicRoutes,
} from '@/lib/auth/routes'
import NextAuth, { Session } from 'next-auth'
const { auth: middleware } = NextAuth(authConfig)
export default middleware(
(req: NextRequest & { auth: Session | null }): Response | void => {
const { nextUrl } = req
const isLoggedIn = !!req.auth
const isApiAuthRoute = nextUrl.pathname.startsWith(apiAuthPrefix)
const isPublicRoute = publicRoutes.some((route) => {
if (route === '/') {
return nextUrl.pathname === route
} else {
return nextUrl.pathname.startsWith(route)
}
})
const isAuthRoute = authRoutes.includes(nextUrl.pathname)
if (isApiAuthRoute) return
if (isAuthRoute) {
if (isLoggedIn) {
return Response.redirect(new URL(DEFAULT_LOGIN_REDIRECT, nextUrl))
}
return
}
if (!isLoggedIn && !isPublicRoute) {
let callbackUrl = nextUrl.pathname
if (nextUrl.search) {
callbackUrl += nextUrl.search
}
const encodedCallbackUrl = encodeURIComponent(callbackUrl)
return Response.redirect(
new URL(`/login?callbackUrl=${encodedCallbackUrl}`, nextUrl)
)
}
return
}
)
// Optionally, don't invoke Middleware on some paths
export const config = {
matcher: ['/((?!api|_next/static|_next/image|images|favicon.ico).*)'],
}