firefly-iii/app/Api/V1/Requests/Autocomplete/AutocompleteRequest.php

83 lines
2.1 KiB
PHP
Raw Normal View History

2020-07-19 10:43:12 -05:00
<?php
/**
* AutocompleteRequest.php
* Copyright (c) 2020 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\Api\V1\Requests\Autocomplete;
2020-10-17 02:02:52 -05:00
use FireflyIII\Models\AccountType;
2020-07-19 10:43:12 -05:00
use FireflyIII\Support\Request\ConvertsDataTypes;
use Illuminate\Foundation\Http\FormRequest;
/**
* Class AutocompleteRequest
*/
class AutocompleteRequest extends FormRequest
{
use ConvertsDataTypes;
/**
* Authorize logged in users.
*
* @return bool
*/
public function authorize(): bool
{
// Only allow authenticated users
return auth()->check();
}
/**
* @return array
*/
public function getData(): array
{
$types = $this->string('types');
$array = [];
if ('' !== $types) {
$array = explode(',', $types);
}
2020-07-20 23:14:47 -05:00
$limit = $this->integer('limit');
$limit = 0 === $limit ? 10 : $limit;
2020-07-19 10:43:12 -05:00
2020-10-17 02:02:52 -05:00
// remove 'initial balance' from allowed types. its internal
2020-10-17 02:12:51 -05:00
$array = array_diff($array, [AccountType::INITIAL_BALANCE]);
2020-10-17 02:02:52 -05:00
2020-07-19 10:43:12 -05:00
return [
'types' => $array,
'query' => $this->string('query'),
'date' => $this->date('date'),
2020-07-20 23:14:47 -05:00
'limit' => $limit,
2020-07-19 10:43:12 -05:00
];
}
/**
* @return array
*/
public function rules(): array
{
2020-07-20 23:14:47 -05:00
return [
2020-07-31 02:42:00 -05:00
'limit' => 'min:0|max:1337',
2020-07-20 23:14:47 -05:00
];
2020-07-19 10:43:12 -05:00
}
}