officialozioma/otp-generator is a Laravel package for laravel otp generator and validation.
It currently has 2 GitHub stars and 4 downloads on Packagist (latest version v1.0.0).
Install it with composer require officialozioma/otp-generator.
Discover more Laravel packages by officialozioma
or browse all Laravel packages to compare alternatives.
Last updated
This is Laravel package for generation One Time Password (OTP) generator and validation. This is done on the cache it supported all the laravel cache drivers: "apc", "array", "database", "file", "memcached", "redis"
composer require officalozioma/otp-generator
For Laravel 5.5+
Once the package is added, the service provider and facade will be auto discovered.
For Laravel 5.2 / 5.3 / 5.4
Add the ServiceProvider to the providers array in config/app.php:
Ozioma\Otp\OtpServiceProvider::class
Add the Facade to the aliases array in config/app.php:
'Otp' => Ozioma\Otp\OtpFacade::class
Publish config and language file
php artisan vendor:publish --provider="Ozioma\Otp\OtpServiceProvider"
This package publishes an otp.php file inside your applications's config folder which contains the settings for this package. Most of the variables are bound to environment variables, you may add Key-Value pair to the .env file in the Laravel application.
OTP_FORMAT=numeric
OTP_LENGTH=6
OTP_SENSITIVE=false
OTP_EXPIRES_TIME=15
OTP_ATTEMPT_TIMES=5
OTP_REPEATED=true
OTP_DEMO=false
Otp::generate(string $identifier)
$identifier: The identity that will be tied to the OTP.use OTP;
// in controller
$password = Otp::generate('[email protected]');
This will generate a OTP that will be valid for 15 minutes.
Otp::validate(string $identifier, string $password)
$identifier: The identity that is tied to the OTP.$password: The password tied to the identity.use OTP;
// in controller
$result = Otp::validate('[email protected]', '123456');
On Success
{
"status": true
}
Invalid OTP
{
"status": false,
"error": "invalid"
}
Expired
{
"status": false,
"error": "expired"
}
Max attempt
{
"status": false,
"error": "max_attempt"
}
// in a `FormRequest`
use Ozioma\Otp\Rules\OtpValidate;
public function rules()
{
return [
'code' => ['required', new OtpValidate('change-email:[email protected]')]
];
}
// in a controller
$request->validate([
'code' => ['required', new OtpValidate('change-email:[email protected]')]
]);
// Otp class
$result = Otp::validate('123456');
// in a `FormRequest`
use Ozioma\Otp\Rules\OtpValidate;
public function rules()
{
return [
'code' => ['required', new OtpValidate()]
];
}
// in a controller
$request->validate([
'code' => ['required', new OtpValidate()]
]);
$password = Otp::setLength(8)->setFormat('string')->setExpires(60)->setRepeated(false)->generate('identifier-key-here');
// or array option
$password = Otp::generate('identifier-key-here', [
'length' => 8,
'format' => 'string',
'expires' => 60,
'repeated' => false
]);
setLength($length): The length of the password. Default: 6setFormat($format): The format option allows you to decide which generator implementation to be used when generating new passwords. Options: 'string','numeric','numeric-no-zero','customize'. Default: "numeric"setExpires($minutes): The expiry time of the password in minutes. Default: 15setRepeated($boolean): The repeated of the password. The previous password is valid when new password generated until either one password used or itself expired. Default: true$password = Otp::setCustomize('12345678ABC@#$')->generate('identifier-key-here');
setCustomize($string): Random letter from the customize string$password = Otp::setAttempts(3)->validate('identifier-key-here', 'password-here');
setAttempts($times): The number of incorrect password attempts. Default: 5$password = Otp::setSensitive(true)->generate('identifier-key-here');
// validate
$result = Otp::setSensitive(true)->validate('identifier-key-here', 'password-here');
// in controller
use Ozioma\Otp\Rules\OtpValidate;
$request->validate([
'code' => ['required', new OtpValidate('identifier-key-here', ['sensitive' => true])]
]);
setSensitive($boolean): Requiring correct input of uppercase and lowercase letters. Default: true$password = Otp::setLength([4,3,4])->setSeparator(':')->generate('identifier-key-here');
Sample password
3526:126:3697
setLength($array): The length of the password, use array to separate each length.setSeparator($string): The separator of the password. Default: "-"$password = Otp::setData(['user_id' => auth()->id()])->generate('login-confirmation');
setData($var): Allows you to get the extra data of OTP.// validate
$result = Otp::setDisposable(false)->validate('login-confirmation', 'password-here');
// in controller
use Ozioma\Otp\Rules\OtpValidate;
$request->validate([
'code' => ['required', new OtpValidate('login-confirmation', ['disposable' => false])]
]);
setDisposable($boolean): The disposable of the Otp identifier, the different password is not valid when same identifier password used. Default: trueOn Success Response
{
"status": true,
"data": [
"user_id": 10
]
}
false, you are able support different password with different extra data for different user in the same identifier key of the OTP.// validate
$result = Otp::setSkip(true)->validate('identifier-key-here', 'password-here');
// in controller
use Ozioma\Otp\Rules\OtpValidate;
$request->validate([
'code' => ['required', new OtpValidate('identifier-key-here', ['skip' => true])]
]);
setSkip($boolean): Skip using the password when validate, which means you can reuse the password again. Default: falseOTP::validate(...) in controller.Otp::forget('identifier-key-here');
Otp::forget('identifier-key-here', 'password-here');
Otp::resetAttempt('identifier-key-here');
Add the following Key-Value pair to the .env file in the Laravel application.
OTP_DEMO=true
All contributions are welcome! 😄
The MIT License (MIT).