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;
|
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 ConvertsDataTypes;
|
|
|
|
use ChecksLogin;
|
2020-06-20 10:10:55 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the data required by the controller.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
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.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules(): array
|
|
|
|
{
|
2021-04-07 07:53:05 +02:00
|
|
|
/** @var ObjectGroup $objectGroup */
|
2020-06-20 10:10:55 +02:00
|
|
|
$objectGroup = $this->route()->parameter('objectGroup');
|
2021-09-18 10:26:12 +02:00
|
|
|
$titleRule = 'required|between:1,255|uniqueObjectGroup';
|
2020-06-20 10:10:55 +02:00
|
|
|
|
|
|
|
if (null !== $objectGroup) {
|
|
|
|
$titleRule = sprintf('required|between:1,255|uniqueObjectGroup:%d', $objectGroup->id);
|
|
|
|
}
|
|
|
|
|
|
|
|
return [
|
|
|
|
'title' => $titleRule,
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|