1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Repositories/BaseRepository.php

375 lines
13 KiB
PHP
Raw Normal View History

<?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
*/
namespace App\Repositories;
2023-06-02 07:53:33 +02:00
use App\Utils\Ninja;
use App\Models\Quote;
use App\Models\Client;
use App\Models\Credit;
use App\Utils\Helpers;
2023-06-02 07:53:33 +02:00
use App\Models\Company;
use App\Models\Invoice;
use App\Models\ClientContact;
2019-06-12 06:22:05 +02:00
use App\Utils\Traits\MakesHash;
2023-06-02 07:53:33 +02:00
use App\Models\RecurringInvoice;
use App\Jobs\Client\UpdateTaxData;
use App\Utils\Traits\SavesDocuments;
2023-06-02 07:53:33 +02:00
use App\Jobs\Product\UpdateOrCreateProduct;
2019-06-12 06:22:05 +02:00
class BaseRepository
{
2019-06-12 06:22:05 +02:00
use MakesHash;
use SavesDocuments;
2023-02-16 02:36:09 +01:00
public bool $import_mode = false;
private bool $new_model = false;
/**
* @param $entity
* @param $type
*
* @return string
*/
private function getEventClass($entity, $type)
{
2020-11-03 11:04:15 +01:00
return 'App\Events\\'.ucfirst(class_basename($entity)).'\\'.ucfirst(class_basename($entity)).'Was'.$type;
}
/**
* @param $entity
*/
2023-01-31 11:05:01 +01:00
public function archive($entity)
{
if ($entity->trashed()) {
return;
}
$entity->delete();
$className = $this->getEventClass($entity, 'Archived');
if (class_exists($className)) {
2021-05-06 23:12:07 +02:00
event(new $className($entity, $entity->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));
}
}
/**
* @param $entity
*/
public function restore($entity)
{
if (! $entity->trashed()) {
return;
}
$fromDeleted = false;
if ($entity->is_deleted) {
$fromDeleted = true;
$entity->is_deleted = false;
2023-01-31 11:05:01 +01:00
$entity->saveQuietly();
}
$entity->restore();
$className = $this->getEventClass($entity, 'Restored');
if (class_exists($className)) {
2021-05-06 23:12:07 +02:00
event(new $className($entity, $fromDeleted, $entity->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));
2023-01-31 08:59:02 +01:00
}
}
/**
* @param $entity
*/
public function delete($entity)
{
if ($entity->is_deleted) {
return;
}
$entity->is_deleted = true;
$entity->save();
$entity->delete();
$className = $this->getEventClass($entity, 'Deleted');
if (class_exists($className) && ! ($entity instanceof Company)) {
2021-05-06 23:12:07 +02:00
event(new $className($entity, $entity->company, Ninja::eventVars(auth()->user() ? auth()->user()->id : null)));
}
}
2021-01-15 01:59:23 +01:00
/* Returns an invoice if defined as a key in the $resource array*/
public function getInvitation($invitation, $resource)
{
2023-02-16 02:36:09 +01:00
if (is_array($invitation) && ! array_key_exists('key', $invitation)) {
return false;
2023-02-16 02:36:09 +01:00
}
$invitation_class = sprintf('App\\Models\\%sInvitation', $resource);
2022-07-28 06:09:13 +02:00
$invitation = $invitation_class::with('company')->where('key', $invitation['key'])->first();
return $invitation;
}
2021-01-15 01:59:23 +01:00
/* Clean return of a key rather than butchering the model*/
private function resolveEntityKey($model)
{
switch ($model) {
case ($model instanceof RecurringInvoice):
return 'recurring_invoice_id';
case ($model instanceof Invoice):
return 'invoice_id';
case ($model instanceof Quote):
return 'quote_id';
2021-01-15 01:59:23 +01:00
case ($model instanceof Credit):
return 'credit_id';
2021-01-15 01:59:23 +01:00
}
}
/**
2021-01-15 01:59:23 +01:00
* Alternative save used for Invoices, Recurring Invoices, Quotes & Credits.
*
2020-10-28 11:10:49 +01:00
* @param $data
* @param $model
* @return mixed
* @throws \ReflectionException
*/
protected function alternativeSave($data, $model)
{ //$start = microtime(true);
2021-05-26 04:37:16 +02:00
//forces the client_id if it doesn't exist
2023-02-16 02:36:09 +01:00
if (array_key_exists('client_id', $data)) {
2021-01-15 01:59:23 +01:00
$model->client_id = $data['client_id'];
2023-02-16 02:36:09 +01:00
}
2021-01-15 01:59:23 +01:00
$client = Client::with('group_settings')->where('id', $model->client_id)->withTrashed()->firstOrFail();
$state = [];
2021-01-15 01:59:23 +01:00
$resource = class_basename($model); //ie Invoice
$lcfirst_resource_id = $this->resolveEntityKey($model); //ie invoice_id
2020-10-08 11:12:44 +02:00
$state['starting_amount'] = $model->amount;
2020-10-28 11:10:49 +01:00
if (! $model->id) {
$company_defaults = $client->setCompanyDefaults($data, lcfirst($resource));
$model->uses_inclusive_taxes = $client->getSetting('inclusive_taxes');
$data = array_merge($company_defaults, $data);
}
2021-05-26 04:37:16 +02:00
$tmp_data = $data; //preserves the $data array
/* We need to unset some variable as we sometimes unguard the model */
2023-02-16 02:36:09 +01:00
if (isset($tmp_data['invitations'])) {
unset($tmp_data['invitations']);
2023-02-16 02:36:09 +01:00
}
2023-02-16 02:36:09 +01:00
if (isset($tmp_data['client_contacts'])) {
unset($tmp_data['client_contacts']);
2023-02-16 02:36:09 +01:00
}
$model->fill($tmp_data);
$model->custom_surcharge_tax1 = $client->company->custom_surcharge_taxes1;
$model->custom_surcharge_tax2 = $client->company->custom_surcharge_taxes2;
$model->custom_surcharge_tax3 = $client->company->custom_surcharge_taxes3;
$model->custom_surcharge_tax4 = $client->company->custom_surcharge_taxes4;
2023-02-16 02:36:09 +01:00
if (!$model->id) {
$this->new_model = true;
2023-02-16 02:36:09 +01:00
if (is_array($model->line_items) && !($model instanceof RecurringInvoice)) {
2023-04-22 09:07:22 +02:00
$model->line_items = (collect($model->line_items))->map(function ($item) use ($client) {
2022-10-21 06:00:33 +02:00
$item->notes = Helpers::processReservedKeywords($item->notes, $client);
2022-10-21 06:00:33 +02:00
return $item;
});
}
}
$model->saveQuietly();
2021-01-15 01:59:23 +01:00
/* Model now persisted, now lets do some child tasks */
2023-02-16 02:36:09 +01:00
if ($model instanceof Invoice) {
2021-08-01 00:44:04 +02:00
$model->service()->setReminder()->save();
2023-02-16 02:36:09 +01:00
}
2021-08-01 00:44:04 +02:00
/* Save any documents */
2023-02-16 02:36:09 +01:00
if (array_key_exists('documents', $data)) {
2021-01-15 01:59:23 +01:00
$this->saveDocuments($data['documents'], $model);
2023-02-16 02:36:09 +01:00
}
2023-02-16 02:36:09 +01:00
if (array_key_exists('file', $data)) {
2022-03-09 10:39:32 +01:00
$this->saveDocuments($data['file'], $model);
2023-02-16 02:36:09 +01:00
}
2022-03-09 10:39:32 +01:00
2021-01-15 01:59:23 +01:00
/* If invitations are present we need to filter existing invitations with the new ones */
if (isset($data['invitations'])) {
$invitations = collect($data['invitations']);
/* Get array of Keys which have been removed from the invitations array and soft delete each invitation */
$model->invitations->pluck('key')->diff($invitations->pluck('key'))->each(function ($invitation) use ($resource) {
$invitation_class = sprintf('App\\Models\\%sInvitation', $resource);
2021-10-14 08:59:03 +02:00
$invitation = $invitation_class::where('key', $invitation)->first();
2023-02-16 02:36:09 +01:00
if ($invitation) {
$invitation->delete();
2023-01-31 15:06:21 +01:00
}
});
foreach ($data['invitations'] as $invitation) {
//if no invitations are present - create one.
if (! $this->getInvitation($invitation, $resource)) {
2023-02-16 02:36:09 +01:00
if (isset($invitation['id'])) {
unset($invitation['id']);
2023-02-16 02:36:09 +01:00
}
//make sure we are creating an invite for a contact who belongs to the client only!
$contact = ClientContact::find($invitation['client_contact_id']);
2020-11-25 15:19:52 +01:00
if ($contact && $model->client_id == $contact->client_id) {
$invitation_class = sprintf('App\\Models\\%sInvitation', $resource);
2020-07-23 05:55:11 +02:00
$new_invitation = $invitation_class::withTrashed()
->where('client_contact_id', $contact->id)
->where($lcfirst_resource_id, $model->id)
->first();
if ($new_invitation && $new_invitation->trashed()) {
2020-07-23 05:55:11 +02:00
$new_invitation->restore();
} else {
2021-01-15 01:59:23 +01:00
$invitation_factory_class = sprintf('App\\Factory\\%sInvitationFactory', $resource);
2020-07-23 05:55:11 +02:00
$new_invitation = $invitation_factory_class::create($model->company_id, $model->user_id);
$new_invitation->{$lcfirst_resource_id} = $model->id;
$new_invitation->client_contact_id = $contact->id;
2021-11-06 01:46:12 +01:00
$new_invitation->key = $this->createDbHash($model->company->db);
2023-01-31 15:06:21 +01:00
$new_invitation->saveQuietly();
2020-07-23 05:55:11 +02:00
}
}
}
}
}
/* If no invitations have been created, this is our fail safe to maintain state*/
2023-02-16 02:36:09 +01:00
if ($model->invitations()->count() == 0) {
$model->service()->createInvitations();
2023-02-16 02:36:09 +01:00
}
2021-01-15 01:59:23 +01:00
/* Recalculate invoice amounts */
2020-06-22 00:34:02 +02:00
$model = $model->calc()->getInvoice();
2021-01-15 01:59:23 +01:00
/* We use this to compare to our starting amount */
$state['finished_amount'] = $model->amount;
2020-07-27 10:22:57 +02:00
2021-01-15 01:59:23 +01:00
/* Apply entity number */
$model = $model->service()->applyNumber()->save();
/* Handle attempts where the deposit is greater than the amount/balance of the invoice */
2023-02-16 02:36:09 +01:00
if ((int)$model->balance != 0 && $model->partial > $model->amount && $model->amount > 0) {
$model->partial = min($model->amount, $model->balance);
2023-02-16 02:36:09 +01:00
}
2021-07-29 04:19:56 +02:00
/* Update product details if necessary - if we are inside a transaction - do nothing */
2023-02-16 02:36:09 +01:00
if ($model->company->update_products && $model->id && \DB::transactionLevel() == 0) {
UpdateOrCreateProduct::dispatch($model->line_items, $model, $model->company);
2023-02-16 02:36:09 +01:00
}
2021-01-15 01:59:23 +01:00
/* Perform model specific tasks */
if ($model instanceof Invoice) {
2022-07-12 12:47:17 +02:00
if (($state['finished_amount'] != $state['starting_amount']) && ($model->status_id != Invoice::STATUS_DRAFT)) {
$model->service()->updateStatus()->save();
2022-07-10 07:53:23 +02:00
$model->client->service()->updateBalance(($state['finished_amount'] - $state['starting_amount']))->save();
2021-01-21 05:42:30 +01:00
$model->ledger()->updateInvoiceBalance(($state['finished_amount'] - $state['starting_amount']), "Update adjustment for invoice {$model->number}");
}
2023-02-16 02:36:09 +01:00
if (! $model->design_id) {
$model->design_id = intval($this->decodePrimaryKey($client->getSetting('invoice_design_id')));
2023-02-16 02:36:09 +01:00
}
2020-11-01 09:53:23 +01:00
//links tasks and expenses back to the invoice, but only if we are not in the middle of a transaction.
2023-02-16 02:36:09 +01:00
if (\DB::transactionLevel() == 0) {
$model->service()->linkEntities()->save();
2023-02-16 02:36:09 +01:00
}
2021-01-15 01:59:23 +01:00
2023-02-16 02:36:09 +01:00
if ($this->new_model) {
event('eloquent.created: App\Models\Invoice', $model);
2023-02-16 02:36:09 +01:00
} else {
2021-10-14 08:54:38 +02:00
event('eloquent.updated: App\Models\Invoice', $model);
2023-02-16 02:36:09 +01:00
}
2023-06-02 07:53:33 +02:00
/** If the client does not have tax_data - then populate this now */
if($client->country_id == 840 && !$client->tax_data && $model->company->calculate_taxes && !$model->company->account->isFreeHostedClient())
UpdateTaxData::dispatch($client, $client->company);
}
2021-01-15 01:59:23 +01:00
if ($model instanceof Credit) {
2020-10-08 06:05:38 +02:00
$model = $model->calc()->getCredit();
2020-10-28 11:10:49 +01:00
2023-02-16 02:36:09 +01:00
if (! $model->design_id) {
2020-06-29 03:04:09 +02:00
$model->design_id = $this->decodePrimaryKey($client->getSetting('credit_design_id'));
2023-02-16 02:36:09 +01:00
}
2023-02-16 02:36:09 +01:00
if (array_key_exists('invoice_id', $data) && $data['invoice_id']) {
2022-01-28 06:30:40 +01:00
$model->invoice_id = $data['invoice_id'];
2023-02-16 02:36:09 +01:00
}
2023-02-16 02:36:09 +01:00
if ($this->new_model) {
event('eloquent.created: App\Models\Credit', $model);
2023-02-16 02:36:09 +01:00
} else {
2021-10-14 08:54:38 +02:00
event('eloquent.updated: App\Models\Credit', $model);
2023-02-16 02:36:09 +01:00
}
2021-10-14 08:54:38 +02:00
2023-02-16 02:36:09 +01:00
if (($state['finished_amount'] != $state['starting_amount']) && ($model->status_id != Credit::STATUS_DRAFT)) {
2022-08-22 00:48:52 +02:00
$model->client->service()->adjustCreditBalance(($state['finished_amount'] - $state['starting_amount']))->save();
}
}
2021-01-15 01:59:23 +01:00
if ($model instanceof Quote) {
2023-02-16 02:36:09 +01:00
if (! $model->design_id) {
$model->design_id = intval($this->decodePrimaryKey($client->getSetting('quote_design_id')));
2023-02-16 02:36:09 +01:00
}
2021-06-19 06:05:45 +02:00
$model = $model->calc()->getQuote();
2021-01-15 01:59:23 +01:00
2023-02-16 02:36:09 +01:00
if ($this->new_model) {
event('eloquent.created: App\Models\Quote', $model);
2023-02-16 02:36:09 +01:00
} else {
2021-10-14 08:54:38 +02:00
event('eloquent.updated: App\Models\Quote', $model);
2023-02-16 02:36:09 +01:00
}
2020-06-30 05:31:30 +02:00
}
2021-01-15 01:59:23 +01:00
if ($model instanceof RecurringInvoice) {
2023-02-16 02:36:09 +01:00
if (! $model->design_id) {
$model->design_id = intval($this->decodePrimaryKey($client->getSetting('invoice_design_id')));
2023-02-16 02:36:09 +01:00
}
$model = $model->calc()->getRecurringInvoice();
2021-01-15 01:59:23 +01:00
2023-02-16 02:36:09 +01:00
if ($this->new_model) {
event('eloquent.created: App\Models\RecurringInvoice', $model);
2023-02-16 02:36:09 +01:00
} else {
2021-10-14 08:54:38 +02:00
event('eloquent.updated: App\Models\RecurringInvoice', $model);
2023-02-16 02:36:09 +01:00
}
}
2023-01-31 15:06:21 +01:00
$model->saveQuietly();
2020-06-30 06:10:40 +02:00
return $model->fresh();
2020-06-30 05:31:30 +02:00
}
}