Files
firefly-iii/app/Http/Requests/ObjectGroupFormRequest.php

76 lines
2.2 KiB
PHP
Raw Normal View History

2020-06-20 10:10:55 +02:00
<?php
2022-12-29 19:42:26 +01:00
2020-06-20 10:10:55 +02:00
/**
* ObjectGroupFormRequest.php
* Copyright (c) 2019 james@firefly-iii.org
*
* 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/>.
*/
declare(strict_types=1);
namespace FireflyIII\Http\Requests;
use FireflyIII\Models\ObjectGroup;
2020-10-24 07:55:09 +02:00
use FireflyIII\Support\Request\ChecksLogin;
2020-10-04 09:19:36 +02:00
use FireflyIII\Support\Request\ConvertsDataTypes;
2020-10-24 07:55:09 +02:00
use Illuminate\Foundation\Http\FormRequest;
2024-01-09 21:03:26 +01:00
use Illuminate\Support\Facades\Log;
use Illuminate\Validation\Validator;
2020-06-20 10:10:55 +02:00
/**
* Class ObjectGroupFormRequest.
*/
2020-10-24 07:55:09 +02:00
class ObjectGroupFormRequest extends FormRequest
2020-06-20 10:10:55 +02:00
{
2022-10-30 14:24:28 +01:00
use ChecksLogin;
2023-11-04 14:18:49 +01:00
use ConvertsDataTypes;
2020-06-20 10:10:55 +02:00
/**
* Returns the data required by the controller.
*/
public function getObjectGroupData(): array
{
return [
2022-05-02 19:35:35 +02:00
'title' => $this->convertString('title'),
2020-06-20 10:10:55 +02:00
];
}
/**
* Rules for this request.
*/
public function rules(): array
{
2023-12-20 19:35:52 +01:00
/** @var null|ObjectGroup $objectGroup */
2020-06-20 10:10:55 +02:00
$objectGroup = $this->route()->parameter('objectGroup');
2024-01-05 09:48:59 +01:00
$titleRule = 'required|min:1|max:255|uniqueObjectGroup';
2020-06-20 10:10:55 +02:00
if (null !== $objectGroup) {
2024-01-05 09:48:59 +01:00
$titleRule = sprintf('required|min:1|max:255|uniqueObjectGroup:%d', $objectGroup->id);
2020-06-20 10:10:55 +02:00
}
return [
'title' => $titleRule,
];
}
2024-01-09 21:03:26 +01:00
public function withValidator(Validator $validator): void
{
if ($validator->fails()) {
2024-01-09 21:03:26 +01:00
Log::channel('audit')->error(sprintf('Validation errors in %s', __CLASS__), $validator->errors()->toArray());
}
}
2020-06-20 10:10:55 +02:00
}