blob: e7d37c889385b87b2445a5dc148b1947aa063675 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
import type User from '../types/User';
import RELYING_PARTY from './_relyingParty';
import simplewebauthn from '@simplewebauthn/server';
import getAuthenticators from '../db/_getAuthenticators';
import setCurrentChallenge from '../db/_setCurrentChallenge';
/**
* Generates options for a user with an existing account on the website to
* authenticate using an authenticator which is already associated with their
* account in the database.
*
* The result should be consumed by \@simplewebauthn/browser's
* `startAuthentication()` method.
*/
export default async function generateAuthenticationOptions(user: User) {
const userAuthenticators = await getAuthenticators(user.id, ['id', 'transports', 'type']);
const options = await simplewebauthn.generateAuthenticationOptions({
rpID: RELYING_PARTY.id,
// Users must use one of the authenticators they've already registered
allowCredentials: userAuthenticators,
userVerification: 'preferred',
});
return options;
}
|