-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmiddleware.ts
40 lines (35 loc) · 1.02 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
import { fetchAuthSession } from 'aws-amplify/auth/server'
import { NextRequest, NextResponse } from 'next/server'
import { runWithAmplifyServerContext } from '@/utils/amplifyServertils'
export async function middleware(request: NextRequest) {
const response = NextResponse.next()
const authenticated = await runWithAmplifyServerContext({
nextServerContext: { request, response },
operation: async (contextSpec) => {
try {
const session = await fetchAuthSession(contextSpec)
return session.tokens !== undefined
} catch (error) {
console.log(error)
return false
}
},
})
if (authenticated) {
return response
}
return NextResponse.redirect(new URL('/auth', request.url))
}
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|auth).*)',
'/things',
],
}