Files
firefly-iii/app/Repositories/PiggyBank/PiggyBankRepository.php

373 lines
14 KiB
PHP
Raw Normal View History

2015-02-25 19:32:33 +01:00
<?php
2022-12-29 19:42:26 +01:00
/**
* PiggyBankRepository.php
2020-02-16 14:00:57 +01:00
* 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.
2017-10-21 08:40:00 +02:00
*
* This program is distributed in the hope that it will be useful,
2017-10-21 08:40:00 +02:00
* 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.
2017-10-21 08:40:00 +02:00
*
* 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);
2015-02-25 19:32:33 +01:00
namespace FireflyIII\Repositories\PiggyBank;
2015-04-20 21:57:20 +02:00
use Carbon\Carbon;
2022-12-29 19:42:26 +01:00
use FireflyIII\Exceptions\FireflyException;
use FireflyIII\Factory\PiggyBankFactory;
2024-12-14 17:32:03 +01:00
use FireflyIII\Models\Account;
2020-05-07 06:44:01 +02:00
use FireflyIII\Models\Attachment;
2016-10-22 10:13:49 +02:00
use FireflyIII\Models\Note;
2015-02-25 19:32:33 +01:00
use FireflyIII\Models\PiggyBank;
2017-04-28 07:51:09 +02:00
use FireflyIII\Models\PiggyBankRepetition;
2019-09-14 18:02:24 +02:00
use FireflyIII\Models\Transaction;
2017-04-28 07:51:09 +02:00
use FireflyIII\Models\TransactionJournal;
2019-09-14 18:02:24 +02:00
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
use FireflyIII\User;
2023-02-19 08:43:28 +01:00
use Illuminate\Contracts\Auth\Authenticatable;
2015-02-27 11:02:08 +01:00
use Illuminate\Support\Collection;
2024-01-05 10:55:46 +01:00
use Illuminate\Support\Facades\Log;
2015-02-25 19:32:33 +01:00
/**
2017-11-15 12:25:49 +01:00
* Class PiggyBankRepository.
2015-02-25 19:32:33 +01:00
*/
class PiggyBankRepository implements PiggyBankRepositoryInterface
{
2020-03-21 14:20:40 +01:00
use ModifiesPiggyBanks;
2020-09-07 13:03:10 +02:00
2020-10-23 19:11:25 +02:00
private User $user;
2015-04-20 21:57:20 +02:00
2021-03-12 06:20:01 +01:00
public function destroyAll(): void
{
2024-01-05 10:55:46 +01:00
Log::channel('audit')->info('Delete all piggy banks through destroyAll');
2021-03-12 06:20:01 +01:00
$this->user->piggyBanks()->delete();
}
public function findPiggyBank(?int $piggyBankId, ?string $piggyBankName): ?PiggyBank
{
2023-10-29 06:33:43 +01:00
app('log')->debug('Searching for piggy information.');
if (null !== $piggyBankId) {
2023-11-05 08:15:17 +01:00
$searchResult = $this->find($piggyBankId);
if (null !== $searchResult) {
2023-10-29 06:33:43 +01:00
app('log')->debug(sprintf('Found piggy based on #%d, will return it.', $piggyBankId));
return $searchResult;
}
}
if (null !== $piggyBankName) {
2023-11-05 08:15:17 +01:00
$searchResult = $this->findByName($piggyBankName);
if (null !== $searchResult) {
2023-10-29 06:33:43 +01:00
app('log')->debug(sprintf('Found piggy based on "%s", will return it.', $piggyBankName));
return $searchResult;
}
}
2023-10-29 06:33:43 +01:00
app('log')->debug('Found nothing');
return null;
}
2023-06-21 12:34:58 +02:00
public function find(int $piggyBankId): ?PiggyBank
{
// phpstan doesn't get the Model.
return $this->user->piggyBanks()->find($piggyBankId); // @phpstan-ignore-line
}
/**
* Find by name or return NULL.
*/
public function findByName(string $name): ?PiggyBank
{
return $this->user->piggyBanks()->where('piggy_banks.name', $name)->first(['piggy_banks.*']);
}
2021-03-12 06:20:01 +01:00
public function getAttachments(PiggyBank $piggyBank): Collection
{
2024-12-14 17:32:03 +01:00
$set = $piggyBank->attachments()->get();
2021-03-12 06:20:01 +01:00
2023-12-20 19:35:52 +01:00
/** @var \Storage $disk */
$disk = \Storage::disk('upload');
2021-03-12 06:20:01 +01:00
return $set->each(
static function (Attachment $attachment) use ($disk) {
$notes = $attachment->notes()->first();
$attachment->file_exists = $disk->exists($attachment->fileName());
2023-12-10 06:51:59 +01:00
$attachment->notes_text = null !== $notes ? $notes->text : '';
2021-03-12 06:20:01 +01:00
return $attachment;
}
);
}
2018-02-17 10:47:32 +01:00
/**
* Get current amount saved in piggy bank.
*/
2024-12-14 17:32:03 +01:00
public function getCurrentAmount(PiggyBank $piggyBank, ?Account $account = null): string
2018-02-17 10:47:32 +01:00
{
$sum = '0';
2024-12-14 17:32:03 +01:00
foreach ($piggyBank->accounts as $current) {
if(null !== $account && $account->id !== $current->id) {
continue;
}
$amount = (string) $current->pivot->current_amount;
$amount = '' === $amount ? '0' : $amount;
$sum = bcadd($sum, $amount);
2018-02-17 10:47:32 +01:00
}
2024-12-14 17:32:03 +01:00
Log::debug(sprintf('Current amount in piggy bank #%d ("%s") is %s', $piggyBank->id, $piggyBank->name, $sum));
2024-12-14 05:45:54 +01:00
return $sum;
2022-03-29 14:59:58 +02:00
}
2024-12-14 17:32:03 +01:00
public function getRepetition(PiggyBank $piggyBank, bool $overrule = false): ?PiggyBankRepetition
2023-06-21 12:34:58 +02:00
{
2024-12-14 17:32:03 +01:00
if (false === $overrule) {
throw new FireflyException('[b] Piggy bank repetitions are EOL.');
}
Log::warning('Piggy bank repetitions are EOL.');
2023-06-21 12:34:58 +02:00
return $piggyBank->piggyBankRepetitions()->first();
}
2016-04-06 09:27:45 +02:00
public function getEvents(PiggyBank $piggyBank): Collection
2015-04-20 21:57:20 +02:00
{
return $piggyBank->piggyBankEvents()->orderBy('date', 'DESC')->orderBy('id', 'DESC')->get();
}
2017-04-28 07:51:09 +02:00
/**
* Used for connecting to a piggy bank.
*
2022-12-29 19:42:26 +01:00
* @throws FireflyException
2023-12-22 20:12:38 +01:00
*/
2017-04-28 07:51:09 +02:00
public function getExactAmount(PiggyBank $piggyBank, PiggyBankRepetition $repetition, TransactionJournal $journal): string
{
throw new FireflyException('[c] Piggy bank repetitions are EOL.');
2023-10-29 06:33:43 +01:00
app('log')->debug(sprintf('Now in getExactAmount(%d, %d, %d)', $piggyBank->id, $repetition->id, $journal->id));
2019-09-14 18:02:24 +02:00
2024-12-14 17:32:03 +01:00
$operator = null;
$currency = null;
2023-12-20 19:35:52 +01:00
2019-09-14 18:02:24 +02:00
/** @var JournalRepositoryInterface $journalRepost */
2024-12-14 17:32:03 +01:00
$journalRepost = app(JournalRepositoryInterface::class);
2019-09-14 18:02:24 +02:00
$journalRepost->setUser($this->user);
/** @var AccountRepositoryInterface $accountRepos */
2024-12-14 17:32:03 +01:00
$accountRepos = app(AccountRepositoryInterface::class);
2019-09-14 18:02:24 +02:00
$accountRepos->setUser($this->user);
2023-10-29 17:41:14 +01:00
$defaultCurrency = app('amount')->getDefaultCurrencyByUserGroup($this->user->userGroup);
2019-09-14 18:02:24 +02:00
$piggyBankCurrency = $accountRepos->getAccountCurrency($piggyBank->account) ?? $defaultCurrency;
2023-10-29 06:33:43 +01:00
app('log')->debug(sprintf('Piggy bank #%d currency is %s', $piggyBank->id, $piggyBankCurrency->code));
2019-09-14 18:02:24 +02:00
/** @var Transaction $source */
2024-12-14 17:32:03 +01:00
$source = $journal->transactions()->with(['account'])->where('amount', '<', 0)->first();
2023-12-20 19:35:52 +01:00
2019-09-14 18:02:24 +02:00
/** @var Transaction $destination */
2024-12-14 17:32:03 +01:00
$destination = $journal->transactions()->with(['account'])->where('amount', '>', 0)->first();
2019-09-14 18:02:24 +02:00
// matches source, which means amount will be removed from piggy:
if ($source->account_id === $piggyBank->account_id) {
$operator = 'negative';
$currency = $accountRepos->getAccountCurrency($source->account) ?? $defaultCurrency;
2023-10-29 06:33:43 +01:00
app('log')->debug(sprintf('Currency will draw money out of piggy bank. Source currency is %s', $currency->code));
2019-09-14 18:02:24 +02:00
}
// matches destination, which means amount will be added to piggy.
if ($destination->account_id === $piggyBank->account_id) {
$operator = 'positive';
$currency = $accountRepos->getAccountCurrency($destination->account) ?? $defaultCurrency;
2023-10-29 06:33:43 +01:00
app('log')->debug(sprintf('Currency will add money to piggy bank. Destination currency is %s', $currency->code));
2019-09-14 18:02:24 +02:00
}
if (null === $operator || null === $currency) {
2023-10-29 06:33:43 +01:00
app('log')->debug('Currency is NULL and operator is NULL, return "0".');
2021-03-12 06:20:01 +01:00
2019-09-14 18:02:24 +02:00
return '0';
}
// currency of the account + the piggy bank currency are almost the same.
// which amount from the transaction matches?
2024-12-14 17:32:03 +01:00
$amount = null;
if ((int) $source->transaction_currency_id === $currency->id) {
2023-10-29 06:33:43 +01:00
app('log')->debug('Use normal amount');
2023-12-20 19:35:52 +01:00
$amount = app('steam')->{$operator}($source->amount); // @phpstan-ignore-line
2019-09-14 18:02:24 +02:00
}
if ((int) $source->foreign_currency_id === $currency->id) {
2023-10-29 06:33:43 +01:00
app('log')->debug('Use foreign amount');
2023-12-20 19:35:52 +01:00
$amount = app('steam')->{$operator}($source->foreign_amount); // @phpstan-ignore-line
2019-09-14 18:02:24 +02:00
}
if (null === $amount) {
2023-10-29 06:33:43 +01:00
app('log')->debug('No match on currency, so amount remains null, return "0".');
2021-03-12 06:20:01 +01:00
2019-09-14 18:02:24 +02:00
return '0';
}
2023-10-29 06:33:43 +01:00
app('log')->debug(sprintf('The currency is %s and the amount is %s', $currency->code, $amount));
2024-12-14 17:32:03 +01:00
$room = bcsub($piggyBank->target_amount, $repetition->current_amount);
$compare = bcmul($repetition->current_amount, '-1');
2024-11-30 16:02:30 +01:00
if (0 === bccomp($piggyBank->target_amount, '0')) {
// amount is zero? then the "room" is positive amount of we wish to add or remove.
$room = app('steam')->positive($amount);
2023-10-29 06:33:43 +01:00
app('log')->debug(sprintf('Room is now %s', $room));
}
2023-10-29 06:33:43 +01:00
app('log')->debug(sprintf('Will add/remove %f to piggy bank #%d ("%s")', $amount, $piggyBank->id, $piggyBank->name));
2017-04-28 07:51:09 +02:00
// if the amount is positive, make sure it fits in piggy bank:
2023-12-20 19:35:52 +01:00
if (1 === bccomp($amount, '0') && -1 === bccomp($room, $amount)) {
2017-04-28 07:51:09 +02:00
// amount is positive and $room is smaller than $amount
2023-10-29 06:33:43 +01:00
app('log')->debug(sprintf('Room in piggy bank for extra money is %f', $room));
app('log')->debug(sprintf('There is NO room to add %f to piggy bank #%d ("%s")', $amount, $piggyBank->id, $piggyBank->name));
app('log')->debug(sprintf('New amount is %f', $room));
2021-03-12 06:20:01 +01:00
2017-04-28 07:51:09 +02:00
return $room;
}
// amount is negative and $currentamount is smaller than $amount
2023-12-20 19:35:52 +01:00
if (-1 === bccomp($amount, '0') && 1 === bccomp($compare, $amount)) {
2024-11-30 16:02:30 +01:00
app('log')->debug(sprintf('Max amount to remove is %f', $repetition->current_amount));
2023-10-29 06:33:43 +01:00
app('log')->debug(sprintf('Cannot remove %f from piggy bank #%d ("%s")', $amount, $piggyBank->id, $piggyBank->name));
app('log')->debug(sprintf('New amount is %f', $compare));
2021-03-12 06:20:01 +01:00
2017-04-28 07:51:09 +02:00
return $compare;
}
return (string) $amount;
2022-12-29 19:42:26 +01:00
}
2024-12-14 17:32:03 +01:00
public function setUser(null | Authenticatable | User $user): void
2023-06-21 12:34:58 +02:00
{
2023-10-30 19:49:40 +01:00
if ($user instanceof User) {
2023-06-21 12:34:58 +02:00
$this->user = $user;
}
}
2018-12-20 05:46:05 +01:00
/**
* Return note for piggy bank.
*/
public function getNoteText(PiggyBank $piggyBank): string
{
2023-12-20 19:35:52 +01:00
/** @var null|Note $note */
2018-12-20 05:46:05 +01:00
$note = $piggyBank->notes()->first();
2023-12-20 19:35:52 +01:00
return (string) $note?->text;
2018-12-20 05:46:05 +01:00
}
2016-05-15 12:08:41 +02:00
/**
* Also add amount in name.
*/
public function getPiggyBanksWithAmount(): Collection
2016-05-15 12:08:41 +02:00
{
2017-10-05 11:49:06 +02:00
$currency = app('amount')->getDefaultCurrency();
2024-12-14 17:32:03 +01:00
$set = $this->getPiggyBanks();
2020-06-27 13:08:51 +02:00
/** @var PiggyBank $piggy */
foreach ($set as $piggy) {
2024-11-30 16:02:30 +01:00
$currentAmount = $this->getRepetition($piggy)->current_amount ?? '0';
2024-12-14 17:32:03 +01:00
$piggy->name = $piggy->name . ' (' . app('amount')->formatAnything($currency, $currentAmount, false) . ')';
2016-05-15 12:08:41 +02:00
}
2016-05-15 12:08:41 +02:00
return $set;
}
2023-06-21 12:34:58 +02:00
public function getPiggyBanks(): Collection
2018-04-21 23:48:54 +02:00
{
2024-12-14 05:45:54 +01:00
return PiggyBank::leftJoin('account_piggy_bank', 'account_piggy_bank.piggy_bank_id', '=', 'piggy_banks.id')
2024-12-14 17:32:03 +01:00
->leftJoin('accounts', 'accounts.id', '=', 'account_piggy_bank.account_id')
->where('accounts.user_id', auth()->user()->id)
->with(
[
'objectGroups',
]
)
->orderBy('piggy_banks.order', 'ASC')->distinct()->get(['piggy_banks.*']);
2018-04-21 23:48:54 +02:00
}
2018-05-26 07:48:49 +02:00
/**
* 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) {
2023-02-11 07:36:45 +01:00
$now = today(config('app.timezone'));
2024-11-30 16:02:30 +01:00
$startDate = null !== $piggyBank->start_date && $piggyBank->start_date->gte($now) ? $piggyBank->start_date : $now;
$diffInMonths = (int) $startDate->diffInMonths($piggyBank->target_date);
$remainingAmount = bcsub($piggyBank->target_amount, $currentAmount);
2018-05-26 07:48:49 +02:00
// more than 1 month to go and still need money to save:
if ($diffInMonths > 0 && 1 === bccomp($remainingAmount, '0')) {
$savePerMonth = bcdiv($remainingAmount, (string) $diffInMonths);
2018-05-26 07:48:49 +02:00
}
// less than 1 month to go but still need money to save:
if (0 === $diffInMonths && 1 === bccomp($remainingAmount, '0')) {
$savePerMonth = $remainingAmount;
}
}
return $savePerMonth;
}
2018-04-21 23:48:54 +02:00
/**
* Get for piggy account what is left to put in piggies.
2023-12-22 20:12:38 +01:00
*/
2024-12-14 17:32:03 +01:00
public function leftOnAccount(PiggyBank $piggyBank, Account $account, Carbon $date): string
2017-04-28 07:51:09 +02:00
{
2024-12-14 17:32:03 +01:00
Log::debug(sprintf('leftOnAccount("%s","%s","%s")', $piggyBank->name, $account->name, $date->format('Y-m-d H:i:s')));
$balance = app('steam')->balanceConvertedIgnoreVirtual($account, $date, $piggyBank->transactionCurrency);
Log::debug(sprintf('Balance is: %s', $balance));
2018-04-21 23:48:54 +02:00
/** @var Collection $piggies */
2024-12-14 17:32:03 +01:00
$piggies = $account->piggyBanks;
2018-04-21 23:48:54 +02:00
/** @var PiggyBank $current */
foreach ($piggies as $current) {
2024-12-14 17:32:03 +01:00
$amount = $this->getCurrentAmount($current, $account);
$balance = bcsub($balance, $amount);
Log::debug(sprintf('Piggy bank: #%d with amount %s, balance is now %s', $current->id, $amount, $balance));
2017-04-28 07:51:09 +02:00
}
2024-12-14 17:32:03 +01:00
Log::debug(sprintf('Final balance is: %s', $balance));
2018-04-21 23:48:54 +02:00
return $balance;
2017-04-28 07:51:09 +02:00
}
2020-07-22 20:17:20 +02:00
public function searchPiggyBank(string $query, int $limit): Collection
{
$search = $this->user->piggyBanks();
if ('' !== $query) {
$search->whereLike('piggy_banks.name', sprintf('%%%s%%', $query));
2020-07-22 20:17:20 +02:00
}
$search->orderBy('piggy_banks.order', 'ASC')
2024-12-14 17:32:03 +01:00
->orderBy('piggy_banks.name', 'ASC');
2020-07-22 20:17:20 +02:00
return $search->take($limit)->get();
}
2024-12-01 18:16:48 +01:00
2024-12-14 05:45:54 +01:00
#[\Override]
public function purgeAll(): void
2024-12-01 18:16:48 +01:00
{
throw new FireflyException('TODO Not implemented');
}
2024-12-14 05:45:54 +01:00
#[\Override]
public function resetOrder(): void
{
$factory = new PiggyBankFactory();
$factory->user = $this->user;
$factory->resetOrder();
}
2015-03-29 08:14:32 +02:00
}