Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Shahsawood #26

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions src/Otp.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,11 @@ class Otp
* @return mixed
* @throws Exception
*/
public function generate(string $identifier, string $type, int $length = 4, int $validity = 10) : object
public function generate(string $identifier, string $type, ?int $length, ?int $validity) : object
{
$length = $length ?: config('ichtrojan-otp.length', 4);
$validity = $validity ?: config('ichtrojan-otp.validity', 10);

Model::where('identifier', $identifier)->where('valid', true)->delete();

switch ($type) {
Expand Down Expand Up @@ -63,28 +66,28 @@ public function validate(string $identifier, string $token): object
if (strtotime($validity) < strtotime($now)) {
return (object)[
'status' => false,
'message' => 'OTP Expired'
'message' => trans('validation.ichtrojan_otp.expired')
];
}

$otp->update(['valid' => false]);

return (object)[
'status' => true,
'message' => 'OTP is valid'
'message' => trans('validation.ichtrojan_otp.valid')
];
}

$otp->update(['valid' => false]);

return (object)[
'status' => false,
'message' => 'OTP is not valid'
'message' => trans('validation.ichtrojan_otp.invalid')
];
} else {
return (object)[
'status' => false,
'message' => 'OTP does not exist'
'message' => trans('validation.ichtrojan_otp.exists')
];
}
}
Expand Down
13 changes: 13 additions & 0 deletions src/config/ichtrojan-otp.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?php

return [
/**
* The length of the token
*/
'length' => 4,

/**
* The validity of the token in minutes
*/
'validity' => 10,
];
Comment on lines +1 to +13
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

rename file to otp.php

add the validation messages in here too