invoiceninja/app/Observers/InvoiceObserver.php

97 lines
2.5 KiB
PHP
Raw Permalink Normal View History

2019-04-19 19:09:55 +10:00
<?php
2019-05-11 13:32:07 +10:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 13:32:07 +10:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 13:20:41 +10:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2019-05-11 13:32:07 +10:00
*
2021-06-16 16:58:16 +10:00
* @license https://www.elastic.co/licensing/elastic-license
2019-05-11 13:32:07 +10:00
*/
2019-04-19 19:09:55 +10:00
namespace App\Observers;
2021-02-15 21:52:50 +11:00
use App\Jobs\Util\UnlinkFile;
2020-07-06 21:22:36 +10:00
use App\Jobs\Util\WebhookHandler;
2020-10-28 21:10:49 +11:00
use App\Models\Client;
2019-04-19 19:09:55 +10:00
use App\Models\Invoice;
2020-07-06 21:22:36 +10:00
use App\Models\Webhook;
2019-04-19 19:09:55 +10:00
class InvoiceObserver
{
2021-07-20 08:39:04 +10:00
public $afterCommit = true;
2019-04-19 19:09:55 +10:00
/**
* Handle the client "created" event.
*
2020-10-28 21:10:49 +11:00
* @param Invoice $invoice
2019-04-19 19:09:55 +10:00
* @return void
*/
public function created(Invoice $invoice)
{
2021-09-20 20:10:07 +10:00
$subscriptions = Webhook::where('company_id', $invoice->company_id)
2020-11-25 11:23:39 +11:00
->where('event_id', Webhook::EVENT_CREATE_INVOICE)
->exists();
2020-11-25 15:19:52 +01:00
if ($subscriptions) {
2022-05-15 20:14:14 +10:00
WebhookHandler::dispatch(Webhook::EVENT_CREATE_INVOICE, $invoice, $invoice->company, 'client')->delay(now()->addSeconds(2));
2020-11-25 15:19:52 +01:00
}
2019-04-19 19:09:55 +10:00
}
/**
* Handle the client "updated" event.
*
2020-10-28 21:10:49 +11:00
* @param Invoice $invoice
2019-04-19 19:09:55 +10:00
* @return void
*/
public function updated(Invoice $invoice)
2021-09-08 20:20:58 +10:00
{
2021-09-20 20:10:07 +10:00
$subscriptions = Webhook::where('company_id', $invoice->company_id)
2020-11-25 11:23:39 +11:00
->where('event_id', Webhook::EVENT_UPDATE_INVOICE)
->exists();
2020-11-25 15:19:52 +01:00
if ($subscriptions) {
2022-05-15 20:14:14 +10:00
WebhookHandler::dispatch(Webhook::EVENT_UPDATE_INVOICE, $invoice, $invoice->company, 'client')->delay(now()->addSeconds(2));
2020-11-25 15:19:52 +01:00
}
2019-04-19 19:09:55 +10:00
}
/**
* Handle the client "deleted" event.
*
2020-10-28 21:10:49 +11:00
* @param Invoice $invoice
2019-04-19 19:09:55 +10:00
* @return void
*/
public function deleted(Invoice $invoice)
{
2021-09-20 20:10:07 +10:00
$subscriptions = Webhook::where('company_id', $invoice->company_id)
2020-11-25 11:23:39 +11:00
->where('event_id', Webhook::EVENT_DELETE_INVOICE)
->exists();
2020-11-25 15:19:52 +01:00
if ($subscriptions) {
2022-05-15 20:14:14 +10:00
WebhookHandler::dispatch(Webhook::EVENT_DELETE_INVOICE, $invoice, $invoice->company, 'client')->delay(now()->addSeconds(2));
2020-11-25 15:19:52 +01:00
}
2019-04-19 19:09:55 +10:00
}
/**
* Handle the client "restored" event.
*
2020-10-28 21:10:49 +11:00
* @param Invoice $invoice
2019-04-19 19:09:55 +10:00
* @return void
*/
public function restored(Invoice $invoice)
{
//
}
/**
* Handle the client "force deleted" event.
*
2020-10-28 21:10:49 +11:00
* @param Invoice $invoice
2019-04-19 19:09:55 +10:00
* @return void
*/
public function forceDeleted(Invoice $invoice)
{
//
}
}