2024-03-09 12:57:34 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/*
|
|
|
|
*
|
|
|
|
* IsValidActionExpression.php
|
|
|
|
* Copyright (c) 2024 Michael Thomas
|
|
|
|
*
|
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2024-03-09 13:02:04 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2024-03-09 12:57:34 -05:00
|
|
|
namespace FireflyIII\Rules;
|
|
|
|
|
|
|
|
use FireflyIII\TransactionRules\Expressions\ActionExpression;
|
2024-03-10 06:17:31 +01:00
|
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
|
|
|
use Illuminate\Translation\PotentiallyTranslatedString;
|
2024-03-09 12:57:34 -05:00
|
|
|
|
|
|
|
class IsValidActionExpression implements ValidationRule
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Check that the given action expression is syntactically valid.
|
|
|
|
*
|
2024-03-10 06:17:31 +01:00
|
|
|
* @param \Closure(string): PotentiallyTranslatedString $fail
|
2024-03-09 14:09:36 -05:00
|
|
|
*
|
2025-01-03 15:53:10 +01:00
|
|
|
* @SuppressWarnings("PHPMD.UnusedFormalParameter")
|
2024-03-09 12:57:34 -05:00
|
|
|
*/
|
2024-03-10 06:17:31 +01:00
|
|
|
public function validate(string $attribute, mixed $value, \Closure $fail): void
|
2024-03-09 12:57:34 -05:00
|
|
|
{
|
2024-03-10 06:46:24 +01:00
|
|
|
if (false === config('firefly.feature_flags.expression_engine')) {
|
|
|
|
return;
|
|
|
|
}
|
2024-03-09 12:57:34 -05:00
|
|
|
$value ??= '';
|
2024-03-10 08:11:58 +01:00
|
|
|
$expr = new ActionExpression($value);
|
2024-03-09 12:57:34 -05:00
|
|
|
|
|
|
|
if (!$expr->isValid()) {
|
2024-03-10 06:46:24 +01:00
|
|
|
$fail('validation.rule_action_expression')->translate(
|
|
|
|
[
|
|
|
|
'error' => $expr->getValidationError()->getMessage(),
|
|
|
|
]
|
|
|
|
);
|
2024-03-09 12:57:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|