2018-06-16 14:47:51 -05:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* ValidRecurrenceRepetitionType.php
|
2020-02-16 06:56:25 -06:00
|
|
|
* Copyright (c) 2019 james@firefly-iii.org
|
2018-06-16 14:47:51 -05:00
|
|
|
*
|
2019-10-01 23:37:26 -05:00
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
2018-06-16 14:47:51 -05:00
|
|
|
*
|
2019-10-01 23:37:26 -05:00
|
|
|
* 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.
|
2018-06-16 14:47:51 -05:00
|
|
|
*
|
2019-10-01 23:37:26 -05:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2018-06-16 14:47:51 -05:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-10-01 23:37:26 -05:00
|
|
|
* GNU Affero General Public License for more details.
|
2018-06-16 14:47:51 -05:00
|
|
|
*
|
2019-10-01 23:37:26 -05:00
|
|
|
* 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/>.
|
2018-06-16 14:47:51 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace FireflyIII\Rules;
|
|
|
|
|
2023-10-29 11:41:14 -05:00
|
|
|
use Illuminate\Contracts\Validation\ValidationRule;
|
2018-06-16 14:47:51 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class ValidRecurrenceRepetitionType
|
|
|
|
*/
|
2023-10-29 11:41:14 -05:00
|
|
|
class ValidRecurrenceRepetitionType implements ValidationRule
|
2018-06-16 14:47:51 -05:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the validation rule passes.
|
|
|
|
*
|
2023-11-30 10:28:44 -06:00
|
|
|
* @SuppressWarnings(PHPMD.UnusedFormalParameter)
|
2018-06-16 14:47:51 -05:00
|
|
|
*/
|
2023-12-20 12:35:52 -06:00
|
|
|
public function validate(string $attribute, mixed $value, \Closure $fail): void
|
2018-06-16 14:47:51 -05:00
|
|
|
{
|
2022-12-29 12:42:26 -06:00
|
|
|
$value = (string)$value;
|
2018-07-25 23:10:17 -05:00
|
|
|
if ('daily' === $value) {
|
2023-10-29 11:41:14 -05:00
|
|
|
return;
|
2018-06-16 14:47:51 -05:00
|
|
|
}
|
2023-12-20 12:35:52 -06:00
|
|
|
// monthly,17
|
|
|
|
// ndom,3,7
|
2022-10-30 08:24:37 -05:00
|
|
|
if (in_array(substr($value, 0, 6), ['yearly', 'weekly'], true)) {
|
2023-10-29 11:41:14 -05:00
|
|
|
return;
|
2018-06-16 14:47:51 -05:00
|
|
|
}
|
2021-05-24 01:50:17 -05:00
|
|
|
if (str_starts_with($value, 'monthly')) {
|
2023-10-29 11:41:14 -05:00
|
|
|
return;
|
2018-06-16 14:47:51 -05:00
|
|
|
}
|
2021-05-24 01:50:17 -05:00
|
|
|
if (str_starts_with($value, 'ndom')) {
|
2023-10-29 11:41:14 -05:00
|
|
|
return;
|
2018-06-16 14:47:51 -05:00
|
|
|
}
|
|
|
|
|
2023-10-29 11:41:14 -05:00
|
|
|
$fail('validation.valid_recurrence_rep_type')->translate();
|
2018-06-16 14:47:51 -05:00
|
|
|
}
|
2018-07-22 13:32:02 -05:00
|
|
|
}
|