2019-04-19 11:09:55 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2022-04-27 05:20:41 +02:00
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2019-05-11 05:32:07 +02:00
|
|
|
*/
|
2019-04-19 11:09:55 +02:00
|
|
|
|
|
|
|
namespace App\Observers;
|
|
|
|
|
2022-11-02 08:30:34 +01:00
|
|
|
use App\Jobs\User\VerifyPhone;
|
2019-04-19 11:09:55 +02:00
|
|
|
use App\Models\User;
|
2022-11-02 07:45:19 +01:00
|
|
|
use App\Utils\Ninja;
|
2019-04-19 11:09:55 +02:00
|
|
|
|
|
|
|
class UserObserver
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handle the app models user "created" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param User $user
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function created(User $user)
|
|
|
|
{
|
2022-11-02 07:45:19 +01:00
|
|
|
if (Ninja::isHosted() && isset($user->phone)) {
|
2022-11-02 08:30:34 +01:00
|
|
|
VerifyPhone::dispatch($user);
|
2022-11-02 07:45:19 +01:00
|
|
|
}
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the app models user "updated" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param User $user
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function updated(User $user)
|
|
|
|
{
|
2022-11-02 07:45:19 +01:00
|
|
|
if (Ninja::isHosted() && $user->isDirty('phone')) {
|
2022-11-02 08:30:34 +01:00
|
|
|
VerifyPhone::dispatch($user);
|
2022-11-02 07:45:19 +01:00
|
|
|
}
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the app models user "deleted" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param User $user
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function deleted(User $user)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the app models user "restored" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param User $user
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function restored(User $user)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the app models user "force deleted" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param User $user
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function forceDeleted(User $user)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|