mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-13 16:00:13 +00:00
Clean up and simplify
This commit is contained in:
346
app/Repositories/PiggyBank/ModifiesPiggyBanks.php
Normal file
346
app/Repositories/PiggyBank/ModifiesPiggyBanks.php
Normal file
@@ -0,0 +1,346 @@
|
|||||||
|
<?php
|
||||||
|
declare(strict_types=1);
|
||||||
|
/**
|
||||||
|
* ModifiesPiggyBanks.php
|
||||||
|
* Copyright (c) 2020 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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
namespace FireflyIII\Repositories\PiggyBank;
|
||||||
|
|
||||||
|
|
||||||
|
use Carbon\Carbon;
|
||||||
|
use Exception;
|
||||||
|
use FireflyIII\Exceptions\FireflyException;
|
||||||
|
use FireflyIII\Models\Note;
|
||||||
|
use FireflyIII\Models\PiggyBank;
|
||||||
|
use FireflyIII\Models\PiggyBankEvent;
|
||||||
|
use FireflyIII\Models\PiggyBankRepetition;
|
||||||
|
use FireflyIII\Models\TransactionJournal;
|
||||||
|
use Illuminate\Database\QueryException;
|
||||||
|
use Log;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Trait ModifiesPiggyBanks
|
||||||
|
*/
|
||||||
|
trait ModifiesPiggyBanks
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param PiggyBank $piggyBank
|
||||||
|
* @param string $amount
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function addAmount(PiggyBank $piggyBank, string $amount): bool
|
||||||
|
{
|
||||||
|
$repetition = $this->getRepetition($piggyBank);
|
||||||
|
if (null === $repetition) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$currentAmount = $repetition->currentamount ?? '0';
|
||||||
|
$repetition->currentamount = bcadd($currentAmount, $amount);
|
||||||
|
$repetition->save();
|
||||||
|
|
||||||
|
// create event
|
||||||
|
$this->createEvent($piggyBank, $amount);
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param PiggyBankRepetition $repetition
|
||||||
|
* @param string $amount
|
||||||
|
*
|
||||||
|
* @return string
|
||||||
|
*/
|
||||||
|
public function addAmountToRepetition(PiggyBankRepetition $repetition, string $amount): string
|
||||||
|
{
|
||||||
|
$newAmount = bcadd($repetition->currentamount, $amount);
|
||||||
|
$repetition->currentamount = $newAmount;
|
||||||
|
$repetition->save();
|
||||||
|
|
||||||
|
return $newAmount;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param PiggyBank $piggyBank
|
||||||
|
* @param string $amount
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function canAddAmount(PiggyBank $piggyBank, string $amount): bool
|
||||||
|
{
|
||||||
|
$leftOnAccount = $this->leftOnAccount($piggyBank, new Carbon);
|
||||||
|
$savedSoFar = (string) $this->getRepetition($piggyBank)->currentamount;
|
||||||
|
$leftToSave = bcsub($piggyBank->targetamount, $savedSoFar);
|
||||||
|
$maxAmount = (string) min(round($leftOnAccount, 12), round($leftToSave, 12));
|
||||||
|
$compare = bccomp($amount, $maxAmount);
|
||||||
|
$result = $compare <= 0;
|
||||||
|
|
||||||
|
Log::debug(sprintf('Left on account: %s', $leftOnAccount));
|
||||||
|
Log::debug(sprintf('Saved so far: %s', $savedSoFar));
|
||||||
|
Log::debug(sprintf('Left to save: %s', $leftToSave));
|
||||||
|
Log::debug(sprintf('Maximum amount: %s', $maxAmount));
|
||||||
|
Log::debug(sprintf('Compare <= 0? %d, so %s', $compare, var_export($result, true)));
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param PiggyBank $piggyBank
|
||||||
|
* @param string $amount
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function canRemoveAmount(PiggyBank $piggyBank, string $amount): bool
|
||||||
|
{
|
||||||
|
$repetition = $this->getRepetition($piggyBank);
|
||||||
|
if (null === $repetition) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$savedSoFar = $repetition->currentamount;
|
||||||
|
|
||||||
|
return bccomp($amount, $savedSoFar) <= 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Correct order of piggies in case of issues.
|
||||||
|
*/
|
||||||
|
public function correctOrder(): void
|
||||||
|
{
|
||||||
|
$set = $this->user->piggyBanks()->orderBy('order', 'ASC')->get();
|
||||||
|
$current = 1;
|
||||||
|
foreach ($set as $piggyBank) {
|
||||||
|
if ((int) $piggyBank->order !== $current) {
|
||||||
|
$piggyBank->order = $current;
|
||||||
|
$piggyBank->save();
|
||||||
|
}
|
||||||
|
$current++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param PiggyBank $piggyBank
|
||||||
|
* @param string $amount
|
||||||
|
*
|
||||||
|
* @return PiggyBankEvent
|
||||||
|
*/
|
||||||
|
public function createEvent(PiggyBank $piggyBank, string $amount): PiggyBankEvent
|
||||||
|
{
|
||||||
|
/** @var PiggyBankEvent $event */
|
||||||
|
$event = PiggyBankEvent::create(['date' => Carbon::now(), 'amount' => $amount, 'piggy_bank_id' => $piggyBank->id]);
|
||||||
|
|
||||||
|
return $event;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param PiggyBank $piggyBank
|
||||||
|
* @param string $amount
|
||||||
|
* @param TransactionJournal $journal
|
||||||
|
*
|
||||||
|
* @return PiggyBankEvent
|
||||||
|
*/
|
||||||
|
public function createEventWithJournal(PiggyBank $piggyBank, string $amount, TransactionJournal $journal): PiggyBankEvent
|
||||||
|
{
|
||||||
|
/** @var PiggyBankEvent $event */
|
||||||
|
$event = PiggyBankEvent::create(
|
||||||
|
[
|
||||||
|
'piggy_bank_id' => $piggyBank->id,
|
||||||
|
'transaction_journal_id' => $journal->id,
|
||||||
|
'date' => $journal->date->format('Y-m-d'),
|
||||||
|
'amount' => $amount]
|
||||||
|
);
|
||||||
|
|
||||||
|
return $event;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param PiggyBank $piggyBank
|
||||||
|
*
|
||||||
|
* @throws \Exception
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function destroy(PiggyBank $piggyBank): bool
|
||||||
|
{
|
||||||
|
$piggyBank->delete();
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param PiggyBank $piggyBank
|
||||||
|
* @param string $amount
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function removeAmount(PiggyBank $piggyBank, string $amount): bool
|
||||||
|
{
|
||||||
|
$repetition = $this->getRepetition($piggyBank);
|
||||||
|
if (null === $repetition) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
$repetition->currentamount = bcsub($repetition->currentamount, $amount);
|
||||||
|
$repetition->save();
|
||||||
|
|
||||||
|
// create event
|
||||||
|
$this->createEvent($piggyBank, bcmul($amount, '-1'));
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param PiggyBank $piggyBank
|
||||||
|
* @param string $amount
|
||||||
|
*
|
||||||
|
* @return PiggyBank
|
||||||
|
*/
|
||||||
|
public function setCurrentAmount(PiggyBank $piggyBank, string $amount): PiggyBank
|
||||||
|
{
|
||||||
|
$repetition = $this->getRepetition($piggyBank);
|
||||||
|
if (null === $repetition) {
|
||||||
|
return $piggyBank;
|
||||||
|
}
|
||||||
|
$max = $piggyBank->targetamount;
|
||||||
|
if (1 === bccomp($amount, $max)) {
|
||||||
|
$amount = $max;
|
||||||
|
}
|
||||||
|
$repetition->currentamount = $amount;
|
||||||
|
$repetition->save();
|
||||||
|
|
||||||
|
// create event
|
||||||
|
$this->createEvent($piggyBank, $amount);
|
||||||
|
|
||||||
|
return $piggyBank;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* set id of piggy bank.
|
||||||
|
*
|
||||||
|
* @param PiggyBank $piggyBank
|
||||||
|
* @param int $order
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
public function setOrder(PiggyBank $piggyBank, int $order): bool
|
||||||
|
{
|
||||||
|
$piggyBank->order = $order;
|
||||||
|
$piggyBank->save();
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param array $data
|
||||||
|
*
|
||||||
|
* @throws FireflyException
|
||||||
|
* @return PiggyBank
|
||||||
|
*/
|
||||||
|
public function store(array $data): PiggyBank
|
||||||
|
{
|
||||||
|
$data['order'] = $this->getMaxOrder() + 1;
|
||||||
|
try {
|
||||||
|
/** @var PiggyBank $piggyBank */
|
||||||
|
$piggyBank = PiggyBank::create($data);
|
||||||
|
} catch (QueryException $e) {
|
||||||
|
Log::error(sprintf('Could not store piggy bank: %s', $e->getMessage()));
|
||||||
|
throw new FireflyException('400005: Could not store new piggy bank.');
|
||||||
|
}
|
||||||
|
|
||||||
|
$this->updateNote($piggyBank, $data['notes']);
|
||||||
|
|
||||||
|
// repetition is auto created.
|
||||||
|
$repetition = $this->getRepetition($piggyBank);
|
||||||
|
if (null !== $repetition && isset($data['current_amount'])) {
|
||||||
|
$repetition->currentamount = $data['current_amount'];
|
||||||
|
$repetition->save();
|
||||||
|
}
|
||||||
|
|
||||||
|
return $piggyBank;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param PiggyBank $piggyBank
|
||||||
|
* @param array $data
|
||||||
|
*
|
||||||
|
* @return PiggyBank
|
||||||
|
*/
|
||||||
|
public function update(PiggyBank $piggyBank, array $data): PiggyBank
|
||||||
|
{
|
||||||
|
if (isset($data['name']) && '' !== $data['name']) {
|
||||||
|
$piggyBank->name = $data['name'];
|
||||||
|
}
|
||||||
|
if (isset($data['account_id']) && 0 !== $data['account_id']) {
|
||||||
|
$piggyBank->account_id = (int) $data['account_id'];
|
||||||
|
}
|
||||||
|
if (isset($data['targetamount']) && '' !== $data['targetamount']) {
|
||||||
|
$piggyBank->targetamount = $data['targetamount'];
|
||||||
|
}
|
||||||
|
if (isset($data['targetdate']) && '' !== $data['targetdate']) {
|
||||||
|
$piggyBank->targetdate = $data['targetdate'];
|
||||||
|
}
|
||||||
|
$piggyBank->startdate = $data['startdate'] ?? $piggyBank->startdate;
|
||||||
|
$piggyBank->save();
|
||||||
|
|
||||||
|
$this->updateNote($piggyBank, $data['notes'] ?? '');
|
||||||
|
|
||||||
|
// if the piggy bank is now smaller than the current relevant rep,
|
||||||
|
// remove money from the rep.
|
||||||
|
$repetition = $this->getRepetition($piggyBank);
|
||||||
|
if (null !== $repetition && $repetition->currentamount > $piggyBank->targetamount) {
|
||||||
|
$diff = bcsub($piggyBank->targetamount, $repetition->currentamount);
|
||||||
|
$this->createEvent($piggyBank, $diff);
|
||||||
|
|
||||||
|
$repetition->currentamount = $piggyBank->targetamount;
|
||||||
|
$repetition->save();
|
||||||
|
}
|
||||||
|
|
||||||
|
return $piggyBank;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param PiggyBank $piggyBank
|
||||||
|
* @param string $note
|
||||||
|
*
|
||||||
|
* @return bool
|
||||||
|
*/
|
||||||
|
private function updateNote(PiggyBank $piggyBank, string $note): bool
|
||||||
|
{
|
||||||
|
if ('' === $note) {
|
||||||
|
$dbNote = $piggyBank->notes()->first();
|
||||||
|
if (null !== $dbNote) {
|
||||||
|
try {
|
||||||
|
$dbNote->delete();
|
||||||
|
} catch (Exception $e) {
|
||||||
|
Log::debug(sprintf('Could not delete note: %s', $e->getMessage()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
$dbNote = $piggyBank->notes()->first();
|
||||||
|
if (null === $dbNote) {
|
||||||
|
$dbNote = new Note;
|
||||||
|
$dbNote->noteable()->associate($piggyBank);
|
||||||
|
}
|
||||||
|
$dbNote->text = trim($note);
|
||||||
|
$dbNote->save();
|
||||||
|
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -23,18 +23,14 @@ declare(strict_types=1);
|
|||||||
namespace FireflyIII\Repositories\PiggyBank;
|
namespace FireflyIII\Repositories\PiggyBank;
|
||||||
|
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
use Exception;
|
|
||||||
use FireflyIII\Exceptions\FireflyException;
|
|
||||||
use FireflyIII\Models\Note;
|
use FireflyIII\Models\Note;
|
||||||
use FireflyIII\Models\PiggyBank;
|
use FireflyIII\Models\PiggyBank;
|
||||||
use FireflyIII\Models\PiggyBankEvent;
|
|
||||||
use FireflyIII\Models\PiggyBankRepetition;
|
use FireflyIII\Models\PiggyBankRepetition;
|
||||||
use FireflyIII\Models\Transaction;
|
use FireflyIII\Models\Transaction;
|
||||||
use FireflyIII\Models\TransactionJournal;
|
use FireflyIII\Models\TransactionJournal;
|
||||||
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
||||||
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
||||||
use FireflyIII\User;
|
use FireflyIII\User;
|
||||||
use Illuminate\Database\QueryException;
|
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
use Log;
|
use Log;
|
||||||
|
|
||||||
@@ -44,6 +40,7 @@ use Log;
|
|||||||
*/
|
*/
|
||||||
class PiggyBankRepository implements PiggyBankRepositoryInterface
|
class PiggyBankRepository implements PiggyBankRepositoryInterface
|
||||||
{
|
{
|
||||||
|
use ModifiesPiggyBanks;
|
||||||
/** @var User */
|
/** @var User */
|
||||||
private $user;
|
private $user;
|
||||||
|
|
||||||
@@ -57,147 +54,6 @@ class PiggyBankRepository implements PiggyBankRepositoryInterface
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param PiggyBank $piggyBank
|
|
||||||
* @param string $amount
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function addAmount(PiggyBank $piggyBank, string $amount): bool
|
|
||||||
{
|
|
||||||
$repetition = $this->getRepetition($piggyBank);
|
|
||||||
if (null === $repetition) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
$currentAmount = $repetition->currentamount ?? '0';
|
|
||||||
$repetition->currentamount = bcadd($currentAmount, $amount);
|
|
||||||
$repetition->save();
|
|
||||||
|
|
||||||
// create event
|
|
||||||
$this->createEvent($piggyBank, $amount);
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param PiggyBankRepetition $repetition
|
|
||||||
* @param string $amount
|
|
||||||
*
|
|
||||||
* @return string
|
|
||||||
*/
|
|
||||||
public function addAmountToRepetition(PiggyBankRepetition $repetition, string $amount): string
|
|
||||||
{
|
|
||||||
$newAmount = bcadd($repetition->currentamount, $amount);
|
|
||||||
$repetition->currentamount = $newAmount;
|
|
||||||
$repetition->save();
|
|
||||||
|
|
||||||
return $newAmount;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param PiggyBank $piggyBank
|
|
||||||
* @param string $amount
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function canAddAmount(PiggyBank $piggyBank, string $amount): bool
|
|
||||||
{
|
|
||||||
$leftOnAccount = $this->leftOnAccount($piggyBank, new Carbon);
|
|
||||||
$savedSoFar = (string)$this->getRepetition($piggyBank)->currentamount;
|
|
||||||
$leftToSave = bcsub($piggyBank->targetamount, $savedSoFar);
|
|
||||||
$maxAmount = (string)min(round($leftOnAccount, 12), round($leftToSave, 12));
|
|
||||||
$compare = bccomp($amount, $maxAmount);
|
|
||||||
$result = $compare <= 0;
|
|
||||||
|
|
||||||
Log::debug(sprintf('Left on account: %s', $leftOnAccount));
|
|
||||||
Log::debug(sprintf('Saved so far: %s', $savedSoFar));
|
|
||||||
Log::debug(sprintf('Left to save: %s', $leftToSave));
|
|
||||||
Log::debug(sprintf('Maximum amount: %s', $maxAmount));
|
|
||||||
Log::debug(sprintf('Compare <= 0? %d, so %s', $compare, var_export($result, true)));
|
|
||||||
|
|
||||||
return $result;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param PiggyBank $piggyBank
|
|
||||||
* @param string $amount
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function canRemoveAmount(PiggyBank $piggyBank, string $amount): bool
|
|
||||||
{
|
|
||||||
$repetition = $this->getRepetition($piggyBank);
|
|
||||||
if (null === $repetition) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
$savedSoFar = $repetition->currentamount;
|
|
||||||
|
|
||||||
return bccomp($amount, $savedSoFar) <= 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Correct order of piggies in case of issues.
|
|
||||||
*/
|
|
||||||
public function correctOrder(): void
|
|
||||||
{
|
|
||||||
$set = $this->user->piggyBanks()->orderBy('order', 'ASC')->get();
|
|
||||||
$current = 1;
|
|
||||||
foreach ($set as $piggyBank) {
|
|
||||||
if ((int)$piggyBank->order !== $current) {
|
|
||||||
$piggyBank->order = $current;
|
|
||||||
$piggyBank->save();
|
|
||||||
}
|
|
||||||
$current++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param PiggyBank $piggyBank
|
|
||||||
* @param string $amount
|
|
||||||
*
|
|
||||||
* @return PiggyBankEvent
|
|
||||||
*/
|
|
||||||
public function createEvent(PiggyBank $piggyBank, string $amount): PiggyBankEvent
|
|
||||||
{
|
|
||||||
/** @var PiggyBankEvent $event */
|
|
||||||
$event = PiggyBankEvent::create(['date' => Carbon::now(), 'amount' => $amount, 'piggy_bank_id' => $piggyBank->id]);
|
|
||||||
|
|
||||||
return $event;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param PiggyBank $piggyBank
|
|
||||||
* @param string $amount
|
|
||||||
* @param TransactionJournal $journal
|
|
||||||
*
|
|
||||||
* @return PiggyBankEvent
|
|
||||||
*/
|
|
||||||
public function createEventWithJournal(PiggyBank $piggyBank, string $amount, TransactionJournal $journal): PiggyBankEvent
|
|
||||||
{
|
|
||||||
/** @var PiggyBankEvent $event */
|
|
||||||
$event = PiggyBankEvent::create(
|
|
||||||
[
|
|
||||||
'piggy_bank_id' => $piggyBank->id,
|
|
||||||
'transaction_journal_id' => $journal->id,
|
|
||||||
'date' => $journal->date->format('Y-m-d'),
|
|
||||||
'amount' => $amount]
|
|
||||||
);
|
|
||||||
|
|
||||||
return $event;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param PiggyBank $piggyBank
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
* @throws \Exception
|
|
||||||
*/
|
|
||||||
public function destroy(PiggyBank $piggyBank): bool
|
|
||||||
{
|
|
||||||
$piggyBank->delete();
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Find by name or return NULL.
|
* Find by name or return NULL.
|
||||||
@@ -208,18 +64,7 @@ class PiggyBankRepository implements PiggyBankRepositoryInterface
|
|||||||
*/
|
*/
|
||||||
public function findByName(string $name): ?PiggyBank
|
public function findByName(string $name): ?PiggyBank
|
||||||
{
|
{
|
||||||
$set = $this->user->piggyBanks()->get(['piggy_banks.*']);
|
return $this->user->piggyBanks()->where('name', $name)->first(['piggy_banks.*']);
|
||||||
|
|
||||||
// TODO no longer need to loop like this
|
|
||||||
|
|
||||||
/** @var PiggyBank $piggy */
|
|
||||||
foreach ($set as $piggy) {
|
|
||||||
if ($piggy->name === $name) {
|
|
||||||
return $piggy;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -515,40 +360,6 @@ class PiggyBankRepository implements PiggyBankRepositoryInterface
|
|||||||
return $balance;
|
return $balance;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param PiggyBank $piggyBank
|
|
||||||
* @param string $amount
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function removeAmount(PiggyBank $piggyBank, string $amount): bool
|
|
||||||
{
|
|
||||||
$repetition = $this->getRepetition($piggyBank);
|
|
||||||
$repetition->currentamount = bcsub($repetition->currentamount, $amount);
|
|
||||||
$repetition->save();
|
|
||||||
|
|
||||||
// create event
|
|
||||||
$this->createEvent($piggyBank, bcmul($amount, '-1'));
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* set id of piggy bank.
|
|
||||||
*
|
|
||||||
* @param PiggyBank $piggyBank
|
|
||||||
* @param int $order
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
public function setOrder(PiggyBank $piggyBank, int $order): bool
|
|
||||||
{
|
|
||||||
$piggyBank->order = $order;
|
|
||||||
$piggyBank->save();
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param User $user
|
* @param User $user
|
||||||
*/
|
*/
|
||||||
@@ -557,129 +368,6 @@ class PiggyBankRepository implements PiggyBankRepositoryInterface
|
|||||||
$this->user = $user;
|
$this->user = $user;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param array $data
|
|
||||||
*
|
|
||||||
* @return PiggyBank
|
|
||||||
* @throws FireflyException
|
|
||||||
*/
|
|
||||||
public function store(array $data): PiggyBank
|
|
||||||
{
|
|
||||||
$data['order'] = $this->getMaxOrder() + 1;
|
|
||||||
try {
|
|
||||||
/** @var PiggyBank $piggyBank */
|
|
||||||
$piggyBank = PiggyBank::create($data);
|
|
||||||
} catch(QueryException $e) {
|
|
||||||
Log::error(sprintf('Could not store piggy bank: %s',$e->getMessage()));
|
|
||||||
throw new FireflyException('400005: Could not store new piggy bank.');
|
|
||||||
}
|
|
||||||
|
|
||||||
$this->updateNote($piggyBank, $data['notes']);
|
|
||||||
|
|
||||||
// repetition is auto created.
|
|
||||||
$repetition = $this->getRepetition($piggyBank);
|
|
||||||
if (null !== $repetition && isset($data['current_amount'])) {
|
|
||||||
$repetition->currentamount = $data['current_amount'];
|
|
||||||
$repetition->save();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $piggyBank;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param PiggyBank $piggyBank
|
|
||||||
* @param array $data
|
|
||||||
*
|
|
||||||
* @return PiggyBank
|
|
||||||
*/
|
|
||||||
public function update(PiggyBank $piggyBank, array $data): PiggyBank
|
|
||||||
{
|
|
||||||
if (isset($data['name']) && '' !== $data['name']) {
|
|
||||||
$piggyBank->name = $data['name'];
|
|
||||||
}
|
|
||||||
if (isset($data['account_id']) && 0 !== $data['account_id']) {
|
|
||||||
$piggyBank->account_id = (int)$data['account_id'];
|
|
||||||
}
|
|
||||||
if (isset($data['targetamount']) && '' !== $data['targetamount']) {
|
|
||||||
$piggyBank->targetamount = $data['targetamount'];
|
|
||||||
}
|
|
||||||
if (isset($data['targetdate']) && '' !== $data['targetdate']) {
|
|
||||||
$piggyBank->targetdate = $data['targetdate'];
|
|
||||||
}
|
|
||||||
$piggyBank->startdate = $data['startdate'] ?? $piggyBank->startdate;
|
|
||||||
$piggyBank->save();
|
|
||||||
|
|
||||||
$this->updateNote($piggyBank, $data['notes'] ?? '');
|
|
||||||
|
|
||||||
// if the piggy bank is now smaller than the current relevant rep,
|
|
||||||
// remove money from the rep.
|
|
||||||
$repetition = $this->getRepetition($piggyBank);
|
|
||||||
if (null !== $repetition && $repetition->currentamount > $piggyBank->targetamount) {
|
|
||||||
$diff = bcsub($piggyBank->targetamount, $repetition->currentamount);
|
|
||||||
$this->createEvent($piggyBank, $diff);
|
|
||||||
|
|
||||||
$repetition->currentamount = $piggyBank->targetamount;
|
|
||||||
$repetition->save();
|
|
||||||
}
|
|
||||||
|
|
||||||
return $piggyBank;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param PiggyBank $piggyBank
|
|
||||||
* @param string $amount
|
|
||||||
*
|
|
||||||
* @return PiggyBank
|
|
||||||
*/
|
|
||||||
public function setCurrentAmount(PiggyBank $piggyBank, string $amount): PiggyBank
|
|
||||||
{
|
|
||||||
$repetition = $this->getRepetition($piggyBank);
|
|
||||||
if (null === $repetition) {
|
|
||||||
return $piggyBank;
|
|
||||||
}
|
|
||||||
$max = $piggyBank->targetamount;
|
|
||||||
if (1 === bccomp($amount, $max)) {
|
|
||||||
$amount = $max;
|
|
||||||
}
|
|
||||||
$repetition->currentamount = $amount;
|
|
||||||
$repetition->save();
|
|
||||||
|
|
||||||
// create event
|
|
||||||
$this->createEvent($piggyBank, $amount);
|
|
||||||
|
|
||||||
return $piggyBank;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param PiggyBank $piggyBank
|
|
||||||
* @param string $note
|
|
||||||
*
|
|
||||||
* @return bool
|
|
||||||
*/
|
|
||||||
private function updateNote(PiggyBank $piggyBank, string $note): bool
|
|
||||||
{
|
|
||||||
if ('' === $note) {
|
|
||||||
$dbNote = $piggyBank->notes()->first();
|
|
||||||
if (null !== $dbNote) {
|
|
||||||
try {
|
|
||||||
$dbNote->delete();
|
|
||||||
} catch (Exception $e) {
|
|
||||||
Log::debug(sprintf('Could not delete note: %s', $e->getMessage()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
$dbNote = $piggyBank->notes()->first();
|
|
||||||
if (null === $dbNote) {
|
|
||||||
$dbNote = new Note();
|
|
||||||
$dbNote->noteable()->associate($piggyBank);
|
|
||||||
}
|
|
||||||
$dbNote->text = trim($note);
|
|
||||||
$dbNote->save();
|
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @inheritDoc
|
* @inheritDoc
|
||||||
|
Reference in New Issue
Block a user