-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmiddleware.ts
More file actions
142 lines (125 loc) · 4.43 KB
/
middleware.ts
File metadata and controls
142 lines (125 loc) · 4.43 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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
import { createServerClient, type CookieOptions } from '@supabase/ssr'
import { NextResponse, type NextRequest } from 'next/server'
export async function middleware(request: NextRequest) {
let response = NextResponse.next({
request: {
headers: request.headers,
},
})
const supabase = createServerClient(
'https://nwqerhyexssquzgeudoy.supabase.co',
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Im53cWVyaHlleHNzcXV6Z2V1ZG95Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3NjcyODA1MDUsImV4cCI6MjA4Mjg1NjUwNX0.n6Z71lE_Vy_WHjnsJ_HhtyArS8Y8BRVX6jVvlRSgizc',
{
cookies: {
get(name: string) {
return request.cookies.get(name)?.value
},
set(name: string, value: string, options: CookieOptions) {
request.cookies.set({
name,
value,
...options,
})
response = NextResponse.next({
request: {
headers: request.headers,
},
})
response.cookies.set({
name,
value,
...options,
})
},
remove(name: string, options: CookieOptions) {
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()
const pathname = request.nextUrl.pathname
// Public routes
if (pathname === '/login') {
if (user) {
// Get user role and redirect to appropriate dashboard
const { data: profile } = await supabase
.from('profiles')
.select('role')
.eq('id', user.id)
.single()
if (profile) {
return NextResponse.redirect(new URL(`/${profile.role}/dashboard`, request.url))
}
}
return response
}
// Protected routes - require authentication
if (!user) {
return NextResponse.redirect(new URL('/login', request.url))
}
// Get user role
const { data: profile } = await supabase
.from('profiles')
.select('role')
.eq('id', user.id)
.single()
if (!profile) {
return NextResponse.redirect(new URL('/login', request.url))
}
const userRole = profile.role
// Admin routes
if (pathname.startsWith('/admin')) {
if (userRole !== 'admin') {
return NextResponse.redirect(new URL(`/${userRole}/dashboard`, request.url))
}
return response
}
// Agent routes
if (pathname.startsWith('/agent')) {
if (userRole !== 'agent') {
return NextResponse.redirect(new URL(`/${userRole}/dashboard`, request.url))
}
return response
}
// Root redirect based on role
if (pathname === '/') {
return NextResponse.redirect(new URL(`/${userRole}/dashboard`, request.url))
}
// Legacy routes redirect
if (pathname.startsWith('/leads') || pathname.startsWith('/add-lead') ||
pathname.startsWith('/overview') || pathname.startsWith('/performance') ||
pathname.startsWith('/reports') || pathname.startsWith('/agents') ||
pathname.startsWith('/tasks') || pathname.startsWith('/non-interested')) {
return NextResponse.redirect(new URL(`/${userRole}/dashboard`, request.url))
}
return response
}
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)
* - public folder
*/
'/((?!_next/static|_next/image|favicon.ico|.*\\.(?:svg|png|jpg|jpeg|gif|webp)$).*)',
],
}