1
0
Fork 0
mirror of https://codeberg.org/MarkusThielker/next-ory.git synced 2025-04-13 13:08:41 +00:00

NORY-59: refactor middleware to use new authentication functions

This commit is contained in:
Markus Thielker 2025-04-04 16:31:15 +02:00
parent cbc6b05173
commit 4f06445869

View file

@ -1,47 +1,30 @@
import { NextRequest, NextResponse } from 'next/server';
import { cookies } from 'next/headers';
import { getFrontendApi, getPermissionApi } from '@/ory/sdk/server';
import { checkRole, getSession } from '@/lib/action/authentication';
export async function middleware(request: NextRequest) {
const frontendApi = await getFrontendApi();
const cookie = await cookies();
const session = await frontendApi
.toSession({ cookie: 'ory_kratos_session=' + cookie.get('ory_kratos_session')?.value })
.then((response) => response.data)
.catch(() => null);
// middleware can not work with requireSession, requireRole and
// requirePermission due to the different redirect mechanisms in use!
const session = await getSession();
if (!session) {
console.log('NO SESSION');
console.log('middleware', 'MISSING SESSION');
const url = process.env.NEXT_PUBLIC_AUTHENTICATION_NODE_URL +
'/flow/login?return_to=' +
process.env.NEXT_PUBLIC_DASHBOARD_NODE_URL;
console.log('REDIRECT TO', url);
return NextResponse.redirect(url);
console.log('middleware', 'REDIRECT TO', url);
return NextResponse.redirect(url!);
}
const permissionApi = await getPermissionApi();
const isAdmin = await permissionApi.checkPermission({
namespace: 'roles',
object: 'admin',
relation: 'member',
subjectId: session!.identity!.id,
})
.then(({ data: { allowed } }) => {
console.log('is_admin', session!.identity!.id, allowed);
return allowed;
})
.catch((response) => {
console.log('is_admin', session!.identity!.id, response, 'check failed');
return false;
});
const allowed = await checkRole(
'admin',
session!.identity!.id,
);
if (isAdmin) {
if (allowed) {
if (request.nextUrl.pathname === '/unauthorised') {
return redirect('/', 'HAS PERMISSION BUT ACCESSING /unauthorized');
}
@ -55,9 +38,9 @@ export async function middleware(request: NextRequest) {
}
function redirect(path: string, reason: string) {
console.log(reason);
console.log('middleware', reason);
const url = `${process.env.NEXT_PUBLIC_DASHBOARD_NODE_URL}${path}`;
console.log('REDIRECT TO', url);
console.log('middleware', 'REDIRECT TO', url);
return NextResponse.redirect(url!);
}