mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 10:47:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			455 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			455 lines
		
	
	
		
			17 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| /**
 | |
|  * PiggyBankRepository.php
 | |
|  * Copyright (c) 2019 james@firefly-iii.org
 | |
|  *
 | |
|  * This file is part of Firefly III (https://github.com/firefly-iii).
 | |
|  *
 | |
|  * This program is free software: you can redistribute it and/or modify
 | |
|  * it under the terms of the GNU Affero General Public License as
 | |
|  * published by the Free Software Foundation, either version 3 of the
 | |
|  * License, or (at your option) any later version.
 | |
|  *
 | |
|  * This program is distributed in the hope that it will be useful,
 | |
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | |
|  * GNU Affero General Public License for more details.
 | |
|  *
 | |
|  * You should have received a copy of the GNU Affero General Public License
 | |
|  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 | |
|  */
 | |
| declare(strict_types=1);
 | |
| 
 | |
| namespace FireflyIII\Repositories\PiggyBank;
 | |
| 
 | |
| use Carbon\Carbon;
 | |
| use FireflyIII\Events\Model\PiggyBank\ChangedAmount;
 | |
| use FireflyIII\Exceptions\FireflyException;
 | |
| use FireflyIII\Factory\PiggyBankFactory;
 | |
| use FireflyIII\Models\Account;
 | |
| use FireflyIII\Models\Attachment;
 | |
| use FireflyIII\Models\Note;
 | |
| use FireflyIII\Models\PiggyBank;
 | |
| use FireflyIII\Models\PiggyBankRepetition;
 | |
| use FireflyIII\Models\Transaction;
 | |
| use FireflyIII\Models\TransactionJournal;
 | |
| use FireflyIII\Repositories\Account\AccountRepositoryInterface;
 | |
| use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
 | |
| use FireflyIII\Support\Facades\Steam;
 | |
| use FireflyIII\Support\Repositories\UserGroup\UserGroupInterface;
 | |
| use FireflyIII\Support\Repositories\UserGroup\UserGroupTrait;
 | |
| use FireflyIII\User;
 | |
| use Illuminate\Support\Collection;
 | |
| use Illuminate\Support\Facades\Log;
 | |
| use Illuminate\Support\Facades\Storage;
 | |
| use Override;
 | |
| 
 | |
| /**
 | |
|  * Class PiggyBankRepository.
 | |
|  */
 | |
| class PiggyBankRepository implements PiggyBankRepositoryInterface, UserGroupInterface
 | |
