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

134 lines
6.3 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;
2021-04-10 17:24:38 +02:00
use 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
*
* @codeCoverageIgnore
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
{
2020-11-08 13:36:13 +01:00
use ConvertsDataTypes, AppendsLocationData, ChecksLogin;
2019-09-04 17:39:39 +02:00
/**
* @return array
*/
public function getUpdateData(): array
{
2021-03-20 07:02:06 +01:00
$fields = [
'name' => ['name', 'string'],
'active' => ['active', 'boolean'],
'include_net_worth' => ['include_net_worth', 'boolean'],
2021-04-05 21:52:55 +02:00
'account_type_name' => ['type', 'string'],
2021-03-20 07:02:06 +01:00
'virtual_balance' => ['virtual_balance', 'string'],
'iban' => ['iban', 'string'],
'BIC' => ['bic', 'string'],
'account_number' => ['account_number', 'string'],
'account_role' => ['account_role', 'string'],
'liability_type' => ['liability_type', 'string'],
'opening_balance' => ['opening_balance', 'string'],
'opening_balance_date' => ['opening_balance_date', 'date'],
'cc_type' => ['credit_card_type', 'string'],
'cc_monthly_payment_date' => ['monthly_payment_date', 'string'],
2021-04-06 13:30:09 +02:00
'notes' => ['notes', 'stringWithNewlines'],
2021-03-20 07:02:06 +01:00
'interest' => ['interest', 'string'],
'interest_period' => ['interest_period', 'string'],
'order' => ['order', 'integer'],
'currency_id' => ['currency_id', 'integer'],
'currency_code' => ['currency_code', 'string'],
2021-04-10 17:24:38 +02:00
'liability_direction' => ['liability_direction', 'string'],
'liability_amount' => ['liability_amount', 'string'],
2021-04-10 17:24:38 +02:00
'liability_start_date' => ['liability_start_date', 'date'],
];
2021-04-10 17:24:38 +02:00
/** @var Account $account */
$account = $this->route()->parameter('account');
$data = $this->getAllData($fields);
$data = $this->appendLocationData($data, null);
$valid = config('firefly.valid_liabilities');
if (array_key_exists('liability_amount', $data) && in_array($account->accountType->type, $valid, true)) {
$data['opening_balance'] = app('steam')->negative($data['liability_amount']);
Log::debug(sprintf('Opening balance for liability is "%s".', $data['opening_balance']));
}
2021-04-10 17:24:38 +02:00
if (array_key_exists('liability_start_date', $data) && in_array($account->accountType->type, $valid, true)) {
$data['opening_balance_date'] = $data['liability_start_date'];
Log::debug(sprintf('Opening balance date for liability is "%s".', $data['opening_balance_date']));
}
return $data;
}
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
{
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 = [
'name' => sprintf('min:1|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',
'currency_code' => 'min:3|max:3|exists:transaction_currencies,code',
'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),
'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
}