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
|
|
|
|
*
|
2021-01-03 22:54:54 +01:00
|
|
|
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2019-04-19 11:09:55 +02:00
|
|
|
|
|
|
|
namespace App\Observers;
|
|
|
|
|
2020-07-06 13:22:36 +02:00
|
|
|
use App\Jobs\Util\WebhookHandler;
|
2019-04-19 11:09:55 +02:00
|
|
|
use App\Models\Client;
|
2020-07-06 13:22:36 +02:00
|
|
|
use App\Models\Webhook;
|
2019-04-19 11:09:55 +02:00
|
|
|
|
|
|
|
class ClientObserver
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handle the client "created" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Client $client
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function created(Client $client)
|
|
|
|
{
|
2020-11-25 01:23:39 +01:00
|
|
|
$subscriptions = Webhook::where('company_id', $client->company->id)
|
|
|
|
->where('event_id', Webhook::EVENT_CREATE_CLIENT)
|
|
|
|
->exists();
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
if ($subscriptions) {
|
2020-11-25 01:23:39 +01:00
|
|
|
WebhookHandler::dispatch(Webhook::EVENT_CREATE_CLIENT, $client, $client->company);
|
2020-11-25 15:19:52 +01:00
|
|
|
}
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client "updated" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Client $client
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function updated(Client $client)
|
2020-09-06 11:38:10 +02:00
|
|
|
{
|
2020-11-25 01:23:39 +01:00
|
|
|
$subscriptions = Webhook::where('company_id', $client->company->id)
|
|
|
|
->where('event_id', Webhook::EVENT_UPDATE_CLIENT)
|
|
|
|
->exists();
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
if ($subscriptions) {
|
2020-11-25 01:23:39 +01:00
|
|
|
WebhookHandler::dispatch(Webhook::EVENT_UPDATE_CLIENT, $client, $client->company);
|
2020-11-25 15:19:52 +01:00
|
|
|
}
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client "deleted" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Client $client
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function deleted(Client $client)
|
|
|
|
{
|
2020-11-25 01:23:39 +01:00
|
|
|
$subscriptions = Webhook::where('company_id', $client->company->id)
|
|
|
|
->where('event_id', Webhook::EVENT_DELETE_CLIENT)
|
|
|
|
->exists();
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
if ($subscriptions) {
|
2020-11-25 01:23:39 +01:00
|
|
|
WebhookHandler::dispatch(Webhook::EVENT_DELETE_CLIENT, $client, $client->company);
|
2020-11-25 15:19:52 +01:00
|
|
|
}
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client "restored" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Client $client
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function restored(Client $client)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client "force deleted" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Client $client
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function forceDeleted(Client $client)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|