2018-02-10 09:57:31 +01:00
|
|
|
<?php
|
2018-05-11 10:08:34 +02:00
|
|
|
|
2018-02-10 09:57:31 +01:00
|
|
|
/**
|
2020-10-27 16:26:10 +01:00
|
|
|
* BillStoreRequest.php
|
2020-01-23 19:44:52 +01:00
|
|
|
* Copyright (c) 2019 james@firefly-iii.org
|
2018-02-10 09:57:31 +01:00
|
|
|
*
|
2019-10-02 06:37:26 +02:00
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
2018-02-10 09:57:31 +01:00
|
|
|
*
|
2019-10-02 06:37:26 +02: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-02-10 09:57:31 +01:00
|
|
|
*
|
2019-10-02 06:37:26 +02:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2018-02-10 09:57:31 +01:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-10-02 06:37:26 +02:00
|
|
|
* GNU Affero General Public License for more details.
|
2018-02-10 09:57:31 +01:00
|
|
|
*
|
2019-10-02 06:37:26 +02: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-02-10 09:57:31 +01:00
|
|
|
*/
|
|
|
|
|
2018-05-11 10:08:34 +02:00
|
|
|
declare(strict_types=1);
|
2018-02-10 09:57:31 +01:00
|
|
|
|
2021-03-06 12:45:49 +01:00
|
|
|
namespace FireflyIII\Api\V1\Requests\Models\Bill;
|
2018-02-10 09:57:31 +01:00
|
|
|
|
2018-12-14 18:33:07 +01:00
|
|
|
use FireflyIII\Rules\IsBoolean;
|
2020-10-27 16:26:10 +01:00
|
|
|
use FireflyIII\Support\Request\ChecksLogin;
|
2020-07-18 08:34:00 +02:00
|
|
|
use FireflyIII\Support\Request\ConvertsDataTypes;
|
2020-07-18 08:25:25 +02:00
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
2018-02-18 10:31:15 +01:00
|
|
|
use Illuminate\Validation\Validator;
|
|
|
|
|
2018-02-10 09:57:31 +01:00
|
|
|
/**
|
2021-03-06 12:45:49 +01:00
|
|
|
* Class StoreRequest
|
2019-06-09 08:26:23 +02:00
|
|
|
*
|
2019-04-12 04:53:18 +02:00
|
|
|
* @codeCoverageIgnore
|
2018-02-10 09:57:31 +01:00
|
|
|
*/
|
2021-03-06 12:45:49 +01:00
|
|
|
class StoreRequest extends FormRequest
|
2018-02-10 09:57:31 +01:00
|
|
|
{
|
2020-10-27 16:26:10 +01:00
|
|
|
use ConvertsDataTypes, ChecksLogin;
|
2018-02-10 09:57:31 +01:00
|
|
|
|
|
|
|
/**
|
2018-07-06 07:15:42 +02:00
|
|
|
* Get all data from the request.
|
|
|
|
*
|
2018-02-10 09:57:31 +01:00
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function getAll(): array
|
|
|
|
{
|
2018-12-21 15:42:57 +01:00
|
|
|
$active = true;
|
2019-02-13 17:38:41 +01:00
|
|
|
if (null !== $this->get('active')) {
|
2018-12-21 15:42:57 +01:00
|
|
|
$active = $this->boolean('active');
|
|
|
|
}
|
|
|
|
|
2020-03-15 08:16:16 +01:00
|
|
|
return [
|
2018-04-15 19:20:24 +02:00
|
|
|
'name' => $this->string('name'),
|
|
|
|
'amount_min' => $this->string('amount_min'),
|
|
|
|
'amount_max' => $this->string('amount_max'),
|
|
|
|
'currency_id' => $this->integer('currency_id'),
|
|
|
|
'currency_code' => $this->string('currency_code'),
|
|
|
|
'date' => $this->date('date'),
|
|
|
|
'repeat_freq' => $this->string('repeat_freq'),
|
|
|
|
'skip' => $this->integer('skip'),
|
2018-12-21 15:42:57 +01:00
|
|
|
'active' => $active,
|
2020-07-01 15:33:06 +02:00
|
|
|
'order' => $this->integer('order'),
|
2019-09-22 17:36:18 +02:00
|
|
|
'notes' => $this->nlString('notes'),
|
2018-02-10 09:57:31 +01:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-07-06 07:15:42 +02:00
|
|
|
* The rules that the incoming request must be matched against.
|
|
|
|
*
|
2018-02-10 09:57:31 +01:00
|
|
|
* @return array
|
|
|
|
*/
|
2018-02-16 16:42:23 +01:00
|
|
|
public function rules(): array
|
2018-02-10 09:57:31 +01:00
|
|
|
{
|
2020-10-27 16:26:10 +01:00
|
|
|
return [
|
2020-07-01 15:33:06 +02:00
|
|
|
'name' => 'between:1,255|uniqueObjectForUser:bills,name',
|
2020-07-06 06:55:27 +02:00
|
|
|
'amount_min' => 'numeric|gt:0',
|
|
|
|
'amount_max' => 'numeric|gt:0',
|
2018-12-14 18:33:07 +01:00
|
|
|
'currency_id' => 'numeric|exists:transaction_currencies,id',
|
|
|
|
'currency_code' => 'min:3|max:3|exists:transaction_currencies,code',
|
2020-07-01 15:33:06 +02:00
|
|
|
'date' => 'date',
|
|
|
|
'repeat_freq' => 'in:weekly,monthly,quarterly,half-year,yearly',
|
2018-12-14 18:33:07 +01:00
|
|
|
'skip' => 'between:0,31',
|
|
|
|
'active' => [new IsBoolean],
|
2018-04-15 19:20:24 +02:00
|
|
|
'notes' => 'between:1,65536',
|
2018-02-10 09:57:31 +01:00
|
|
|
];
|
|
|
|
}
|
2018-02-18 10:31:15 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Configure the validator instance.
|
|
|
|
*
|
2019-04-12 04:53:18 +02:00
|
|
|
* @param Validator $validator
|
2018-02-18 10:31:15 +01:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function withValidator(Validator $validator): void
|
|
|
|
{
|
|
|
|
$validator->after(
|
2019-06-10 20:14:00 +02:00
|
|
|
static function (Validator $validator) {
|
2018-02-18 10:31:15 +01:00
|
|
|
$data = $validator->getData();
|
2020-03-17 14:53:17 +01:00
|
|
|
$min = (float) ($data['amount_min'] ?? 0);
|
|
|
|
$max = (float) ($data['amount_max'] ?? 0);
|
2018-02-18 10:31:15 +01:00
|
|
|
if ($min > $max) {
|
2020-03-17 14:53:17 +01:00
|
|
|
$validator->errors()->add('amount_min', (string) trans('validation.amount_min_over_max'));
|
2018-02-18 10:31:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2018-03-05 19:35:58 +01:00
|
|
|
}
|