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
|
|
|
|
*
|
2024-04-12 06:15:41 +02:00
|
|
|
* @copyright Copyright (c) 2024. 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;
|
|
|
|
|
2020-07-06 13:22:36 +02:00
|
|
|
use App\Jobs\Util\WebhookHandler;
|
2019-04-19 11:09:55 +02:00
|
|
|
use App\Models\Invoice;
|
2020-07-06 13:22:36 +02:00
|
|
|
use App\Models\Webhook;
|
2019-04-19 11:09:55 +02:00
|
|
|
|
|
|
|
class InvoiceObserver
|
|
|
|
{
|
2021-07-20 00:39:04 +02:00
|
|
|
public $afterCommit = true;
|
2022-06-21 11:57:17 +02:00
|
|
|
|
2019-04-19 11:09:55 +02:00
|
|
|
/**
|
|
|
|
* Handle the client "created" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Invoice $invoice
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function created(Invoice $invoice)
|
|
|
|
{
|
2021-09-20 12:10:07 +02:00
|
|
|
$subscriptions = Webhook::where('company_id', $invoice->company_id)
|
2020-11-25 01:23:39 +01:00
|
|
|
->where('event_id', Webhook::EVENT_CREATE_INVOICE)
|
|
|
|
->exists();
|
|
|
|
|
2020-11-25 15:19:52 +01:00
|
|
|
if ($subscriptions) {
|
2023-02-01 05:00:45 +01:00
|
|
|
WebhookHandler::dispatch(Webhook::EVENT_CREATE_INVOICE, $invoice, $invoice->company, 'client')->delay(0);
|
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 Invoice $invoice
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function updated(Invoice $invoice)
|
2022-11-13 07:27:10 +01:00
|
|
|
{
|
2023-01-31 13:53:54 +01:00
|
|
|
$event = Webhook::EVENT_UPDATE_INVOICE;
|
2020-11-25 01:23:39 +01:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($invoice->getOriginal('deleted_at') && !$invoice->deleted_at) {
|
2023-01-31 13:53:54 +01:00
|
|
|
$event = Webhook::EVENT_RESTORE_INVOICE;
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($invoice->is_deleted) {
|
|
|
|
$event = Webhook::EVENT_DELETE_INVOICE;
|
|
|
|
}
|
2024-01-14 05:05:00 +01:00
|
|
|
|
|
|
|
|
2023-01-31 13:53:54 +01:00
|
|
|
$subscriptions = Webhook::where('company_id', $invoice->company->id)
|
|
|
|
->where('event_id', $event)
|
|
|
|
->exists();
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($subscriptions) {
|
2023-02-08 12:37:12 +01:00
|
|
|
WebhookHandler::dispatch($event, $invoice, $invoice->company, 'client')->delay(0);
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client "deleted" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Invoice $invoice
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function deleted(Invoice $invoice)
|
|
|
|
{
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($invoice->is_deleted) {
|
2023-01-31 13:53:54 +01:00
|
|
|
return;
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2023-01-31 13:53:54 +01:00
|
|
|
|
2021-09-20 12:10:07 +02:00
|
|
|
$subscriptions = Webhook::where('company_id', $invoice->company_id)
|
2023-01-31 13:53:54 +01:00
|
|
|
->where('event_id', Webhook::EVENT_ARCHIVE_INVOICE)
|
2020-11-25 01:23:39 +01:00
|
|
|
->exists();
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($subscriptions) {
|
2023-02-01 05:00:45 +01:00
|
|
|
WebhookHandler::dispatch(Webhook::EVENT_ARCHIVE_INVOICE, $invoice, $invoice->company, 'client')->delay(0);
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client "restored" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Invoice $invoice
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function restored(Invoice $invoice)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client "force deleted" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Invoice $invoice
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function forceDeleted(Invoice $invoice)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|