mirror of
https://github.com/documenso/documenso.git
synced 2025-11-13 08:13:56 +10:00
## Description Add the following document action auth options: - 2FA - Passkey If the user does not have the required auth setup, we onboard them directly. ## Changes made Note: Added secondaryId to the VerificationToken schema ## Testing Performed Tested locally, pending preview tests ## Checklist - [X] I have tested these changes locally and they work as expected. - [X] I have added/updated tests that prove the effectiveness of these changes. - [X] I have followed the project's coding style guidelines. <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Introduced components for 2FA, account, and passkey authentication during document signing. - Added "Require passkey" option to document settings and signer authentication settings. - Enhanced form submission and loading states for improved user experience. - **Refactor** - Optimized authentication components to efficiently support multiple authentication methods. - **Chores** - Updated and renamed functions and components for clarity and consistency across the authentication system. - Refined sorting options and database schema to support new authentication features. - **Bug Fixes** - Adjusted SignInForm to verify browser support for WebAuthn before proceeding. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
77 lines
1.7 KiB
TypeScript
77 lines
1.7 KiB
TypeScript
import type { FindResultSet } from '@documenso/lib/types/find-result-set';
|
|
import { prisma } from '@documenso/prisma';
|
|
import type { Passkey } from '@documenso/prisma/client';
|
|
import { Prisma } from '@documenso/prisma/client';
|
|
|
|
export interface FindPasskeysOptions {
|
|
userId: number;
|
|
term?: string;
|
|
page?: number;
|
|
perPage?: number;
|
|
orderBy?: {
|
|
column: keyof Passkey;
|
|
direction: 'asc' | 'desc';
|
|
nulls?: Prisma.NullsOrder;
|
|
};
|
|
}
|
|
|
|
export const findPasskeys = async ({
|
|
userId,
|
|
term = '',
|
|
page = 1,
|
|
perPage = 10,
|
|
orderBy,
|
|
}: FindPasskeysOptions) => {
|
|
const orderByColumn = orderBy?.column ?? 'lastUsedAt';
|
|
const orderByDirection = orderBy?.direction ?? 'desc';
|
|
const orderByNulls: Prisma.NullsOrder | undefined = orderBy?.nulls ?? 'last';
|
|
|
|
const whereClause: Prisma.PasskeyWhereInput = {
|
|
userId,
|
|
};
|
|
|
|
if (term.length > 0) {
|
|
whereClause.name = {
|
|
contains: term,
|
|
mode: Prisma.QueryMode.insensitive,
|
|
};
|
|
}
|
|
|
|
const [data, count] = await Promise.all([
|
|
prisma.passkey.findMany({
|
|
where: whereClause,
|
|
skip: Math.max(page - 1, 0) * perPage,
|
|
take: perPage,
|
|
orderBy: {
|
|
[orderByColumn]: {
|
|
sort: orderByDirection,
|
|
nulls: orderByNulls,
|
|
},
|
|
},
|
|
select: {
|
|
id: true,
|
|
userId: true,
|
|
name: true,
|
|
createdAt: true,
|
|
updatedAt: true,
|
|
lastUsedAt: true,
|
|
counter: true,
|
|
credentialDeviceType: true,
|
|
credentialBackedUp: true,
|
|
transports: true,
|
|
},
|
|
}),
|
|
prisma.passkey.count({
|
|
where: whereClause,
|
|
}),
|
|
]);
|
|
|
|
return {
|
|
data,
|
|
count,
|
|
currentPage: Math.max(page, 1),
|
|
perPage,
|
|
totalPages: Math.ceil(count / perPage),
|
|
} satisfies FindResultSet<typeof data>;
|
|
};
|