-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathmiddleware.ts
More file actions
99 lines (81 loc) · 2.8 KB
/
Copy pathmiddleware.ts
File metadata and controls
99 lines (81 loc) · 2.8 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import { NextResponse } from "next/server";
import type { NextRequest } from "next/server";
import { COOKIE_NAME } from "@/app/_lib/auth-constants";
export const middleware = async (request: NextRequest) => {
const { pathname } = request.nextUrl;
if (
pathname.startsWith("/api/auth/check-session") ||
pathname.startsWith("/api/auth/login") ||
pathname.startsWith("/api/auth/register") ||
pathname.startsWith("/api/oidc/") ||
pathname.startsWith("/auth") ||
pathname.startsWith("/public/")
) {
const response = NextResponse.next();
response.headers.set("x-pathname", pathname);
return response;
}
if (pathname.startsWith("/api/")) {
return NextResponse.next();
}
const sessionId = request.cookies.get(COOKIE_NAME)?.value;
if (process.env.DEBUGGER) {
console.log("MIDDLEWARE - sessionId:", sessionId);
console.log("MIDDLEWARE - cookies:", request.cookies.getAll());
}
const loginUrl = new URL("/auth/login", request.url);
if (!sessionId) {
return NextResponse.redirect(loginUrl);
}
try {
const internalApiUrl =
process.env.INTERNAL_API_URL ||
process.env.APP_URL ||
request.nextUrl.origin;
if (process.env.DEBUGGER) {
console.log("MIDDLEWARE - URL Resolution:");
console.log(
" INTERNAL_API_URL:",
process.env.INTERNAL_API_URL || "(not set)"
);
console.log(" APP_URL:", process.env.APP_URL || "(not set)");
console.log(" request.nextUrl.origin:", request.nextUrl.origin);
console.log(" → Using:", internalApiUrl);
}
const sessionCheckUrl = new URL(`${internalApiUrl}/api/auth/check-session`);
if (process.env.DEBUGGER) {
console.log("MIDDLEWARE - Session Check URL:", sessionCheckUrl.href);
}
const sessionCheck = await fetch(sessionCheckUrl, {
headers: {
Cookie: request.headers.get("Cookie") || "",
},
cache: "no-store",
});
if (process.env.DEBUGGER) {
console.log("MIDDLEWARE - Session Check Response:");
console.log(" status:", sessionCheck.status);
console.log(" statusText:", sessionCheck.statusText);
console.log(" ok:", sessionCheck.ok);
}
if (!sessionCheck.ok) {
const redirectResponse = NextResponse.redirect(loginUrl);
redirectResponse.cookies.delete(COOKIE_NAME);
if (process.env.DEBUGGER) {
console.log("MIDDLEWARE - session is not ok");
}
return redirectResponse;
}
} catch (error) {
console.error("Session check error:", error);
return NextResponse.redirect(loginUrl);
}
const response = NextResponse.next();
response.headers.set("x-pathname", pathname);
return response;
};
export const config = {
matcher: [
"/((?!_next/static|_next/image|favicon.ico|site.webmanifest|manifest.json|sw.js|app-icons).*)",
],
};