fleetfoot / otp
Laravel5 OTP manager
Installs: 3 554
Dependents: 0
Suggesters: 0
Security: 0
Stars: 18
Watchers: 2
Forks: 9
Open Issues: 6
This package is not auto-updated.
Last update: 2024-11-10 02:19:44 UTC
README
Laravel 5 OTP Generation.
The module generates OTPs and validates them. You can plug your own notifier (such as AWS SNS) to send the OTPs to various channels.
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
Installation
Via composer
- Run
composer require fleetfoot/otp
- Add
Fleetfoot\OTP\OTPServiceProvider
to your providers array inconfig/app.php
- Run
composer dump-autoload
- Run
php artisan vendor:publish
- Run
php artisan migrate
Done!
Configuration options
The package publishes config/otp.php
. It is well documented.
Usage
The package provides with the following helpers:
Manager
Generator
Validator
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.
Generate an OTP
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)
Validate an OTP
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
Blocking and Unblocking
You won't be able to validate OTP and generate anymore OTPs for blocked module + ID combination.
To block use:
$manager->block('users', '1')
To unblock use:
$manager->unblock('users', '1')
Notifications
The manager gives notify()
method which accepts any implementation of Notifier
interface. You can implement this interface as per your business logic.
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.
Clean outdated OTPs and validation attemps
You can clean up outdated OTPs and validation attempts by running:
php artisan otp:clean
You can do it in schedule:
$schedule->command('otp:clean')->daily();
Contributions
All contributions are welcome! Create a fork, create PRs, discuss!
TODO
- Add option for numeric/alphanumeric code generation
- Provide example implementation(s) for Notifier
- Find a better way to remove expired OTPs from DB