Files
sim/middleware.ts

30 lines
895 B
TypeScript

import { NextRequest, NextResponse } from 'next/server'
import { getSessionCookie } from 'better-auth'
export async function middleware(request: NextRequest) {
// Check if the path is exactly /w
if (request.nextUrl.pathname === '/w') {
return NextResponse.redirect(new URL('/w/1', request.url))
}
// Skip auth check if DISABLE_AUTH is set (for standalone mode)
if (process.env.DISABLE_AUTH === 'true' || process.env.NEXT_PUBLIC_DISABLE_AUTH === 'true') {
return NextResponse.next()
}
// Existing auth check for protected routes
const sessionCookie = getSessionCookie(request)
if (!sessionCookie) {
return NextResponse.redirect(new URL('/login', request.url))
}
return NextResponse.next()
}
// TODO: Add protected routes
export const config = {
matcher: [
'/w', // Match exactly /w
'/w/:path*', // Keep existing matcher for protected routes
],
}