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

158 lines
4.8 KiB
PHP
Raw Normal View History

2016-10-22 02:31:27 -05:00
<?php
/**
* StoredJournalEventHandler.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
declare(strict_types=1);
2016-10-22 02:31:27 -05:00
namespace FireflyIII\Handlers\Events;
use FireflyIII\Events\StoredTransactionJournal;
use FireflyIII\Models\Rule;
use FireflyIII\Models\RuleGroup;
2017-04-28 00:51:09 -05:00
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
use FireflyIII\Repositories\PiggyBank\PiggyBankRepositoryInterface;
use FireflyIII\Repositories\RuleGroup\RuleGroupRepositoryInterface;
2016-10-22 02:31:27 -05:00
use FireflyIII\Rules\Processor;
use FireflyIII\Support\Events\BillScanner;
2016-11-04 10:04:36 -05:00
use Log;
2016-10-22 02:31:27 -05:00
/**
* Class StoredJournalEventHandler
*
* @package FireflyIII\Handlers\Events
*/
class StoredJournalEventHandler
{
2017-04-28 00:51:09 -05:00
/** @var JournalRepositoryInterface */
public $journalRepository;
/** @var PiggyBankRepositoryInterface */
public $repository;
public $ruleGroupRepos;
/**
* StoredJournalEventHandler constructor.
*/
public function __construct(
PiggyBankRepositoryInterface $repository, JournalRepositoryInterface $journalRepository, RuleGroupRepositoryInterface $ruleGroupRepository
) {
$this->repository = $repository;
$this->journalRepository = $journalRepository;
$this->ruleGroupRepos = $ruleGroupRepository;
}
2016-10-22 02:31:27 -05:00
/**
* This method connects a new transfer to a piggy bank.
*
2017-04-28 00:51:09 -05:00
* @codeCoverageIgnore
*
2016-12-27 13:45:23 -06:00
* @param StoredTransactionJournal $event
2016-10-22 02:31:27 -05:00
*
* @return bool
*/
2016-12-27 13:45:23 -06:00
public function connectToPiggyBank(StoredTransactionJournal $event): bool
2016-10-22 02:31:27 -05:00
{
2016-12-27 13:45:23 -06:00
$journal = $event->journal;
$piggyBankId = $event->piggyBankId;
2017-04-28 00:51:09 -05:00
$piggyBank = $this->repository->find($piggyBankId);
2016-11-04 10:04:36 -05:00
2017-04-28 00:51:09 -05:00
// is a transfer?
if (!$this->journalRepository->isTransfer($journal)) {
2017-03-12 14:43:37 -05:00
Log::info(sprintf('Will not connect %s #%d to a piggy bank.', $journal->transactionType->type, $journal->id));
return true;
}
2017-04-28 00:51:09 -05:00
// piggy exists?
if (is_null($piggyBank->id)) {
Log::error(sprintf('There is no piggy bank with ID #%d', $piggyBankId));
return true;
}
// repetition exists?
$repetition = $this->repository->getRepetition($piggyBank, $journal->date);
if (is_null($repetition->id)) {
Log::error(sprintf('No piggy bank repetition on %s!', $journal->date->format('Y-m-d')));
2016-11-04 10:04:36 -05:00
2016-10-22 02:31:27 -05:00
return true;
}
2017-04-28 00:51:09 -05:00
// get the amount
$amount = $this->repository->getExactAmount($piggyBank, $repetition, $journal);
2017-03-01 13:57:52 -06:00
if (bccomp($amount, '0') === 0) {
Log::debug('Amount is zero, will not create event.');
return true;
}
2017-04-28 00:51:09 -05:00
// update amount
$this->repository->addAmountToRepetition($repetition, $amount);
$event = $this->repository->createEventWithJournal($piggyBank, $amount, $journal);
2016-10-22 02:31:27 -05:00
2016-12-27 13:45:23 -06:00
Log::debug(sprintf('Created piggy bank event #%d', $event->id));
2016-10-22 02:31:27 -05:00
return true;
}
/**
* This method grabs all the users rules and processes them.
*
* @param StoredTransactionJournal $storedJournalEvent
2016-10-22 02:31:27 -05:00
*
* @return bool
*/
public function processRules(StoredTransactionJournal $storedJournalEvent): bool
2016-10-22 02:31:27 -05:00
{
// get all the user's rule groups, with the rules, order by 'order'.
$journal = $storedJournalEvent->journal;
2016-10-22 02:31:27 -05:00
$groups = $journal->user->ruleGroups()->where('rule_groups.active', 1)->orderBy('order', 'ASC')->get();
//
/** @var RuleGroup $group */
foreach ($groups as $group) {
$rules = $group->rules()
->leftJoin('rule_triggers', 'rules.id', '=', 'rule_triggers.rule_id')
->where('rule_triggers.trigger_type', 'user_action')
->where('rule_triggers.trigger_value', 'store-journal')
->where('rules.active', 1)
->get(['rules.*']);
/** @var Rule $rule */
foreach ($rules as $rule) {
$processor = Processor::make($rule);
$processor->handleTransactionJournal($journal);
if ($rule->stop_processing) {
return true;
}
}
}
return true;
}
/**
* This method calls a special bill scanner that will check if the stored journal is part of a bill.
*
* @param StoredTransactionJournal $storedJournalEvent
2016-10-22 02:31:27 -05:00
*
* @return bool
*/
public function scanBills(StoredTransactionJournal $storedJournalEvent): bool
2016-10-22 02:31:27 -05:00
{
$journal = $storedJournalEvent->journal;
2016-10-22 02:31:27 -05:00
BillScanner::scan($journal);
return true;
}
2016-10-23 05:42:44 -05:00
}