| {
 | |
|     use ModifiesPiggyBanks;
 | |
| 
 | |
|     use UserGroupTrait;
 | |
| 
 | |
|     public function destroyAll(): void
 | |
|     {
 | |
|         Log::channel('audit')->info('Delete all piggy banks through destroyAll');
 | |
| 
 | |
|         PiggyBank::leftJoin('account_piggy_bank', 'account_piggy_bank.piggy_bank_id', '=', 'piggy_banks.id')
 | |
|             ->leftJoin('accounts', 'accounts.id', '=', 'account_piggy_bank.account_id')
 | |
|             ->where('accounts.user_id', $this->user->id)
 | |
|             ->delete()
 | |
|         ;
 | |
|     }
 | |
| 
 | |
|     public function findPiggyBank(?int $piggyBankId, ?string $piggyBankName): ?PiggyBank
 | |
|     {
 | |
|         Log::debug('Searching for piggy information.');
 | |
| 
 | |
|         if (null !== $piggyBankId) {
 | |
|             $searchResult = $this->find($piggyBankId);
 | |
|             if ($searchResult instanceof PiggyBank) {
 | |
|                 Log::debug(sprintf('Found piggy based on #%d, will return it.', $piggyBankId));
 | |
| 
 | |
|                 return $searchResult;
 | |
|             }
 | |
|         }
 | |
|         if (null !== $piggyBankName) {
 | |
|             $searchResult = $this->findByName($piggyBankName);
 | |
|             if ($searchResult instanceof PiggyBank) {
 | |
|                 Log::debug(sprintf('Found piggy based on "%s", will return it.', $piggyBankName));
 | |
| 
 | |
|                 return $searchResult;
 | |
|             }
 | |
|         }
 | |
|         Log::debug('Found no piggy bank.');
 | |
| 
 | |
|         return null;
 | |
|     }
 | |
| 
 | |
|     public function find(int $piggyBankId): ?PiggyBank
 | |
|     {
 | |
|         return PiggyBank::leftJoin('account_piggy_bank', 'account_piggy_bank.piggy_bank_id', '=', 'piggy_banks.id')
 | |
|             ->leftJoin('accounts', 'accounts.id', '=', 'account_piggy_bank.account_id')
 | |
|             ->where('accounts.user_id', $this->user->id)
 | |
|             ->where('piggy_banks.id', $piggyBankId)->first(['piggy_banks.*'])
 | |
|         ;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Find by name or return NULL.
 | |
|      */
 | |
|     public function findByName(string $name): ?PiggyBank
 | |
|     {
 | |
|         return PiggyBank::leftJoin('account_piggy_bank', 'account_piggy_bank.piggy_bank_id', '=', 'piggy_banks.id')
 | |
|             ->leftJoin('accounts', 'accounts.id', '=', 'account_piggy_bank.account_id')
 | |
|             ->where('accounts.user_id', $this->user->id)
 | |
|             ->where('piggy_banks.name', $name)->first(['piggy_banks.*'])
 | |
|         ;
 | |
|     }
 | |
| 
 | |
|     public function getAttachments(PiggyBank $piggyBank): Collection
 | |
|     {
 | |
|         $set  = $piggyBank->attachments()->get();
 | |
| 
 | |
|         $disk = Storage::disk('upload');
 | |
| 
 | |
|         return $set->each(
 | |
|             static function (Attachment $attachment) use ($disk) { // @phpstan-ignore-line
 | |
|                 $notes                   = $attachment->notes()->first();
 | |
|                 $attachment->file_exists = $disk->exists($attachment->fileName());
 | |
|                 $attachment->notes_text  = null !== $notes ? $notes->text : '';
 | |
| 
 | |
|                 return $attachment;
 | |
|             }
 | |
|         );
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Get current amount saved in piggy bank.
 | |
|      */
 | |
|     public function getCurrentPrimaryCurrencyAmount(PiggyBank $piggyBank, ?Account $account = null): string
 | |
|     {
 | |
|         $sum = '0';
 | |
|         foreach ($piggyBank->accounts as $current) {
 | |
|             if ($account instanceof Account && $account->id !== $current->id) {
 | |
|                 continue;
 | |
|             }
 | |
|             $amount = (string) $current->pivot->native_current_amount;
 | |
|             $amount = '' === $amount ? '0' : $amount;
 | |
|             $sum    = bcadd($sum, $amount);
 | |
|         }
 | |
| 
 | |
|         return $sum;
 | |
|     }
 | |
| 
 | |
|     public function getEvents(PiggyBank $piggyBank): Collection
 | |
|     {
 | |
|         return $piggyBank->piggyBankEvents()->orderBy('date', 'DESC')->orderBy('id', 'DESC')->get();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Used for connecting to a piggy bank.
 | |
|      *
 | |
|      * @throws FireflyException
 | |
|      */
 | |
|     public function getExactAmount(PiggyBank $piggyBank, TransactionJournal $journal): string
 | |
|     {
 | |
|         Log::debug(sprintf('Now in getExactAmount(%d, %d)', $piggyBank->id, $journal->id));
 | |
| 
 | |
|         $operator        = null;
 | |
|         $currency        = null;
 | |
| 
 | |
|         /** @var JournalRepositoryInterface $journalRepost */
 | |
|         $journalRepost   = app(JournalRepositoryInterface::class);
 | |
|         $journalRepost->setUser($this->user);
 | |
| 
 | |
|         /** @var AccountRepositoryInterface $accountRepos */
 | |
|         $accountRepos    = app(AccountRepositoryInterface::class);
 | |
|         $accountRepos->setUser($this->user);
 | |
| 
 | |
|         $primaryCurrency = app('amount')->getPrimaryCurrencyByUserGroup($this->user->userGroup);
 | |
| 
 | |
|         Log::debug(sprintf('Piggy bank #%d currency is %s', $piggyBank->id, $piggyBank->transactionCurrency->code));
 | |
| 
 | |
|         /** @var Transaction $source */
 | |
|         $source          = $journal->transactions()->with(['account'])->where('amount', '<', 0)->first();
 | |
| 
 | |
|         /** @var Transaction $destination */
 | |
|         $destination     = $journal->transactions()->with(['account'])->where('amount', '>', 0)->first();
 | |
|         $hits            = 0;
 | |
|         foreach ($piggyBank->accounts as $account) {
 | |
| 
 | |
|             // matches source, which means amount will be removed from piggy:
 | |
|             if ($account->id === $source->account_id) {
 | |
|                 $operator = 'negative';
 | |
|                 $currency = $accountRepos->getAccountCurrency($source->account) ?? $primaryCurrency;
 | |
|                 Log::debug(sprintf('Currency will draw money out of piggy bank. Source currency is %s', $currency->code));
 | |
|                 ++$hits;
 | |
|             }
 | |
|             // matches destination, which means amount will be added to piggy.
 | |
|             if ($account->id === $destination->account_id) {
 | |
|                 $operator = 'positive';
 | |
|                 $currency = $accountRepos->getAccountCurrency($destination->account) ?? $primaryCurrency;
 | |
|                 Log::debug(sprintf('Currency will add money to piggy bank. Destination currency is %s', $currency->code));
 | |
|                 ++$hits;
 | |
|             }
 | |
|         }
 | |
|         if ($hits > 1) {
 | |
|             Log::debug(sprintf('Transaction journal is related to %d of the accounts, cannot determine what to do. Return "0".', $hits));
 | |
| 
 | |
|             return '0';
 | |
|         }
 | |
| 
 | |
| 
 | |
|         if (null === $operator || null === $currency) {
 | |
|             Log::debug('Currency is NULL and operator is NULL, return "0".');
 | |
| 
 | |
|             return '0';
 | |
|         }
 | |
|         // currency of the account + the piggy bank currency are almost the same.
 | |
|         // which amount from the transaction matches?
 | |
|         $amount          = null;
 | |
|         if ((int) $source->transaction_currency_id === $currency->id) {
 | |
|             Log::debug('Use normal amount');
 | |
|             $amount = Steam::{$operator}($source->amount); // @phpstan-ignore-line
 | |
|         }
 | |
|         if ((int) $source->foreign_currency_id === $currency->id) {
 | |
|             Log::debug('Use foreign amount');
 | |
|             $amount = Steam::{$operator}($source->foreign_amount); // @phpstan-ignore-line
 | |
|         }
 | |
|         if (null === $amount) {
 | |
|             Log::debug('No match on currency, so amount remains null, return "0".');
 | |
| 
 | |
|             return '0';
 | |
|         }
 | |
| 
 | |
|         Log::debug(sprintf('The currency is %s and the amount is %s', $currency->code, $amount));
 | |
|         $currentAmount   = $this->getCurrentAmount($piggyBank);
 | |
|         $room            = bcsub($piggyBank->target_amount, $currentAmount);
 | |
|         $compare         = bcmul($currentAmount, '-1');
 | |
| 
 | |
|         if (0 === bccomp($piggyBank->target_amount, '0')) {
 | |
|             // amount is zero? then the "room" is positive amount of we wish to add or remove.
 | |
|             $room = Steam::positive($amount);
 | |
|             Log::debug(sprintf('Room is now %s', $room));
 | |
|         }
 | |
| 
 | |
|         Log::debug(sprintf('Will add/remove %f to piggy bank #%d ("%s")', $amount, $piggyBank->id, $piggyBank->name));
 | |
| 
 | |
|         // if the amount is positive, make sure it fits in piggy bank:
 | |
|         if (1 === bccomp($amount, '0') && -1 === bccomp($room, $amount)) {
 | |
|             // amount is positive and $room is smaller than $amount
 | |
|             Log::debug(sprintf('Room in piggy bank for extra money is %f', $room));
 | |
|             Log::debug(sprintf('There is NO room to add %f to piggy bank #%d ("%s")', $amount, $piggyBank->id, $piggyBank->name));
 | |
|             Log::debug(sprintf('New amount is %f', $room));
 | |
| 
 | |
|             return $room;
 | |
|         }
 | |
| 
 | |
|         // amount is negative and $currentAmount is smaller than $amount
 | |
|         if (-1 === bccomp($amount, '0') && 1 === bccomp($compare, $amount)) {
 | |
|             Log::debug(sprintf('Max amount to remove is %f', $currentAmount));
 | |
|             Log::debug(sprintf('Cannot remove %f from piggy bank #%d ("%s")', $amount, $piggyBank->id, $piggyBank->name));
 | |
|             Log::debug(sprintf('New amount is %f', $compare));
 | |
| 
 | |
|             return $compare;
 | |
|         }
 | |
| 
 | |
|         return $amount;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Get current amount saved in piggy bank.
 | |
|      */
 | |
|     public function getCurrentAmount(PiggyBank $piggyBank, ?Account $account = null): string
 | |
|     {
 | |
|         $sum = '0';
 | |
|         foreach ($piggyBank->accounts as $current) {
 | |
|             if ($account instanceof Account && $account->id !== $current->id) {
 | |
|                 continue;
 | |
|             }
 | |
|             $amount = (string) $current->pivot->current_amount;
 | |
|             $amount = '' === $amount ? '0' : $amount;
 | |
|             $sum    = bcadd($sum, $amount);
 | |
|         }
 | |
|         Log::debug(sprintf('Current amount in piggy bank #%d ("%s") is %s', $piggyBank->id, $piggyBank->name, $sum));
 | |
| 
 | |
|         return $sum;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Return note for piggy bank.
 | |
|      */
 | |
|     public function getNoteText(PiggyBank $piggyBank): string
 | |
|     {
 | |
|         /** @var null|Note $note */
 | |
|         $note = $piggyBank->notes()->first();
 | |
| 
 | |
|         return (string) $note?->text;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Also add amount in name.
 | |
|      */
 | |
|     public function getPiggyBanksWithAmount(): Collection
 | |
|     {
 | |
|         $set = $this->getPiggyBanks();
 | |
| 
 | |
|         /** @var PiggyBank $piggy */
 | |
|         foreach ($set as $piggy) {
 | |
|             $currentAmount = $this->getCurrentAmount($piggy);
 | |
|             $piggy->name   = sprintf('%s (%s)', $piggy->name, app('amount')->formatAnything($piggy->transactionCurrency, $currentAmount, false));
 | |
|         }
 | |
| 
 | |
|         return $set;
 | |
|     }
 | |
| 
 | |
|     public function getPiggyBanks(): Collection
 | |
|     {
 | |
|         $query = PiggyBank::leftJoin('account_piggy_bank', 'account_piggy_bank.piggy_bank_id', '=', 'piggy_banks.id')
 | |
|             ->leftJoin('accounts', 'accounts.id', '=', 'account_piggy_bank.account_id')
 | |
|         ;
 | |
|         if (!$this->user instanceof User) {
 | |
|             $query->where('accounts.user_group_id', $this->userGroup->id);
 | |
|         }
 | |
|         if ($this->user instanceof User) {
 | |
|             $query->where('accounts.user_id', $this->user->id);
 | |
|         }
 | |
| 
 | |
|         return $query
 | |
|             ->with(
 | |
|                 [
 | |
|                     'objectGroups',
 | |
|                 ]
 | |
|             )
 | |
|             ->orderBy('piggy_banks.order', 'ASC')->distinct()->get(['piggy_banks.*'])
 | |
|         ;
 | |
|     }
 | |
| 
 | |
|     public function getRepetition(PiggyBank $piggyBank, bool $overrule = false): ?PiggyBankRepetition
 | |
|     {
 | |
|         if (false === $overrule) {
 | |
|             throw new FireflyException('[b] Piggy bank repetitions are EOL.');
 | |
|         }
 | |
|         Log::warning('Piggy bank repetitions are EOL.');
 | |
| 
 | |
|         /** @var null|PiggyBankRepetition */
 | |
|         return $piggyBank->piggyBankRepetitions()->first();
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Returns the suggested amount the user should save per month, or "".
 | |
|      */
 | |
|     public function getSuggestedMonthlyAmount(PiggyBank $piggyBank): string
 | |
|     {
 | |
|         $savePerMonth  = '0';
 | |
|         $currentAmount = $this->getCurrentAmount($piggyBank);
 | |
|         if (null !== $piggyBank->target_date && $currentAmount < $piggyBank->target_amount) {
 | |
|             $now             = today(config('app.timezone'));
 | |
|             $startDate       = null !== $piggyBank->start_date && $piggyBank->start_date->gte($now) ? $piggyBank->start_date : $now;
 | |
|             $diffInMonths    = (int) $startDate->diffInMonths($piggyBank->target_date);
 | |
|             $remainingAmount = bcsub((string) $piggyBank->target_amount, $currentAmount);
 | |
| 
 | |
|             // more than 1 month to go and still need money to save:
 | |
|             if ($diffInMonths > 0 && 1 === bccomp($remainingAmount, '0')) {
 | |
|                 $savePerMonth = bcdiv($remainingAmount, (string) $diffInMonths);
 | |
|             }
 | |
| 
 | |
|             // less than 1 month to go but still need money to save:
 | |
|             if (0 === $diffInMonths && 1 === bccomp($remainingAmount, '0')) {
 | |
|                 $savePerMonth = $remainingAmount;
 | |
|             }
 | |
|         }
 | |
| 
 | |
|         return $savePerMonth;
 | |
|     }
 | |
| 
 | |
|     /**
 | |
|      * Get for piggy account what is left to put in piggies.
 | |
|      */
 | |
|     public function leftOnAccount(PiggyBank $piggyBank, Account $account, Carbon $date): string
 | |
|     {
 | |
|         Log::debug(sprintf('leftOnAccount("%s","%s","%s")', $piggyBank->name, $account->name, $date->format('Y-m-d H:i:s')));
 | |
|         Log::debug(sprintf('leftOnAccount: Call finalAccountBalance with date/time "%s"', $date->toIso8601String()));
 | |
|         // 2025-10-08 replace finalAccountBalance with accountsBalancesOptimized.
 | |
|         $balance = Steam::accountsBalancesOptimized(new Collection()->push($account), $date)[$account->id]['balance'];
 | |
|         // $balance = Steam::finalAccountBalance($account, $date)['balance'];
 | |
| 
 | |
|         Log::debug(sprintf('Balance is: %s', $balance));
 | |
| 
 | |
|         /** @var Collection $piggies */
 | |
|         $piggies = $account->piggyBanks;
 | |
| 
 | |
|         /** @var PiggyBank $current */
 | |
|         foreach ($piggies as $current) {
 | |
|             $amount  = $this->getCurrentAmount($current, $account);
 | |
|             $balance = bcsub((string) $balance, $amount);
 | |
|             Log::debug(sprintf('Piggy bank: #%d with amount %s, balance is now %s', $current->id, $amount, $balance));
 | |
|         }
 | |
|         Log::debug(sprintf('Final balance is: %s', $balance));
 | |
| 
 | |
|         return $balance;
 | |
|     }
 | |
| 
 | |
|     #[Override]
 | |
|     public function purgeAll(): void
 | |
|     {
 | |
|         PiggyBank::withTrashed()
 | |
|             ->whereNotNull('piggy_banks.deleted_at')
 | |
|             ->leftJoin('account_piggy_bank', 'account_piggy_bank.piggy_bank_id', '=', 'piggy_banks.id')
 | |
|             ->leftJoin('accounts', 'accounts.id', '=', 'account_piggy_bank.account_id')
 | |
|             ->where('accounts.user_id', $this->user->id)
 | |
|             ->with(
 | |
|                 [
 | |
|                     'objectGroups',
 | |
|                 ]
 | |
|             )
 | |
|             ->delete()
 | |
|         ;
 | |
|     }
 | |
| 
 | |
|     #[Override]
 | |
|     public function resetOrder(): void
 | |
|     {
 | |
|         $factory       = new PiggyBankFactory();
 | |
|         $factory->user = $this->user;
 | |
|         $factory->resetOrder();
 | |
|     }
 | |
| 
 | |
|     public function searchPiggyBank(string $query, int $limit): Collection
 | |
|     {
 | |
|         $search = PiggyBank::leftJoin('account_piggy_bank', 'account_piggy_bank.piggy_bank_id', '=', 'piggy_banks.id')
 | |
|             ->leftJoin('accounts', 'accounts.id', '=', 'account_piggy_bank.account_id')
 | |
|             ->where('accounts.user_id', $this->user->id)
 | |
|             ->with(
 | |
|                 [
 | |
|                     'objectGroups',
 | |
|                 ]
 | |
|             )
 | |
|             ->orderBy('piggy_banks.order', 'ASC')->distinct()
 | |
|         ;
 | |
|         if ('' !== $query) {
 | |
|             $search->whereLike('piggy_banks.name', sprintf('%%%s%%', $query));
 | |
|         }
 | |
|         $search->orderBy('piggy_banks.order', 'ASC')
 | |
|             ->orderBy('piggy_banks.name', 'ASC')
 | |
|         ;
 | |
| 
 | |
|         return $search->take($limit)->get(['piggy_banks.*']);
 | |
|     }
 | |
| 
 | |
|     public function resetHistory(PiggyBank $piggyBank): void
 | |
|     {
 | |
|         $piggyBank->piggyBankEvents()->delete();
 | |
|         foreach ($piggyBank->accounts as $account) {
 | |
|             if (0 !== bccomp('0', (string) $account->pivot->current_amount)) {
 | |
|                 event(new ChangedAmount($piggyBank, $account->pivot->current_amount, null, null));
 | |
|             }
 | |
|         }
 | |
|     }
 | |
| }
 |