-
-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathproxy.ts
More file actions
114 lines (94 loc) · 3.29 KB
/
proxy.ts
File metadata and controls
114 lines (94 loc) · 3.29 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import { NextResponse } from "next/server";
import type { NextRequest } from "next/server";
export const proxy = async (request: NextRequest) => {
const { pathname } = request.nextUrl;
if (
pathname.startsWith("/api/auth/check-session") ||
pathname.startsWith("/api/auth/login") ||
pathname.startsWith("/api/auth/logout") ||
pathname.startsWith("/api/oidc/") ||
pathname.startsWith("/login") ||
pathname.startsWith("/_next/") ||
pathname.includes(".")
) {
const response = NextResponse.next();
response.headers.set("x-pathname", pathname);
return response;
}
if (pathname.startsWith("/api/")) {
return NextResponse.next();
}
const authPassword = process.env.AUTH_PASSWORD;
const ssoMode = process.env.SSO_MODE;
const authRequired = authPassword || ssoMode === "oidc";
if (!authRequired) {
return NextResponse.next();
}
const cookieName =
process.env.NODE_ENV === "production" && process.env.HTTPS === "true"
? "__Host-cronmaster-session"
: "cronmaster-session";
const sessionId = request.cookies.get(cookieName)?.value;
if (process.env.DEBUGGER) {
console.log("MIDDLEWARE - cookieName:", cookieName);
console.log("MIDDLEWARE - NODE_ENV:", process.env.NODE_ENV);
console.log("MIDDLEWARE - HTTPS:", process.env.HTTPS);
console.log("MIDDLEWARE - sessionId:", sessionId);
console.log("MIDDLEWARE - cookies:", request.cookies.getAll());
}
const loginUrl = new URL("/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(cookieName);
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|sw.js|app-icons).*)",
],
};