-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmiddleware.ts
35 lines (30 loc) · 1.01 KB
/
middleware.ts
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
import { NextResponse } from "next/server"
import { shouldGate } from "@/utils/organizations"
import { authMiddleware, redirectToSignIn } from "@clerk/nextjs/server"
export default authMiddleware({
publicRoutes: ["/", /^(\/(sign-in|sign-up|authorization-playground)\/*).*$/],
afterAuth(auth, req) {
// handle users who aren't authenticated
if (!auth.userId && !auth.isPublicRoute) {
return redirectToSignIn({ returnBackUrl: req.url })
}
if (shouldGate && req.nextUrl.pathname === "/") {
const orgSelection = new URL("/discover", req.url)
return NextResponse.redirect(orgSelection)
}
// redirect them to organization selection page
if (
shouldGate &&
auth.userId &&
!auth.orgId &&
!auth.isApiRoute &&
req.nextUrl.pathname !== "/discover"
) {
const orgSelection = new URL("/discover", req.url)
return NextResponse.redirect(orgSelection)
}
},
})
export const config = {
matcher: ["/((?!.*\\..*|_next).*)", "/", "/(api|trpc)(.*)"],
}