-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmiddleware.ts
55 lines (49 loc) · 1.72 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
import { runWithAmplifyServerContext } from "./utils/server-utils";
// The fetchAuthSession is pulled as the server version from aws-amplify/auth/server
import { fetchAuthSession } from "aws-amplify/auth/server";
import { NextRequest, NextResponse } from "next/server";
import { revalidatePath } from "next/cache";
export async function middleware(request: NextRequest) {
const response = NextResponse.next();
// The runWithAmplifyServerContext will run the operation below
// in an isolated matter.
const authenticated = await runWithAmplifyServerContext({
nextServerContext: { request, response },
operation: async (contextSpec) => {
try {
// The fetch will grab the session cookies
const session = await fetchAuthSession(contextSpec, {});
return session.tokens !== undefined;
} catch (error) {
console.log(error);
return false;
}
},
});
// If user is authenticated then the route request will continue on
if (
authenticated ||
request.nextUrl.pathname === "/" ||
request.nextUrl.pathname === "/nombot"
) {
return response;
}
// If user is not authenticated they are redirected to the /login page
return NextResponse.redirect(new URL("/login", request.url));
}
// This config will match all routes accept /login, /api, _next/static, /_next/image
// favicon.ico
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|login|confirm-sign-up).*)",
"/favourites",
"/recipes",
],
};