-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathmiddleware.ts
More file actions
53 lines (47 loc) · 2 KB
/
middleware.ts
File metadata and controls
53 lines (47 loc) · 2 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
import { NextResponse } from "next/server";
import type { NextRequest } from "next/server";
export function middleware(request: NextRequest) {
const hostname = request.headers.get("host") || "";
const pathname = request.nextUrl.pathname;
// Extract subdomain from hostname
const subdomain = hostname.split(".")[0];
// Get the subdomain from X-Subdomain header (set by nginx/reverse proxy)
const proxySubdomain = request.headers.get("X-Subdomain");
const actualSubdomain = proxySubdomain || subdomain;
// Route based on subdomain
if (actualSubdomain === "auth") {
// Auth subdomain - allow all (auth) paths
if (!pathname.startsWith("/login") && !pathname.startsWith("/signup") &&
!pathname.startsWith("/forgot-password") && !pathname.startsWith("/reset-password") &&
!pathname.startsWith("/privacy-policy") && !pathname.startsWith("/profile") &&
!pathname.startsWith("/_next") && !pathname.startsWith("/api") &&
!pathname.startsWith("/public")) {
// Redirect to login if accessing non-auth routes on auth subdomain
return NextResponse.redirect(new URL("/login", request.url));
}
return NextResponse.next();
}
if (actualSubdomain === "compass" || actualSubdomain === "maps") {
// Maps subdomain - allow all (maps) paths
if (!pathname.startsWith("/location") && !pathname.startsWith("/noticeboard") &&
!pathname.startsWith("/_next") && !pathname.startsWith("/api") &&
!pathname.startsWith("/public")) {
// Redirect to maps if accessing non-maps routes on maps subdomain
return NextResponse.redirect(new URL("/", request.url));
}
return NextResponse.next();
}
}
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)
* - public folder
*/
"/((?!api|_next/static|_next/image|favicon.ico|public).*)",
],
};