Files
firefly-iii/app/Api/V1/Requests/Models/Account/UpdateRequest.php

123 lines
5.7 KiB
PHP
Raw Normal View History

2018-02-13 18:24:06 +01:00
<?php
2018-05-11 10:08:34 +02:00
2021-03-06 07:20:49 +01:00
/*
2019-04-11 06:06:25 +02:00
* AccountUpdateRequest.php
2021-03-06 07:20:49 +01:00
* Copyright (c) 2021 james@firefly-iii.org
2018-02-13 18:24:06 +01:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2018-02-13 18:24:06 +01: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-13 18:24:06 +01:00
*
* This program is distributed in the hope that it will be useful,
2018-02-13 18:24:06 +01:00
* 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.
2018-02-13 18:24:06 +01: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-13 18:24:06 +01:00
*/
2018-05-11 10:08:34 +02:00
declare(strict_types=1);
2018-02-13 18:24:06 +01:00
2021-03-06 07:20:49 +01:00
namespace FireflyIII\Api\V1\Requests\Models\Account;
2021-04-10 17:24:38 +02:00
use FireflyIII\Models\Account;
use FireflyIII\Models\Location;
use FireflyIII\Rules\IsBoolean;
2021-01-26 19:27:49 +01:00
use FireflyIII\Rules\UniqueAccountNumber;
use FireflyIII\Rules\UniqueIban;
use FireflyIII\Support\Request\AppendsLocationData;
2020-11-08 13:36:13 +01:00
use FireflyIII\Support\Request\ChecksLogin;
use FireflyIII\Support\Request\ConvertsDataTypes;
use Illuminate\Foundation\Http\FormRequest;
2023-04-01 07:04:42 +02:00
use Illuminate\Support\Facades\Log;
2018-02-13 18:24:06 +01:00
/**
2021-03-06 07:20:49 +01:00
* Class UpdateRequest
2019-09-04 17:39:39 +02:00
*
2018-02-13 18:24:06 +01:00
*/
2021-03-06 07:20:49 +01:00
class UpdateRequest extends FormRequest
2018-02-13 18:24:06 +01:00
{
2022-10-30 14:23:00 +01:00
use ConvertsDataTypes;
use AppendsLocationData;
use ChecksLogin;
2019-09-04 17:39:39 +02:00
/**
* @return array
*/
public function getUpdateData(): array
{
2021-03-20 07:02:06 +01:00
$fields = [
2022-05-04 05:53:47 +02:00
'name' => ['name', 'convertString'],
2021-03-20 07:02:06 +01:00
'active' => ['active', 'boolean'],
'include_net_worth' => ['include_net_worth', 'boolean'],
2022-05-04 05:53:47 +02:00
'account_type_name' => ['type', 'convertString'],
'virtual_balance' => ['virtual_balance', 'convertString'],
'iban' => ['iban', 'convertString'],
'BIC' => ['bic', 'convertString'],
'account_number' => ['account_number', 'convertString'],
'account_role' => ['account_role', 'convertString'],
'liability_type' => ['liability_type', 'convertString'],
'opening_balance' => ['opening_balance', 'convertString'],
2021-03-20 07:02:06 +01:00
'opening_balance_date' => ['opening_balance_date', 'date'],
2022-05-04 05:53:47 +02:00
'cc_type' => ['credit_card_type', 'convertString'],
'cc_monthly_payment_date' => ['monthly_payment_date', 'convertString'],
2021-04-06 13:30:09 +02:00
'notes' => ['notes', 'stringWithNewlines'],
2022-05-04 05:53:47 +02:00
'interest' => ['interest', 'convertString'],
'interest_period' => ['interest_period', 'convertString'],
2022-10-01 05:29:42 +02:00
'order' => ['order', 'convertInteger'],
'currency_id' => ['currency_id', 'convertInteger'],
2022-05-04 05:53:47 +02:00
'currency_code' => ['currency_code', 'convertString'],
'liability_direction' => ['liability_direction', 'convertString'],
'liability_amount' => ['liability_amount', 'convertString'],
2021-04-10 17:24:38 +02:00
'liability_start_date' => ['liability_start_date', 'date'],
];
2023-02-22 18:14:14 +01:00
$data = $this->getAllData($fields);
return $this->appendLocationData($data, null);
}
2018-02-13 18:24:06 +01:00
/**
* The rules that the incoming request must be matched against.
*
2018-02-13 18:24:06 +01:00
* @return array
*/
2018-02-16 16:42:23 +01:00
public function rules(): array
2018-02-13 18:24:06 +01:00
{
2022-10-30 14:34:36 +01:00
/** @var Account $account */
2019-04-11 06:06:25 +02:00
$account = $this->route()->parameter('account');
2018-03-26 19:19:11 +02:00
$accountRoles = implode(',', config('firefly.accountRoles'));
$types = implode(',', array_keys(config('firefly.subTitlesByIdentifier')));
$ccPaymentTypes = implode(',', array_keys(config('firefly.ccTypes')));
$rules = [
2023-04-26 06:17:04 +02:00
'name' => sprintf('min:1|max:1024|uniqueAccountForUser:%d', $account->id),
2019-04-11 06:06:25 +02:00
'type' => sprintf('in:%s', $types),
2022-05-02 19:35:35 +02:00
'iban' => ['iban', 'nullable', new UniqueIban($account, $this->convertString('type'))],
'bic' => 'bic|nullable',
2022-05-02 19:35:35 +02:00
'account_number' => ['between:1,255', 'nullable', new UniqueAccountNumber($account, $this->convertString('type'))],
'opening_balance' => 'numeric|required_with:opening_balance_date|nullable',
'opening_balance_date' => 'date|required_with:opening_balance|nullable',
'virtual_balance' => 'numeric|nullable',
2020-07-24 16:41:31 +02:00
'order' => 'numeric|nullable',
'currency_id' => 'numeric|exists:transaction_currencies,id',
2023-04-26 06:17:04 +02:00
'currency_code' => 'min:3|max:51|exists:transaction_currencies,code',
2022-10-30 14:23:00 +01:00
'active' => [new IsBoolean()],
'include_net_worth' => [new IsBoolean()],
2021-03-20 07:02:06 +01:00
'account_role' => sprintf('in:%s|nullable|required_if:type,asset', $accountRoles),
'credit_card_type' => sprintf('in:%s|nullable|required_if:account_role,ccAsset', $ccPaymentTypes),
2022-12-29 19:41:57 +01:00
'monthly_payment_date' => 'date'.'|nullable|required_if:account_role,ccAsset|required_if:credit_card_type,monthlyFull',
'liability_type' => 'required_if:type,liability|in:loan,debt,mortgage',
2021-04-10 07:56:50 +02:00
'liability_direction' => 'required_if:type,liability|in:credit,debit',
'interest' => 'required_if:type,liability|between:0,100|numeric',
'interest_period' => 'required_if:type,liability|in:daily,monthly,yearly',
'notes' => 'min:0|max:65536',
2018-02-13 18:24:06 +01:00
];
2021-01-26 19:27:49 +01:00
2020-10-23 19:11:25 +02:00
return Location::requestRules($rules);
2018-02-13 18:24:06 +01:00
}
2018-03-05 19:35:58 +01:00
}