firefly-iii/app/Rules/Triggers/DescriptionEnds.php
2016-02-05 12:08:25 +01:00

76 lines
2.1 KiB
PHP

<?php
declare(strict_types = 1);
/**
* DescriptionEnds.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 DescriptionEnds
*
* @package FireflyIII\Rules\Triggers
*/
class DescriptionEnds 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);
$descriptionLength = strlen($description);
$search = strtolower($this->trigger->trigger_value);
$searchLength = strlen($search);
// 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 . '). ');
$search = substr($search, ($descriptionLength * -1));
$searchLength = strlen($search);
Log::debug('Search string is now "' . $search . '" (' . $searchLength . ') instead.');
}
$part = substr($description, $searchLength * -1);
if ($part == $search) {
Log::debug('"' . $description . '" ends with "' . $search . '". Return true.');
return true;
}
Log::debug('"' . $description . '" does not end with "' . $search . '". Return false.');
return false;
}
}