Laravel5 OTP manager
Laravel 5 OTP Generation., (*1)
The module generates OTPs and validates them. You can plug your own notifier (such as AWS SNS) to send the OTPs to various channels., (*2)
Several configuration options are provided: - Expiration duration - Maximum OTPs allowed for a client during the expiration time - Length of OTP - Blacklisting clients - Dafault length of OTP - Allowed validation OTP attempts - Validation OTP attempts count time, (*3)
composer require fleetfoot/otp
Fleetfoot\OTP\OTPServiceProvider
to your providers array in config/app.php
composer dump-autoload
php artisan vendor:publish
php artisan migrate
Done!, (*4)
The package publishes config/otp.php
. It is well documented., (*5)
The package provides with the following helpers:
1. Manager
2. Generator
3. Validator
, (*6)
You can use Manager
to interact with the whole module. It acts as a wrapper for the complete functionality. However, you are free to use other helpers to generate and validate the OTPs., (*7)
To generate an OTP, call generate
method of Manager
. This takes two mandatory arguments: module and ID. Both are strings. You can pass anything here, but keep in mind that this combination will be used to validate the OTP.
For e.g. $manager->generate('users', '1')
will return an OTP for the combination of 'users' module and ID '1'.
If you want change default OTP length you can set optional third param $manager->generate('users', '1', 6)
, (*8)
To validate, call isValid()
of the manager. It will return boolean based on the validity of the OTP.
Validation makes sure the module + ID is not blocked, the token is not expired and validation attemts is not Дxceeded, (*9)
You won't be able to validate OTP and generate anymore OTPs for blocked module + ID combination., (*10)
To block use:
$manager->block('users', '1')
, (*11)
To unblock use:
$manager->unblock('users', '1')
, (*12)
The manager gives notify()
method which accepts any implementation of Notifier
interface. You can implement this interface as per your business logic., (*13)
You might want to call useOtp()
of the manager after the varification process completes. If you do not call this method, OTP will remain valid till it reaches its expiry limit., (*14)
You can clean up outdated OTPs and validation attempts by running:
php artisan otp:clean
, (*15)
You can do it in schedule:
$schedule->command('otp:clean')->daily();
, (*16)
All contributions are welcome! Create a fork, create PRs, discuss!, (*17)