mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
5c7df5c04d
Signed-off-by: James Cole <thegrumpydictator@gmail.com>
186 lines
4.3 KiB
PHP
186 lines
4.3 KiB
PHP
<?php
|
|
/**
|
|
* ExecuteRuleGroupOnExistingTransactions.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.
|
|
*/
|
|
|
|
declare(strict_types = 1);
|
|
|
|
namespace FireflyIII\Jobs;
|
|
|
|
use Carbon\Carbon;
|
|
use FireflyIII\Models\RuleGroup;
|
|
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
|
use FireflyIII\Rules\Processor;
|
|
use FireflyIII\User;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Support\Collection;
|
|
|
|
/**
|
|
* Class ExecuteRuleGroupOnExistingTransactions
|
|
*
|
|
* @package FireflyIII\Jobs
|
|
*/
|
|
class ExecuteRuleGroupOnExistingTransactions extends Job implements ShouldQueue
|
|
{
|
|
use InteractsWithQueue, SerializesModels;
|
|
|
|
/** @var Collection */
|
|
private $accounts;
|
|
/** @var Carbon */
|
|
private $endDate;
|
|
/** @var RuleGroup */
|
|
private $ruleGroup;
|
|
/** @var Carbon */
|
|
private $startDate;
|
|
/** @var User */
|
|
private $user;
|
|
|
|
/**
|
|
* Create a new job instance.
|
|
*
|
|
* @param RuleGroup $ruleGroup
|
|
*/
|
|
public function __construct(RuleGroup $ruleGroup)
|
|
{
|
|
$this->ruleGroup = $ruleGroup;
|
|
}
|
|
|
|
/**
|
|
* @return Collection
|
|
*/
|
|
public function getAccounts(): Collection
|
|
{
|
|
return $this->accounts;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param Collection $accounts
|
|
*/
|
|
public function setAccounts(Collection $accounts)
|
|
{
|
|
$this->accounts = $accounts;
|
|
}
|
|
|
|
/**
|
|
* @return \Carbon\Carbon
|
|
*/
|
|
public function getEndDate(): Carbon
|
|
{
|
|
return $this->endDate;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param Carbon $date
|
|
*/
|
|
public function setEndDate(Carbon $date)
|
|
{
|
|
$this->endDate = $date;
|
|
}
|
|
|
|
/**
|
|
* @return \Carbon\Carbon
|
|
*/
|
|
public function getStartDate(): Carbon
|
|
{
|
|
return $this->startDate;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param Carbon $date
|
|
*/
|
|
public function setStartDate(Carbon $date)
|
|
{
|
|
$this->startDate = $date;
|
|
}
|
|
|
|
/**
|
|
* @return User
|
|
*/
|
|
public function getUser(): User
|
|
{
|
|
return $this->user;
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param User $user
|
|
*/
|
|
public function setUser(User $user)
|
|
{
|
|
$this->user = $user;
|
|
}
|
|
|
|
/**
|
|
* Execute the job.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function handle()
|
|
{
|
|
// Lookup all journals that match the parameters specified
|
|
$journals = $this->collectJournals();
|
|
|
|
// Find processors for each rule within the current rule group
|
|
$processors = $this->collectProcessors();
|
|
|
|
// Execute the rules for each transaction
|
|
foreach ($journals as $journal) {
|
|
/** @var Processor $processor */
|
|
foreach ($processors as $processor) {
|
|
$processor->handleTransactionJournal($journal);
|
|
|
|
// Stop processing this group if the rule specifies 'stop_processing'
|
|
if ($processor->getRule()->stop_processing) {
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Collect all journals that should be processed
|
|
*
|
|
* @return Collection
|
|
*/
|
|
protected function collectJournals()
|
|
{
|
|
/** @var JournalRepositoryInterface $repository */
|
|
$repository = app(JournalRepositoryInterface::class);
|
|
|
|
return $repository->getJournalsInRange($this->accounts, $this->startDate, $this->endDate);
|
|
}
|
|
|
|
/**
|
|
* Collects a list of rule processors, one for each rule within the rule group
|
|
*
|
|
* @return array
|
|
*/
|
|
protected function collectProcessors()
|
|
{
|
|
// Find all rules belonging to this rulegroup
|
|
$rules = $this->ruleGroup->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.*']);
|
|
|
|
// Create a list of processors for these rules
|
|
return array_map(
|
|
function ($rule) {
|
|
return Processor::make($rule);
|
|
}, $rules->all()
|
|
);
|
|
}
|
|
|
|
}
|