firefly-iii/app/Rules/Triggers/FromAccountStarts.php

75 lines
1.7 KiB
PHP
Raw Normal View History

2016-01-13 07:02:22 -06:00
<?php
2016-02-05 05:08:25 -06:00
declare(strict_types = 1);
2016-01-13 07:02:22 -06:00
/**
* FromAccountStarts.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 FromAccountStarts
*
* @package FireflyIII\Rules\Triggers
*/
class FromAccountStarts implements TriggerInterface
{
/** @var TransactionJournal */
protected $journal;
2016-02-17 08:38:21 -06:00
/** @var RuleTrigger */
protected $trigger;
2016-01-13 07:02:22 -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 $this->trigger->trigger_value === "";
}
2016-01-13 07:02:22 -06:00
/**
* @return bool
*/
public function triggered()
{
$fromAccountName = strtolower($this->journal->source_account->name);
$search = strtolower($this->trigger->trigger_value);
$part = substr($fromAccountName, 0, strlen($search));
if ($part == $search) {
Log::debug('"' . $fromAccountName . '" starts with "' . $search . '". Return true.');
return true;
}
Log::debug('"' . $fromAccountName . '" does not start with "' . $search . '". Return false.');
return false;
}
2016-02-17 08:29:26 -06:00
}