1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Observers/ExpenseObserver.php

93 lines
2.3 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
*
* @copyright Copyright (c) 2021. 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\Expense;
2020-07-06 13:22:36 +02:00
use App\Models\Webhook;
2019-04-19 11:09:55 +02:00
class ExpenseObserver
{
/**
* Handle the expense "created" event.
*
2020-10-28 11:10:49 +01:00
* @param Expense $expense
2019-04-19 11:09:55 +02:00
* @return void
*/
public function created(Expense $expense)
{
2020-11-25 01:23:39 +01:00
$subscriptions = Webhook::where('company_id', $expense->company->id)
->where('event_id', Webhook::EVENT_CREATE_EXPENSE)
->exists();
2020-11-25 15:19:52 +01:00
if ($subscriptions) {
2020-11-25 01:23:39 +01:00
WebhookHandler::dispatch(Webhook::EVENT_CREATE_EXPENSE, $expense, $expense->company);
2020-11-25 15:19:52 +01:00
}
2019-04-19 11:09:55 +02:00
}
/**
* Handle the expense "updated" event.
*
2020-10-28 11:10:49 +01:00
* @param Expense $expense
2019-04-19 11:09:55 +02:00
* @return void
*/
public function updated(Expense $expense)
{
2020-11-25 01:23:39 +01:00
$subscriptions = Webhook::where('company_id', $expense->company->id)
->where('event_id', Webhook::EVENT_UPDATE_EXPENSE)
->exists();
2020-11-25 15:19:52 +01:00
if ($subscriptions) {
2020-11-25 01:23:39 +01:00
WebhookHandler::dispatch(Webhook::EVENT_UPDATE_EXPENSE, $expense, $expense->company);
2020-11-25 15:19:52 +01:00
}
2019-04-19 11:09:55 +02:00
}
/**
* Handle the expense "deleted" event.
*
2020-10-28 11:10:49 +01:00
* @param Expense $expense
2019-04-19 11:09:55 +02:00
* @return void
*/
public function deleted(Expense $expense)
{
2020-11-25 01:23:39 +01:00
$subscriptions = Webhook::where('company_id', $expense->company->id)
->where('event_id', Webhook::EVENT_DELETE_EXPENSE)
->exists();
2020-11-25 15:19:52 +01:00
if ($subscriptions) {
2020-11-25 01:23:39 +01:00
WebhookHandler::dispatch(Webhook::EVENT_DELETE_EXPENSE, $expense, $expense->company);
2020-11-25 15:19:52 +01:00
}
2019-04-19 11:09:55 +02:00
}
/**
* Handle the expense "restored" event.
*
2020-10-28 11:10:49 +01:00
* @param Expense $expense
2019-04-19 11:09:55 +02:00
* @return void
*/
public function restored(Expense $expense)
{
//
}
/**
* Handle the expense "force deleted" event.
*
2020-10-28 11:10:49 +01:00
* @param Expense $expense
2019-04-19 11:09:55 +02:00
* @return void
*/
public function forceDeleted(Expense $expense)
{
//
}
}