mirror of
				https://github.com/invoiceninja/invoiceninja.git
				synced 2025-10-31 11:57:33 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			98 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			98 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Invoice Ninja (https://invoiceninja.com).
 | |
|  *
 | |
|  * @link https://github.com/invoiceninja/invoiceninja source repository
 | |
|  *
 | |
|  * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
 | |
|  *
 | |
|  * @license https://opensource.org/licenses/AAL
 | |
|  */
 | |
| 
 | |
| namespace App\Observers;
 | |
| 
 | |
| use App\Jobs\Util\UnlinkFile;
 | |
| use App\Jobs\Util\WebhookHandler;
 | |
| use App\Models\Client;
 | |
| use App\Models\Invoice;
 | |
| use App\Models\Webhook;
 | |
| 
 | |
| class InvoiceObserver
 | |
| {
 | |
|     /**
 | |
|      * Handle the client "created" event.
 | |
|      *
 | |
|      * @param Invoice $invoice
 | |
|      * @return void
 | |
|      */
 | |
|     public function created(Invoice $invoice)
 | |
|     {
 | |
|         $subscriptions = Webhook::where('company_id', $invoice->company->id)
 | |
|                             ->where('event_id', Webhook::EVENT_CREATE_INVOICE)
 | |
|                             ->exists();
 | |
| 
 | |
|         if ($subscriptions) {
 | |
|             WebhookHandler::dispatch(Webhook::EVENT_CREATE_INVOICE, $invoice, $invoice->company);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Handle the client "updated" event.
 | |
|      *
 | |
|      * @param Invoice $invoice
 | |
|      * @return void
 | |
|      */
 | |
|     public function updated(Invoice $invoice)
 | |
|     {
 | |
|         $subscriptions = Webhook::where('company_id', $invoice->company->id)
 | |
|                             ->where('event_id', Webhook::EVENT_UPDATE_INVOICE)
 | |
|                             ->exists();
 | |
| 
 | |
|         if ($subscriptions) {
 | |
|             WebhookHandler::dispatch(Webhook::EVENT_UPDATE_INVOICE, $invoice, $invoice->company);
 | |
|         }
 | |
|     
 | |
|         // UnlinkFile::dispatchNow(config('filesystems.default'), $invoice->client->invoice_filepath() . $invoice->number.'.pdf');
 | |
| 
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Handle the client "deleted" event.
 | |
|      *
 | |
|      * @param Invoice $invoice
 | |
|      * @return void
 | |
|      */
 | |
|     public function deleted(Invoice $invoice)
 | |
|     {
 | |
|         $subscriptions = Webhook::where('company_id', $invoice->company->id)
 | |
|                             ->where('event_id', Webhook::EVENT_DELETE_INVOICE)
 | |
|                             ->exists();
 | |
| 
 | |
|         if ($subscriptions) {
 | |
|             WebhookHandler::dispatch(Webhook::EVENT_DELETE_INVOICE, $invoice, $invoice->company);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Handle the client "restored" event.
 | |
|      *
 | |
|      * @param Invoice $invoice
 | |
|      * @return void
 | |
|      */
 | |
|     public function restored(Invoice $invoice)
 | |
|     {
 | |
|         //
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Handle the client "force deleted" event.
 | |
|      *
 | |
|      * @param Invoice $invoice
 | |
|      * @return void
 | |
|      */
 | |
|     public function forceDeleted(Invoice $invoice)
 | |
|     {
 | |
|         //
 | |
|     }
 | |
| }
 |