2019-04-19 11:09:55 +02:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
2020-09-06 11:38:10 +02:00
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2020-01-07 01:13:47 +01:00
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
2019-05-11 05:32:07 +02:00
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
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\Invoice;
|
2020-07-06 13:22:36 +02:00
|
|
|
use App\Models\Webhook;
|
2019-04-19 11:09:55 +02:00
|
|
|
|
|
|
|
class InvoiceObserver
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Handle the client "created" event.
|
|
|
|
*
|
|
|
|
* @param \App\Models\Client $client
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function created(Invoice $invoice)
|
|
|
|
{
|
2020-07-06 13:22:36 +02:00
|
|
|
WebhookHandler::dispatch(Webhook::EVENT_CREATE_INVOICE, $invoice);
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client "updated" event.
|
|
|
|
*
|
|
|
|
* @param \App\Models\Client $client
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function updated(Invoice $invoice)
|
|
|
|
{
|
2020-07-06 13:22:36 +02:00
|
|
|
WebhookHandler::dispatch(Webhook::EVENT_UPDATE_INVOICE, $invoice);
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client "deleted" event.
|
|
|
|
*
|
|
|
|
* @param \App\Models\Client $client
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function deleted(Invoice $invoice)
|
|
|
|
{
|
2020-07-06 13:22:36 +02:00
|
|
|
WebhookHandler::dispatch(Webhook::EVENT_DELETE_INVOICE, $invoice);
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client "restored" event.
|
|
|
|
*
|
|
|
|
* @param \App\Models\Client $client
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function restored(Invoice $invoice)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client "force deleted" event.
|
|
|
|
*
|
|
|
|
* @param \App\Models\Client $client
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function forceDeleted(Invoice $invoice)
|
|
|
|
{
|
|
|
|
//
|
|
|
|
}
|
|
|
|
}
|