mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-26 00:41:34 -06:00
Fix the last triggers.
This commit is contained in:
parent
1270e5d15c
commit
3dbb1f034d
@ -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 . '). ');
|
||||
|
60
app/Rules/Triggers/DescriptionIs.php
Normal file
60
app/Rules/Triggers/DescriptionIs.php
Normal 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;
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user