-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmiddleware.ts
More file actions
60 lines (55 loc) · 1.88 KB
/
Copy pathmiddleware.ts
File metadata and controls
60 lines (55 loc) · 1.88 KB
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 { fetchAuthSession } from 'aws-amplify/auth/server';
import { NextRequest, NextResponse } from 'next/server';
import { runWithAmplifyServerContext } from './utils/amplifyServerUtils';
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?.accessToken !== undefined &&
session.tokens?.idToken !== undefined
);
} catch (error) {
console.log('Authentication check error:', error);
return false;
}
}
});
// Handle authentication based on route type
const isAuthRoute = request.nextUrl.pathname === '/auth' ||
request.nextUrl.pathname.startsWith('/auth');
if (authenticated) {
// User is authenticated
if (isAuthRoute) {
// Redirect authenticated users away from auth pages
return NextResponse.redirect(new URL('/', request.url));
}
// Allow access to protected routes
return response;
} else {
// User is not authenticated
if (!isAuthRoute) {
// Redirect unauthenticated users to login page with redirect parameter
const loginUrl = new URL('/auth', request.url);
loginUrl.searchParams.set('redirect', request.nextUrl.pathname);
return NextResponse.redirect(loginUrl);
}
// Allow access to auth routes
return response;
}
}
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).*)',
],
};