1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 00:41:34 +02:00
invoiceninja/app/Jobs/User/VerifyPhone.php

83 lines
2.1 KiB
PHP
Raw Normal View History

<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Jobs\User;
use App\Libraries\MultiDB;
use App\Models\User;
use App\Utils\Traits\MakesHash;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
2023-02-16 02:36:09 +01:00
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
class VerifyPhone implements ShouldQueue
{
2024-01-14 05:05:00 +01:00
use Dispatchable;
use InteractsWithQueue;
use Queueable;
use SerializesModels;
use MakesHash;
/**
* Create a new job instance.
*
* @param User $user
*/
2023-02-16 02:36:09 +01:00
public function __construct(private User $user)
{
}
/**
* Execute the job.
*
2023-08-07 07:30:34 +02:00
* @return void
*/
2024-01-14 05:05:00 +01:00
public function handle(): void
{
2023-02-16 02:36:09 +01:00
MultiDB::checkUserEmailExists($this->user->email);
2023-02-16 02:36:09 +01:00
$sid = config('ninja.twilio_account_sid');
$token = config('ninja.twilio_auth_token');
2023-02-16 02:36:09 +01:00
if (!$sid) {
return;
} // no twilio api credentials provided, bail.
2023-02-16 02:36:09 +01:00
$twilio = new \Twilio\Rest\Client($sid, $token);
2023-02-16 02:36:09 +01:00
$country = $this->user->account?->companies()?->first()?->country();
2023-02-16 02:36:09 +01:00
if (!$country || strlen($this->user->phone) < 2) {
return;
}
2023-02-16 02:36:09 +01:00
$countryCode = $country->iso_3166_2;
2023-02-16 02:36:09 +01:00
try {
$phone_number = $twilio->lookups->v1->phoneNumbers($this->user->phone)
->fetch(["countryCode" => $countryCode]);
} catch(\Exception $e) {
$this->user->verified_phone_number = false;
$this->user->save();
return;
}
2023-02-16 02:36:09 +01:00
if ($phone_number && strlen($phone_number->phoneNumber) > 1) {
$this->user->phone = $phone_number->phoneNumber;
$this->user->verified_phone_number = true;
$this->user->save();
}
}
}