fix: redirect in middleware if not authenticated
This commit is contained in:
@ -1,13 +1,29 @@
|
|||||||
import { NextResponse } from "next/server";
|
import { NextResponse } from "next/server";
|
||||||
import type { NextRequest } from "next/server";
|
import type { NextRequest } from "next/server";
|
||||||
|
import { getSessionCookie } from "better-auth/cookies";
|
||||||
|
|
||||||
export function middleware(request: NextRequest) {
|
export async function middleware(request: NextRequest) {
|
||||||
// Redirect /editor to /
|
const path = request.nextUrl.pathname;
|
||||||
if (request.nextUrl.pathname === "/editor") {
|
const session = getSessionCookie(request);
|
||||||
return NextResponse.redirect(new URL("/", request.url));
|
|
||||||
|
if (path === "/editor" && !session) {
|
||||||
|
const loginUrl = new URL("/auth/login", request.url);
|
||||||
|
loginUrl.searchParams.set("redirect", request.url);
|
||||||
|
return NextResponse.redirect(loginUrl);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return NextResponse.next();
|
||||||
}
|
}
|
||||||
|
|
||||||
export const config = {
|
export const config = {
|
||||||
matcher: "/editor",
|
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)
|
||||||
|
*/
|
||||||
|
"/((?!api|_next/static|_next/image|favicon.ico).*)",
|
||||||
|
],
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user