stable ui

This commit is contained in:
2026-06-11 19:45:03 +03:30
parent b2a79df338
commit 3ce26d4d1a
21 changed files with 6368 additions and 114 deletions
@@ -0,0 +1,51 @@
import { NextResponse } from 'next/server';
import { verifyAuthenticationResponse } from '@simplewebauthn/server';
import { PrismaClient } from '@prisma/client';
import { signToken } from '@/lib/auth';
const prisma = new PrismaClient();
export async function POST(req) {
try {
const url = new URL(req.url);
const rpID = url.hostname;
const expectedOrigin = url.origin;
const body = await req.json();
const { username, response } = body;
const user = await prisma.user.findUnique({
where: { username },
include: { authenticators: true }
});
if (!user) return NextResponse.json({ error: 'کاربر یافت نشد' }, { status: 404 });
const authenticator = user.authenticators.find(a => a.credentialID === response.id);
if (!authenticator) return NextResponse.json({ error: 'اطلاعات سنسور مطابقت ندارد' }, { status: 400 });
const verification = await verifyAuthenticationResponse({
response,
expectedChallenge: user.challenge,
expectedOrigin,
expectedRPID: rpID,
authenticator: {
credentialID: Buffer.from(authenticator.credentialID, 'base64url'),
credentialPublicKey: Buffer.from(authenticator.credentialPublicKey),
counter: Number(authenticator.counter),
},
});
if (verification.verified) {
await prisma.authenticator.update({
where: { id: authenticator.id },
data: { counter: BigInt(verification.authenticationInfo.newCounter) }
});
const token = signToken({ id: user.id, username: user.username, name: user.name, role: user.role });
return NextResponse.json({ verified: true, token, user: { id: user.id, name: user.name, role: user.role } });
}
return NextResponse.json({ verified: false }, { status: 400 });
} catch (error) {
return NextResponse.json({ error: error.message }, { status: 500 });
}
}