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
|
|
|
|
*
|
2024-04-12 06:15:41 +02:00
|
|
|
* @copyright Copyright (c) 2024. 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-05-25 08:41:29 +02:00
|
|
|
use App\Jobs\Client\CheckVat;
|
2023-05-15 23:53:29 +02:00
|
|
|
use App\Jobs\Client\UpdateTaxData;
|
2023-10-26 04:57:44 +02:00
|
|
|
use App\Jobs\Util\WebhookHandler;
|
|
|
|
use App\Models\Client;
|
|
|
|
use App\Models\Webhook;
|
2019-04-19 11:09:55 +02:00
|
|
|
|
|
|
|
class ClientObserver
|
|
|
|
{
|
2023-01-31 15:06:21 +01:00
|
|
|
public $afterCommit = true;
|
2023-01-31 11:05:01 +01:00
|
|
|
|
2023-05-25 08:41:29 +02:00
|
|
|
private $eu_country_codes = [
|
2023-10-26 04:57:44 +02:00
|
|
|
'AT' => '40',
|
|
|
|
'BE' => '56',
|
|
|
|
'BG' => '100',
|
|
|
|
'CY' => '196',
|
|
|
|
'CZ' => '203',
|
|
|
|
'DE' => '276',
|
|
|
|
'DK' => '208',
|
|
|
|
'EE' => '233',
|
|
|
|
'ES' => '724',
|
|
|
|
'FI' => '246',
|
|
|
|
'FR' => '250',
|
|
|
|
'GR' => '300',
|
|
|
|
'HR' => '191',
|
|
|
|
'HU' => '348',
|
|
|
|
'IE' => '372',
|
|
|
|
'IT' => '380',
|
|
|
|
'LT' => '440',
|
|
|
|
'LU' => '442',
|
|
|
|
'LV' => '428',
|
|
|
|
'MT' => '470',
|
|
|
|
'NL' => '528',
|
|
|
|
'PL' => '616',
|
|
|
|
'PT' => '620',
|
|
|
|
'RO' => '642',
|
|
|
|
'SE' => '752',
|
|
|
|
'SI' => '705',
|
|
|
|
'SK' => '703',
|
2023-05-25 08:41:29 +02:00
|
|
|
];
|
|
|
|
|
2019-04-19 11:09:55 +02:00
|
|
|
/**
|
|
|
|
* Handle the client "created" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Client $client
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function created(Client $client)
|
|
|
|
{
|
2023-06-02 07:53:33 +02:00
|
|
|
/** Fix Tax Data for Clients */
|
|
|
|
if ($client->country_id == 840 && $client->company->calculate_taxes && !$client->company->account->isFreeHostedClient()) {
|
2023-05-15 23:43:26 +02:00
|
|
|
UpdateTaxData::dispatch($client, $client->company);
|
|
|
|
}
|
|
|
|
|
2023-06-02 07:53:33 +02:00
|
|
|
/** Check VAT records for client */
|
2023-05-25 08:41:29 +02:00
|
|
|
if(in_array($client->country_id, $this->eu_country_codes) && $client->company->calculate_taxes) {
|
|
|
|
CheckVat::dispatch($client, $client->company);
|
|
|
|
}
|
|
|
|
|
2023-01-31 13:53:54 +01:00
|
|
|
$subscriptions = Webhook::where('company_id', $client->company_id)
|
2020-11-25 01:23:39 +01:00
|
|
|
->where('event_id', Webhook::EVENT_CREATE_CLIENT)
|
|
|
|
->exists();
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($subscriptions) {
|
2023-02-01 05:00:45 +01:00
|
|
|
WebhookHandler::dispatch(Webhook::EVENT_CREATE_CLIENT, $client, $client->company)->delay(0);
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the client "updated" event.
|
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Client $client
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function updated(Client $client)
|
2020-09-06 11:38:10 +02:00
|
|
|
{
|
2023-05-25 08:41:29 +02:00
|
|
|
|
|
|
|
/** Monitor postal code changes for US based clients for tax calculations */
|
2023-06-23 06:51:52 +02:00
|
|
|
if(($client->getOriginal('shipping_postal_code') != $client->shipping_postal_code || $client->getOriginal('postal_code') != $client->postal_code) && $client->country_id == 840 && $client->company->calculate_taxes && !$client->company->account->isFreeHostedClient()) {
|
2023-05-15 23:43:26 +02:00
|
|
|
UpdateTaxData::dispatch($client, $client->company);
|
|
|
|
}
|
|
|
|
|
2023-05-25 08:41:29 +02:00
|
|
|
/** Monitor vat numbers for EU based clients for tax calculations */
|
|
|
|
if($client->getOriginal('vat_number') != $client->vat_number && in_array($client->country_id, $this->eu_country_codes) && $client->company->calculate_taxes) {
|
|
|
|
CheckVat::dispatch($client, $client->company);
|
|
|
|
}
|
|
|
|
|
2023-01-31 11:05:01 +01:00
|
|
|
$event = Webhook::EVENT_UPDATE_CLIENT;
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($client->getOriginal('deleted_at') && !$client->deleted_at) {
|
2023-01-31 12:21:23 +01:00
|
|
|
$event = Webhook::EVENT_RESTORE_CLIENT;
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($client->is_deleted) {
|
|
|
|
$event = Webhook::EVENT_DELETE_CLIENT;
|
|
|
|
}
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2023-01-31 13:53:54 +01:00
|
|
|
$subscriptions = Webhook::where('company_id', $client->company_id)
|
2023-01-31 11:05:01 +01:00
|
|
|
->where('event_id', $event)
|
2020-11-25 01:23:39 +01:00
|
|
|
->exists();
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($subscriptions) {
|
2023-02-08 12:37:12 +01:00
|
|
|
WebhookHandler::dispatch($event, $client, $client->company, 'client')->delay(0);
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2023-01-31 11:05:01 +01:00
|
|
|
* Handle the client "archived" event.
|
2019-04-19 11:09:55 +02:00
|
|
|
*
|
2020-10-28 11:10:49 +01:00
|
|
|
* @param Client $client
|
2019-04-19 11:09:55 +02:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function deleted(Client $client)
|
|
|
|
{
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($client->is_deleted) {
|
2023-01-31 11:05:01 +01:00
|
|
|
return;
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2024-01-14 05:05:00 +01:00
|
|
|
|
2023-01-31 13:53:54 +01:00
|
|
|
$subscriptions = Webhook::where('company_id', $client->company_id)
|
2023-01-31 11:05:01 +01:00
|
|
|
->where('event_id', Webhook::EVENT_ARCHIVE_CLIENT)
|
2020-11-25 01:23:39 +01:00
|
|
|
->exists();
|
|
|
|
|
2023-02-16 02:36:09 +01:00
|
|
|
if ($subscriptions) {
|
2023-02-01 05:00:45 +01:00
|
|
|
WebhookHandler::dispatch(Webhook::EVENT_ARCHIVE_CLIENT, $client, $client->company)->delay(0);
|
2023-02-16 02:36:09 +01:00
|
|
|
}
|
2019-04-19 11:09:55 +02:00
|
|
|
}
|
|
|
|
}
|