2016-01-13 07:37:19 -06:00
|
|
|
<?php
|
2016-02-05 05:08:25 -06:00
|
|
|
declare(strict_types = 1);
|
2016-01-13 07:37:19 -06:00
|
|
|
/**
|
|
|
|
* AmountExactly.php
|
|
|
|
* Copyright (C) 2016 Sander Dorigo
|
|
|
|
*
|
|
|
|
* This software may be modified and distributed under the terms
|
|
|
|
* of the MIT license. See the LICENSE file for details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace FireflyIII\Rules\Triggers;
|
|
|
|
|
|
|
|
|
|
|
|
use FireflyIII\Models\RuleTrigger;
|
|
|
|
use FireflyIII\Models\TransactionJournal;
|
|
|
|
use Log;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class AmountExactly
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Rules\Triggers
|
|
|
|
*/
|
|
|
|
class AmountExactly implements TriggerInterface
|
|
|
|
{
|
|
|
|
/** @var TransactionJournal */
|
|
|
|
protected $journal;
|
2016-02-17 08:38:21 -06:00
|
|
|
/** @var RuleTrigger */
|
|
|
|
protected $trigger;
|
2016-01-13 07:37:19 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* TriggerInterface constructor.
|
|
|
|
*
|
|
|
|
* @param RuleTrigger $trigger
|
|
|
|
* @param TransactionJournal $journal
|
|
|
|
*/
|
|
|
|
public function __construct(RuleTrigger $trigger, TransactionJournal $journal)
|
|
|
|
{
|
|
|
|
$this->trigger = $trigger;
|
|
|
|
$this->journal = $journal;
|
|
|
|
}
|
|
|
|
|
2016-02-17 08:38:21 -06:00
|
|
|
/**
|
|
|
|
* @{inheritdoc}
|
|
|
|
*
|
|
|
|
* @see TriggerInterface::matchesAnything
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function matchesAnything()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2016-01-13 07:37:19 -06:00
|
|
|
/**
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function triggered()
|
|
|
|
{
|
|
|
|
$amount = $this->journal->amount_positive;
|
|
|
|
$compare = $this->trigger->trigger_value;
|
|
|
|
$result = bccomp($amount, $compare, 4);
|
|
|
|
if ($result === 0) {
|
|
|
|
// found something
|
|
|
|
Log::debug($amount . ' is exactly ' . $compare . '. Return true.');
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// found nothing.
|
|
|
|
Log::debug($amount . ' is not exactly ' . $compare . '. Return false.');
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
2016-01-28 14:50:20 -06:00
|
|
|
}
|