-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmiddleware.ts
54 lines (46 loc) · 1.62 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
import { NextResponse, type NextRequest } from "next/server";
import { createClient } from "@/lib/supabase/middleware";
export async function middleware(request: NextRequest) {
try {
// This `try/catch` block is only here for the interactive tutorial.
// Feel free to remove once you have Supabase connected.
const { supabase, response } = createClient(request);
// Refresh session if expired - required for Server Components
// https://supabase.com/docs/guides/auth/auth-helpers/nextjs#managing-session-with-middleware
// await supabase.auth.getSession();
const {
data: { session },
} = await supabase.auth.getSession();
const sessionCookies = {
name: "sb-duncazsaiuxemkuxyfpm-auth-token",
value: JSON.stringify(session),
path: "/",
expires: new Date(new Date().getTime() + 60 * 60 * 1000 * 24 * 365), // 1 year,
};
response.cookies.set(sessionCookies);
return response;
} catch (e) {
// If you are here, a Supabase client could not be created!
// This is likely because you have not set up environment variables.
// Check out http://localhost:3000 for Next Steps.
return NextResponse.next({
request: {
headers: request.headers,
},
});
}
}
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 (favicon file)
* Feel free to modify this pattern to include more paths.
*/
"/",
"/home",
"/((?!_next/static|_next/image|favicon.ico).*)",
],
};