Meteor Two Factor
Simple two factor authentication for accounts-password.
Table of Contents
Installation
$ meteor add dburles:two-factor
Prerequisites
Make sure your project is using Meteor's accounts-password
package, if not add it: meteor add accounts-password
Example Application
Usage (Client)
Typically you would call this method via your application login form event handler:
1twoFactor.getAuthCode(user, password, error => { 2 if (error) { 3 // Handle the error 4 } 5 // Success! 6});
The following method is reactive and represents the state of authentication. Use it to display the interface to enter the authentication code.
1Tracker.autorun(function() { 2 if (twoFactor.isVerifying()) { 3 console.log('Ready to enter authentication code!'); 4 } 5});
Capture the authentication code and pass it to the following method to validate the code and log the user in:
1twoFactor.verifyAndLogin(code, error => { 2 if (error) { 3 // Handle the error 4 } 5 // Success! 6});
Usage (Server)
Assign a function to twoFactor.sendCode
that sends out the code. The example below sends the user an email.
1twoFactor.sendCode = (user, code) => { 2 // Send code via email 3 Email.send({ 4 to: user.email(), // Method attached using dburles:collection-helpers 5 from: 'noreply@example.com', 6 subject: 'Your authentication code', 7 text: `${code} is your authentication code.` 8 }); 9};
Optional functions:
1// Optional 2// Conditionally allow regular or two-factor sign in 3twoFactor.validateLoginAttempt = options => { 4 return !! options.user.twoFactorEnabled; 5};
1// Optional 2twoFactor.generateCode = () => { 3 // return a random string 4};
API
The following functions are attached to the twoFactor
namespace. This may change somewhat for Meteor 1.3.
API (Client)
getAuthCode
getAuthCode(user, password, [callback])
Generates an authentication code. Once generated, a twoFactorCode
field is added to the current user document. This function mirrors Meteor.loginWithPassword.
user Either a string interpreted as a username or an email; or an object with a single key: email, username or id. Username or email match in a case insensitive manner.
password The user's password.
callback Optional callback. Called with no arguments on success, or with a single Error argument on failure.
verifyAndLogin
verifyAndLogin(code, [callback])
Verifies authentication code and logs in the user.
code The authentication code.
callback Optional callback. Called with no arguments on success, or with a single Error argument on failure.
isVerifying
isVerifying()
Reactive function that indicates the current state between having generated an authentication code and awaiting verification.
API (Server)
sendCode
sendCode(user, code)
This function is called after getAuthCode
is successful.
user The current user document.
code The generated authentication code.
validateLoginAttempt (Optional)
validateLoginAttempt(options)
If defined, this function is called within an Accounts.validateLoginAttempt
callback.
Use this to allow regular login under certain conditions.
generateCode (Optional)
If defined, this function is called to generate the random code instead of the default.
License
MIT