firefly-iii/app/Handlers/Events/UpdateJournalConnection.php

68 lines
1.7 KiB
PHP
Raw Normal View History

2016-02-05 05:08:25 -06:00
<?php
/**
* UpdateJournalConnection.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
2016-02-05 05:08:25 -06:00
declare(strict_types = 1);
namespace FireflyIII\Handlers\Events;
2015-03-02 13:05:28 -06:00
2016-01-12 14:38:05 -06:00
use FireflyIII\Events\TransactionJournalUpdated;
2015-03-02 13:05:28 -06:00
use FireflyIII\Models\PiggyBankEvent;
2015-05-17 08:17:06 -05:00
use FireflyIII\Models\PiggyBankRepetition;
use FireflyIII\Models\TransactionJournal;
2015-03-02 13:05:28 -06:00
2015-03-29 00:51:56 -05:00
/**
* Class UpdateJournalConnection
*
* @package FireflyIII\Handlers\Events
*/
2015-03-02 13:05:28 -06:00
class UpdateJournalConnection
{
/**
* Handle the event.
*
2016-01-12 14:38:05 -06:00
* @param TransactionJournalUpdated $event
2015-03-02 13:05:28 -06:00
*
2016-02-18 00:21:48 -06:00
* @return bool
2015-03-02 13:05:28 -06:00
*/
2016-02-18 00:21:48 -06:00
public function handle(TransactionJournalUpdated $event):bool
2015-03-02 13:05:28 -06:00
{
$journal = $event->journal;
// get the event connected to this journal:
/** @var PiggyBankEvent $event */
2015-03-29 14:27:51 -05:00
$event = PiggyBankEvent::where('transaction_journal_id', $journal->id)->first();
if (is_null($event)) {
2016-02-18 00:21:48 -06:00
return false;
2015-03-03 01:46:14 -06:00
}
2015-03-02 13:05:28 -06:00
$piggyBank = $event->piggyBank()->first();
2015-05-17 08:17:06 -05:00
$repetition = null;
if ($piggyBank) {
/** @var PiggyBankRepetition $repetition */
$repetition = $piggyBank->piggyBankRepetitions()->relevantOnDate($journal->date)->first();
}
2015-03-02 13:05:28 -06:00
if (is_null($repetition)) {
2016-02-18 00:21:48 -06:00
return false;
2015-03-02 13:05:28 -06:00
}
2015-07-26 12:42:28 -05:00
$amount = TransactionJournal::amount($journal);
2015-07-26 12:42:28 -05:00
$diff = bcsub($amount, $event->amount); // update current repetition
2015-03-02 13:05:28 -06:00
2015-07-26 12:42:28 -05:00
$repetition->currentamount = bcadd($repetition->currentamount, $diff);
2015-03-02 13:05:28 -06:00
$repetition->save();
$event->amount = $amount;
$event->save();
2016-02-18 00:21:48 -06:00
return true;
2015-03-02 13:05:28 -06:00
}
}