fix: redirect in middleware if not authenticated

This commit is contained in:
Maze Winther
2025-06-22 14:41:08 +02:00
parent e70ac78475
commit afa52384ca

View File

@ -1,13 +1,29 @@
import { NextResponse } from "next/server";
import type { NextRequest } from "next/server";
import { getSessionCookie } from "better-auth/cookies";
export function middleware(request: NextRequest) {
// Redirect /editor to /
if (request.nextUrl.pathname === "/editor") {
return NextResponse.redirect(new URL("/", request.url));
export async function middleware(request: NextRequest) {
const path = request.nextUrl.pathname;
const session = getSessionCookie(request);
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 = {
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).*)",
],
};