Fix the last triggers.

This commit is contained in:
James Cole 2016-01-13 14:51:49 +01:00
parent 1270e5d15c
commit 3dbb1f034d
2 changed files with 61 additions and 1 deletions

View File

@ -49,7 +49,7 @@ class DescriptionEnds implements TriggerInterface
$search = strtolower($this->trigger->trigger_value);
$searchLength = strlen($search);
// if the string to search for is longer than the account name,
// if the string to search for is longer than the description,
// shorten the search string.
if ($searchLength > $descriptionLength) {
Log::debug('Search string "' . $search . '" (' . $searchLength . ') is longer than "' . $description . '" (' . $descriptionLength . '). ');

View File

@ -0,0 +1,60 @@
<?php
/**
* DescriptionIs.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 DescriptionIs
*
* @package FireflyIII\Rules\Triggers
*/
class DescriptionIs implements TriggerInterface
{
/** @var RuleTrigger */
protected $trigger;
/** @var TransactionJournal */
protected $journal;
/**
* TriggerInterface constructor.
*
* @param RuleTrigger $trigger
* @param TransactionJournal $journal
*/
public function __construct(RuleTrigger $trigger, TransactionJournal $journal)
{
$this->trigger = $trigger;
$this->journal = $journal;
}
/**
* @return bool
*/
public function triggered()
{
$description = strtolower($this->journal->description);
$search = strtolower($this->trigger->trigger_value);
if ($description == $search) {
Log::debug('"' . $description . '" equals "' . $search . '" exactly. Return true.');
return true;
}
Log::debug('"' . $description . '" does not equal "' . $search . '". Return false.');
return false;
}
}