1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 17:01:33 +02:00
invoiceninja/app/Observers/ProductObserver.php

110 lines
2.7 KiB
PHP
Raw Normal View History

2019-04-19 11:09:55 +02:00
<?php
2019-05-11 05:32:07 +02:00
/**
* Invoice Ninja (https://invoiceninja.com).
2019-05-11 05:32:07 +02:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2023-01-28 23:21:40 +01:00
* @copyright Copyright (c) 2023. 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;
2023-01-31 13:53:54 +01:00
use App\Jobs\Util\WebhookHandler;
2019-04-19 11:09:55 +02:00
use App\Models\Product;
2023-01-31 13:53:54 +01:00
use App\Models\Webhook;
2019-04-19 11:09:55 +02:00
class ProductObserver
{
2023-01-31 15:06:21 +01:00
public $afterCommit = true;
2019-04-19 11:09:55 +02:00
/**
* Handle the product "created" event.
*
2020-10-28 11:10:49 +01:00
* @param Product $product
2019-04-19 11:09:55 +02:00
* @return void
*/
public function created(Product $product)
{
2023-01-31 13:53:54 +01:00
$subscriptions = Webhook::where('company_id', $product->company_id)
->where('event_id', Webhook::EVENT_CREATE_PRODUCT)
->exists();
2023-02-16 02:36:09 +01:00
if ($subscriptions) {
2023-02-01 05:00:45 +01:00
WebhookHandler::dispatch(Webhook::EVENT_CREATE_PRODUCT, $product, $product->company)->delay(0);
2023-02-16 02:36:09 +01:00
}
2019-04-19 11:09:55 +02:00
}
/**
* Handle the product "updated" event.
*
2020-10-28 11:10:49 +01:00
* @param Product $product
2019-04-19 11:09:55 +02:00
* @return void
*/
public function updated(Product $product)
{
2023-01-31 13:53:54 +01:00
$event = Webhook::EVENT_UPDATE_PRODUCT;
2023-02-16 02:36:09 +01:00
if ($product->getOriginal('deleted_at') && !$product->deleted_at) {
2023-01-31 13:53:54 +01:00
$event = Webhook::EVENT_RESTORE_PRODUCT;
2023-02-16 02:36:09 +01:00
}
2023-01-31 13:53:54 +01:00
2023-02-16 02:36:09 +01:00
if ($product->is_deleted) {
$event = Webhook::EVENT_DELETE_PRODUCT;
}
2023-01-31 13:53:54 +01:00
$subscriptions = Webhook::where('company_id', $product->company_id)
->where('event_id', $event)
->exists();
2023-02-16 02:36:09 +01:00
if ($subscriptions) {
2023-02-01 05:00:45 +01:00
WebhookHandler::dispatch($event, $product, $product->company)->delay(0);
2023-02-16 02:36:09 +01:00
}
2019-04-19 11:09:55 +02:00
}
/**
* Handle the product "deleted" event.
*
2020-10-28 11:10:49 +01:00
* @param Product $product
2019-04-19 11:09:55 +02:00
* @return void
*/
public function deleted(Product $product)
{
2023-02-16 02:36:09 +01:00
if ($product->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
$subscriptions = Webhook::where('company_id', $product->company_id)
->where('event_id', Webhook::EVENT_ARCHIVE_PRODUCT)
->exists();
2023-02-16 02:36:09 +01:00
if ($subscriptions) {
2023-02-01 05:00:45 +01:00
WebhookHandler::dispatch(Webhook::EVENT_ARCHIVE_PRODUCT, $product, $product->company)->delay(0);
2023-02-16 02:36:09 +01:00
}
2019-04-19 11:09:55 +02:00
}
/**
* Handle the product "restored" event.
*
2020-10-28 11:10:49 +01:00
* @param Product $product
2019-04-19 11:09:55 +02:00
* @return void
*/
public function restored(Product $product)
{
//
}
/**
* Handle the product "force deleted" event.
*
2020-10-28 11:10:49 +01:00
* @param Product $product
2019-04-19 11:09:55 +02:00
* @return void
*/
public function forceDeleted(Product $product)
{
//
}
}