mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-02-22 08:42:00 +00:00
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 3m36s
39 lines
1.0 KiB
TypeScript
39 lines
1.0 KiB
TypeScript
import { betterFetch } from "@better-fetch/fetch";
|
|
import type { Session } from "better-auth/types";
|
|
import { type NextRequest, NextResponse } from "next/server";
|
|
|
|
export default async function authMiddleware(request: NextRequest) {
|
|
const protocol = request.headers.get("x-forwarded-proto") || "http";
|
|
const host = request.headers.get("host") || "localhost:3000";
|
|
|
|
console.log(protocol)
|
|
console.log(host)
|
|
|
|
try {
|
|
const { data: session } = await betterFetch<Session>(
|
|
"http://localhost:3000/api/auth/get-session",
|
|
{
|
|
baseURL: `${protocol}://${host}`,
|
|
headers: {
|
|
//get the cookie from the request
|
|
cookie: request.headers.get("cookie") || "",
|
|
host: host
|
|
},
|
|
|
|
},
|
|
);
|
|
|
|
if (!session) {
|
|
return NextResponse.redirect(new URL("/login", request.url));
|
|
}
|
|
return NextResponse.next();
|
|
} catch (error) {
|
|
console.log("Middlewaree", error);
|
|
return NextResponse.redirect(new URL("/login", request.url));
|
|
}
|
|
}
|
|
|
|
export const config = {
|
|
matcher: ["/devices", "/", "/payments", "/payments/:paymentId"],
|
|
};
|