-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproxy.ts
More file actions
123 lines (109 loc) · 3.16 KB
/
proxy.ts
File metadata and controls
123 lines (109 loc) · 3.16 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
115
116
117
118
119
120
121
122
123
import { createServerClient } from "@supabase/ssr";
import { NextResponse, type NextRequest } from "next/server";
export async function proxy(request: NextRequest) {
const supabaseUrl = process.env.NEXT_PUBLIC_SUPABASE_URL;
const supabaseAnonKey = process.env.NEXT_PUBLIC_SUPABASE_ANON_KEY;
if (!supabaseUrl || !supabaseAnonKey) {
return NextResponse.next();
}
let response = NextResponse.next({
request: {
headers: request.headers,
},
});
const supabase = createServerClient(
supabaseUrl,
supabaseAnonKey,
{
cookies: {
get(name: string) {
return request.cookies.get(name)?.value;
},
set(name: string, value: string, options: any) {
request.cookies.set({
name,
value,
...options,
});
response = NextResponse.next({
request: {
headers: request.headers,
},
});
response.cookies.set({
name,
value,
...options,
});
},
remove(name: string, options: any) {
request.cookies.set({
name,
value: "",
...options,
});
response = NextResponse.next({
request: {
headers: request.headers,
},
});
response.cookies.set({
name,
value: "",
...options,
});
},
},
}
);
const {
data: { user },
} = await supabase.auth.getUser();
// Protect admin routes
if (request.nextUrl.pathname.startsWith("/admin")) {
if (!user) {
return NextResponse.redirect(new URL("/login", request.url));
}
const { data: profile } = await supabase
.from("profiles")
.select("role")
.eq("id", user.id)
.single();
if (profile?.role !== "admin") {
return NextResponse.redirect(new URL("/dashboard", request.url));
}
}
// Protect dashboard routes
const isPublicJobRoute =
(request.nextUrl.pathname.match(/^\/jobs\/[^\/]+$/) && !request.nextUrl.pathname.endsWith("/new")) ||
request.nextUrl.pathname.match(/^\/jobs\/[^\/]+\/apply$/);
if (
(request.nextUrl.pathname.startsWith("/dashboard") ||
(request.nextUrl.pathname.startsWith("/jobs") && !isPublicJobRoute) ||
request.nextUrl.pathname.startsWith("/candidates") ||
request.nextUrl.pathname.startsWith("/kanban"))
) {
if (!user) {
return NextResponse.redirect(new URL("/login", request.url));
}
}
// Redirect logged-in users away from login or signup
if ((request.nextUrl.pathname === "/login" || request.nextUrl.pathname === "/signup") && user) {
const { data: profile } = await supabase
.from("profiles")
.select("role")
.eq("id", user.id)
.single();
if (profile?.role === "admin") {
return NextResponse.redirect(new URL("/admin", request.url));
} else {
return NextResponse.redirect(new URL("/dashboard", request.url));
}
}
return response;
}
export const config = {
matcher: [
"/((?!api|_next/static|_next/image|favicon.ico|.*\\.(?:svg|png|jpg|jpeg|gif|webp)$).*)",
],
};