mirror of
https://github.com/documenso/documenso.git
synced 2025-11-09 20:12:31 +10:00
Adds support for 2FA when completing a document, also adds support for using email for 2FA when no authenticator has been associated with the account.
38 lines
800 B
TypeScript
38 lines
800 B
TypeScript
import { generateHOTP } from 'oslo/otp';
|
|
|
|
import { generateTwoFactorCredentialsFromEmail } from './generate-2fa-credentials-from-email';
|
|
|
|
export type ValidateTwoFactorTokenFromEmailOptions = {
|
|
documentId: number;
|
|
email: string;
|
|
code: string;
|
|
period?: number;
|
|
window?: number;
|
|
};
|
|
|
|
export const validateTwoFactorTokenFromEmail = async ({
|
|
documentId,
|
|
email,
|
|
code,
|
|
period = 30_000,
|
|
window = 1,
|
|
}: ValidateTwoFactorTokenFromEmailOptions) => {
|
|
const { secret } = generateTwoFactorCredentialsFromEmail({ email, documentId });
|
|
|
|
let now = Date.now();
|
|
|
|
for (let i = 0; i < window; i++) {
|
|
const counter = Math.floor(now / period);
|
|
|
|
const hotp = await generateHOTP(secret, counter);
|
|
|
|
if (code === hotp) {
|
|
return true;
|
|
}
|
|
|
|
now -= period;
|
|
}
|
|
|
|
return false;
|
|
};
|