mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 13:12:50 +01:00
110 lines
2.7 KiB
PHP
110 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
*
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
*
|
|
* @copyright Copyright (c) 2023. Invoice Ninja LLC (https://invoiceninja.com)
|
|
*
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
*/
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Jobs\Util\WebhookHandler;
|
|
use App\Models\Product;
|
|
use App\Models\Webhook;
|
|
|
|
class ProductObserver
|
|
{
|
|
public $afterCommit = true;
|
|
|
|
/**
|
|
* Handle the product "created" event.
|
|
*
|
|
* @param Product $product
|
|
* @return void
|
|
*/
|
|
public function created(Product $product)
|
|
{
|
|
$subscriptions = Webhook::where('company_id', $product->company_id)
|
|
->where('event_id', Webhook::EVENT_CREATE_PRODUCT)
|
|
->exists();
|
|
|
|
if ($subscriptions) {
|
|
WebhookHandler::dispatch(Webhook::EVENT_CREATE_PRODUCT, $product, $product->company)->delay(0);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Handle the product "updated" event.
|
|
*
|
|
* @param Product $product
|
|
* @return void
|
|
*/
|
|
public function updated(Product $product)
|
|
{
|
|
$event = Webhook::EVENT_UPDATE_PRODUCT;
|
|
|
|
if ($product->getOriginal('deleted_at') && !$product->deleted_at) {
|
|
$event = Webhook::EVENT_RESTORE_PRODUCT;
|
|
}
|
|
|
|
if ($product->is_deleted) {
|
|
$event = Webhook::EVENT_DELETE_PRODUCT;
|
|
}
|
|
|
|
|
|
$subscriptions = Webhook::where('company_id', $product->company_id)
|
|
->where('event_id', $event)
|
|
->exists();
|
|
|
|
if ($subscriptions) {
|
|
WebhookHandler::dispatch($event, $product, $product->company)->delay(0);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Handle the product "deleted" event.
|
|
*
|
|
* @param Product $product
|
|
* @return void
|
|
*/
|
|
public function deleted(Product $product)
|
|
{
|
|
if ($product->is_deleted) {
|
|
return;
|
|
}
|
|
|
|
$subscriptions = Webhook::where('company_id', $product->company_id)
|
|
->where('event_id', Webhook::EVENT_ARCHIVE_PRODUCT)
|
|
->exists();
|
|
|
|
if ($subscriptions) {
|
|
WebhookHandler::dispatch(Webhook::EVENT_ARCHIVE_PRODUCT, $product, $product->company)->delay(0);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Handle the product "restored" event.
|
|
*
|
|
* @param Product $product
|
|
* @return void
|
|
*/
|
|
public function restored(Product $product)
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the product "force deleted" event.
|
|
*
|
|
* @param Product $product
|
|
* @return void
|
|
*/
|
|
public function forceDeleted(Product $product)
|
|
{
|
|
//
|
|
}
|
|
}
|