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
|
|
|
* AccountStoreRequest.php
|
2021-03-06 07:20:49 +01:00
|
|
|
* Copyright (c) 2021 james@firefly-iii.org
|
2018-02-13 18:24:06 +01:00
|
|
|
*
|
2019-10-02 06:37:26 +02:00
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
2018-02-13 18:24:06 +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-13 18:24:06 +01:00
|
|
|
*
|
2019-10-02 06:37:26 +02: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
|
2019-10-02 06:37:26 +02:00
|
|
|
* GNU Affero General Public License for more details.
|
2018-02-13 18:24:06 +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-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;
|
2018-12-14 18:33:07 +01:00
|
|
|
|
2019-12-31 14:01:53 +01:00
|
|
|
use FireflyIII\Models\Location;
|
2018-12-14 18:33:07 +01:00
|
|
|
use FireflyIII\Rules\IsBoolean;
|
2024-01-02 14:33:17 +01:00
|
|
|
use FireflyIII\Rules\IsValidPositiveAmount;
|
2021-01-26 19:27:49 +01:00
|
|
|
use FireflyIII\Rules\UniqueAccountNumber;
|
|
|
|
use FireflyIII\Rules\UniqueIban;
|
2020-07-18 08:25:25 +02:00
|
|
|
use FireflyIII\Support\Request\AppendsLocationData;
|
2020-11-08 13:36:13 +01:00
|
|
|
use FireflyIII\Support\Request\ChecksLogin;
|
2020-07-18 08:25:25 +02:00
|
|
|
use FireflyIII\Support\Request\ConvertsDataTypes;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
2018-12-14 18:33:07 +01:00
|
|
|
|
2018-02-13 18:24:06 +01:00
|
|
|
/**
|
2021-03-06 07:20:49 +01:00
|
|
|
* Class StoreRequest
|
2018-02-13 18:24:06 +01:00
|
|
|
*/
|
2021-03-06 07:20:49 +01:00
|
|
|
class StoreRequest extends FormRequest
|
2018-02-13 18:24:06 +01:00
|
|
|
{
|
2022-10-30 14:23:00 +01:00
|
|
|
use AppendsLocationData;
|
|
|
|
use ChecksLogin;
|
2023-11-04 14:18:49 +01:00
|
|
|
use ConvertsDataTypes;
|
2018-02-13 18:24:06 +01:00
|
|
|
|
2020-01-01 14:27:08 +01:00
|
|
|
public function getAllAccountData(): array
|
|
|
|
{
|
|
|
|
$active = true;
|
|
|
|
$includeNetWorth = true;
|
|
|
|
if (null !== $this->get('active')) {
|
|
|
|
$active = $this->boolean('active');
|
|
|
|
}
|
|
|
|
if (null !== $this->get('include_net_worth')) {
|
|
|
|
$includeNetWorth = $this->boolean('include_net_worth');
|
|
|
|
}
|
2024-01-01 14:41:31 +01:00
|
|
|
$data = [
|
2022-05-02 19:35:35 +02:00
|
|
|
'name' => $this->convertString('name'),
|
2020-01-01 14:27:08 +01:00
|
|
|
'active' => $active,
|
|
|
|
'include_net_worth' => $includeNetWorth,
|
2022-05-02 19:35:35 +02:00
|
|
|
'account_type_name' => $this->convertString('type'),
|
2020-01-01 14:27:08 +01:00
|
|
|
'account_type_id' => null,
|
2022-10-01 05:29:42 +02:00
|
|
|
'currency_id' => $this->convertInteger('currency_id'),
|
|
|
|
'order' => $this->convertInteger('order'),
|
2022-05-02 19:35:35 +02:00
|
|
|
'currency_code' => $this->convertString('currency_code'),
|
|
|
|
'virtual_balance' => $this->convertString('virtual_balance'),
|
2024-05-18 06:42:09 +02:00
|
|
|
'iban' => $this->convertIban('iban'),
|
2022-05-02 19:35:35 +02:00
|
|
|
'BIC' => $this->convertString('bic'),
|
|
|
|
'account_number' => $this->convertString('account_number'),
|
|
|
|
'account_role' => $this->convertString('account_role'),
|
|
|
|
'opening_balance' => $this->convertString('opening_balance'),
|
2021-12-28 20:42:50 +01:00
|
|
|
'opening_balance_date' => $this->getCarbonDate('opening_balance_date'),
|
2022-05-02 19:35:35 +02:00
|
|
|
'cc_type' => $this->convertString('credit_card_type'),
|
|
|
|
'cc_monthly_payment_date' => $this->convertString('monthly_payment_date'),
|
2021-04-06 13:30:09 +02:00
|
|
|
'notes' => $this->stringWithNewlines('notes'),
|
2022-05-02 19:35:35 +02:00
|
|
|
'interest' => $this->convertString('interest'),
|
|
|
|
'interest_period' => $this->convertString('interest_period'),
|
2020-01-01 14:27:08 +01:00
|
|
|
];
|
2021-04-10 17:24:38 +02:00
|
|
|
// append location information.
|
2024-01-01 14:41:31 +01:00
|
|
|
$data = $this->appendLocationData($data, null);
|
2020-01-01 14:27:08 +01:00
|
|
|
|
2021-04-05 21:52:55 +02:00
|
|
|
if ('liability' === $data['account_type_name'] || 'liabilities' === $data['account_type_name']) {
|
2023-02-22 18:14:14 +01:00
|
|
|
$data['account_type_name'] = $this->convertString('liability_type');
|
|
|
|
$data['liability_direction'] = $this->convertString('liability_direction');
|
|
|
|
$data['account_type_id'] = null;
|
2020-01-01 14:27:08 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2018-02-13 18:24:06 +01:00
|
|
|
/**
|
2018-07-06 07:15:42 +02:00
|
|
|
* The rules that the incoming request must be matched against.
|
2018-02-13 18:24:06 +01:00
|
|
|
*/
|
2018-02-16 16:42:23 +01:00
|
|
|
public function rules(): array
|
2018-02-13 18:24:06 +01:00
|
|
|
{
|
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')));
|
2022-05-02 19:35:35 +02:00
|
|
|
$type = $this->convertString('type');
|
2018-02-13 18:24:06 +01:00
|
|
|
$rules = [
|
2023-04-26 06:17:04 +02:00
|
|
|
'name' => 'required|max:1024|min:1|uniqueAccountForUser',
|
2023-12-20 19:35:52 +01:00
|
|
|
'type' => 'required|max:1024|min:1|'.sprintf('in:%s', $types),
|
2021-01-26 19:27:49 +01:00
|
|
|
'iban' => ['iban', 'nullable', new UniqueIban(null, $type)],
|
2018-12-15 07:59:49 +01:00
|
|
|
'bic' => 'bic|nullable',
|
2024-01-05 09:48:59 +01:00
|
|
|
'account_number' => ['min:1', 'max:255', 'nullable', new UniqueAccountNumber(null, $type)],
|
2018-12-15 07:59:49 +01:00
|
|
|
'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',
|
2018-12-15 07:59:49 +01:00
|
|
|
'currency_id' => 'numeric|exists:transaction_currencies,id',
|
|
|
|
'currency_code' => 'min:3|max:3|exists:transaction_currencies,code',
|
2022-10-30 14:23:00 +01:00
|
|
|
'active' => [new IsBoolean()],
|
|
|
|
'include_net_worth' => [new IsBoolean()],
|
2022-01-30 17:17:01 +01:00
|
|
|
'account_role' => sprintf('nullable|in:%s|required_if:type,asset', $accountRoles),
|
|
|
|
'credit_card_type' => sprintf('nullable|in:%s|required_if:account_role,ccAsset', $ccPaymentTypes),
|
|
|
|
'monthly_payment_date' => 'nullable|date|required_if:account_role,ccAsset|required_if:credit_card_type,monthlyFull',
|
|
|
|
'liability_type' => 'nullable|required_if:type,liability|required_if:type,liabilities|in:loan,debt,mortgage',
|
2024-01-02 14:33:17 +01:00
|
|
|
'liability_amount' => ['required_with:liability_start_date', new IsValidPositiveAmount()],
|
2021-04-10 17:24:38 +02:00
|
|
|
'liability_start_date' => 'required_with:liability_amount|date',
|
2022-01-30 17:17:01 +01:00
|
|
|
'liability_direction' => 'nullable|required_if:type,liability|required_if:type,liabilities|in:credit,debit',
|
2024-01-05 09:48:59 +01:00
|
|
|
'interest' => 'min:0|max:100|numeric',
|
2023-11-04 14:18:49 +01:00
|
|
|
'interest_period' => sprintf('nullable|in:%s', implode(',', config('firefly.interest_periods'))),
|
2024-01-08 12:56:57 +01:00
|
|
|
'notes' => 'min:0|max:32768',
|
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
|
|
|
}
|