invoiceninja/app/Observers/QuoteObserver.php

110 lines
2.6 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
*
2023-01-29 09:21:40 +11:00
* @copyright Copyright (c) 2023. 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;
2020-07-06 21:22:36 +10:00
use App\Jobs\Util\WebhookHandler;
2019-04-19 19:09:55 +10:00
use App\Models\Quote;
2020-07-06 21:22:36 +10:00
use App\Models\Webhook;
2019-04-19 19:09:55 +10:00
class QuoteObserver
{
2023-02-01 01:06:21 +11:00
public $afterCommit = true;
2019-04-19 19:09:55 +10:00
/**
* Handle the quote "created" event.
*
2020-10-28 21:10:49 +11:00
* @param Quote $quote
2019-04-19 19:09:55 +10:00
* @return void
*/
public function created(Quote $quote)
{
2023-01-31 23:53:54 +11:00
$subscriptions = Webhook::where('company_id', $quote->company_id)
2020-11-25 11:23:39 +11:00
->where('event_id', Webhook::EVENT_CREATE_QUOTE)
->exists();
2023-02-16 12:36:09 +11:00
if ($subscriptions) {
2023-02-01 15:00:45 +11:00
WebhookHandler::dispatch(Webhook::EVENT_CREATE_QUOTE, $quote, $quote->company, 'client')->delay(0);
2023-02-16 12:36:09 +11:00
}
2019-04-19 19:09:55 +10:00
}
/**
* Handle the quote "updated" event.
*
2020-10-28 21:10:49 +11:00
* @param Quote $quote
2019-04-19 19:09:55 +10:00
* @return void
*/
public function updated(Quote $quote)
2023-02-09 10:02:17 +11:00
{
2023-01-31 23:53:54 +11:00
$event = Webhook::EVENT_UPDATE_QUOTE;
2023-02-16 12:36:09 +11:00
if ($quote->getOriginal('deleted_at') && !$quote->deleted_at) {
2023-01-31 23:53:54 +11:00
$event = Webhook::EVENT_RESTORE_QUOTE;
2023-02-16 12:36:09 +11:00
}
2023-01-31 23:53:54 +11:00
2023-02-16 12:36:09 +11:00
if ($quote->is_deleted) {
$event = Webhook::EVENT_DELETE_QUOTE;
}
2023-01-31 23:53:54 +11:00
$subscriptions = Webhook::where('company_id', $quote->company_id)
->where('event_id', $event)
->exists();
2023-02-16 12:36:09 +11:00
if ($subscriptions) {
2023-02-01 15:00:45 +11:00
WebhookHandler::dispatch($event, $quote, $quote->company, 'client')->delay(0);
2023-02-16 12:36:09 +11:00
}
2019-04-19 19:09:55 +10:00
}
/**
* Handle the quote "deleted" event.
*
2020-10-28 21:10:49 +11:00
* @param Quote $quote
2019-04-19 19:09:55 +10:00
* @return void
*/
public function deleted(Quote $quote)
{
2023-02-16 12:36:09 +11:00
if ($quote->is_deleted) {
2023-01-31 23:53:54 +11:00
return;
2023-02-16 12:36:09 +11:00
}
2023-01-31 23:53:54 +11:00
$subscriptions = Webhook::where('company_id', $quote->company_id)
->where('event_id', Webhook::EVENT_ARCHIVE_QUOTE)
2020-11-25 11:23:39 +11:00
->exists();
2023-02-16 12:36:09 +11:00
if ($subscriptions) {
2023-02-01 15:00:45 +11:00
WebhookHandler::dispatch(Webhook::EVENT_ARCHIVE_QUOTE, $quote, $quote->company, 'client')->delay(0);
2023-02-16 12:36:09 +11:00
}
2019-04-19 19:09:55 +10:00
}
/**
* Handle the quote "restored" event.
*
2020-10-28 21:10:49 +11:00
* @param Quote $quote
2019-04-19 19:09:55 +10:00
* @return void
*/
public function restored(Quote $quote)
{
//
}
/**
* Handle the quote "force deleted" event.
*
2020-10-28 21:10:49 +11:00
* @param Quote $quote
2019-04-19 19:09:55 +10:00
* @return void
*/
public function forceDeleted(Quote $quote)
{
//
}
}