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

134 lines
6.2 KiB
PHP
Raw Normal View History

2018-02-13 11:24:06 -06:00
<?php
2018-05-11 03:08:34 -05:00
2021-03-06 00:20:49 -06:00
/*
2019-04-10 23:06:25 -05:00
* AccountStoreRequest.php
2021-03-06 00:20:49 -06:00
* Copyright (c) 2021 james@firefly-iii.org
2018-02-13 11:24:06 -06:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2018-02-13 11:24:06 -06: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 11:24:06 -06:00
*
* This program is distributed in the hope that it will be useful,
2018-02-13 11:24:06 -06: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 11:24:06 -06: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 11:24:06 -06:00
*/
2018-05-11 03:08:34 -05:00
declare(strict_types=1);
2018-02-13 11:24:06 -06:00
2021-03-06 00:20:49 -06:00
namespace FireflyIII\Api\V1\Requests\Models\Account;
use FireflyIII\Models\Location;
use FireflyIII\Rules\IsBoolean;
2021-01-26 12:27:49 -06:00
use FireflyIII\Rules\UniqueAccountNumber;
use FireflyIII\Rules\UniqueIban;
use FireflyIII\Support\Request\AppendsLocationData;
2020-11-08 06:36:13 -06:00
use FireflyIII\Support\Request\ChecksLogin;
use FireflyIII\Support\Request\ConvertsDataTypes;
use Illuminate\Foundation\Http\FormRequest;
2018-02-13 11:24:06 -06:00
/**
2021-03-06 00:20:49 -06:00
* Class StoreRequest
2019-09-04 10:39:39 -05:00
*
* @codeCoverageIgnore
2018-02-13 11:24:06 -06:00
*/
2021-03-06 00:20:49 -06:00
class StoreRequest extends FormRequest
2018-02-13 11:24:06 -06:00
{
2020-11-08 06:36:13 -06:00
use ConvertsDataTypes, AppendsLocationData, ChecksLogin;
2018-02-13 11:24:06 -06:00
2020-01-01 07:27:08 -06:00
/**
* @return array
*/
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');
}
$data = [
'name' => $this->string('name'),
'active' => $active,
'include_net_worth' => $includeNetWorth,
2021-04-05 03:56:08 -05:00
'account_type_name' => $this->string('type'),
2020-01-01 07:27:08 -06:00
'account_type_id' => null,
'currency_id' => $this->integer('currency_id'),
2020-07-24 09:41:31 -05:00
'order' => $this->integer('order'),
2020-01-01 07:27:08 -06:00
'currency_code' => $this->string('currency_code'),
'virtual_balance' => $this->string('virtual_balance'),
'iban' => $this->string('iban'),
'BIC' => $this->string('bic'),
'account_number' => $this->string('account_number'),
'account_role' => $this->string('account_role'),
'opening_balance' => $this->string('opening_balance'),
2021-12-28 13:42:50 -06:00
'opening_balance_date' => $this->getCarbonDate('opening_balance_date'),
2020-01-01 07:27:08 -06:00
'cc_type' => $this->string('credit_card_type'),
2020-07-15 14:21:09 -05:00
'cc_monthly_payment_date' => $this->string('monthly_payment_date'),
2021-04-06 06:30:09 -05:00
'notes' => $this->stringWithNewlines('notes'),
2020-01-01 07:27:08 -06:00
'interest' => $this->string('interest'),
'interest_period' => $this->string('interest_period'),
];
2021-04-10 10:24:38 -05:00
// append location information.
$data = $this->appendLocationData($data, null);
2020-01-01 07:27:08 -06:00
2021-04-05 14:52:55 -05:00
if ('liability' === $data['account_type_name'] || 'liabilities' === $data['account_type_name']) {
2021-04-10 10:24:38 -05:00
$data['opening_balance'] = app('steam')->negative($this->string('liability_amount'));
2021-12-28 13:42:50 -06:00
$data['opening_balance_date'] = $this->getCarbonDate('liability_start_date');
2021-04-10 00:56:50 -05:00
$data['account_type_name'] = $this->string('liability_type');
$data['liability_direction'] = $this->string('liability_direction');
2020-01-01 07:27:08 -06:00
$data['account_type_id'] = null;
}
return $data;
}
2018-02-13 11:24:06 -06:00
/**
* The rules that the incoming request must be matched against.
*
2018-02-13 11:24:06 -06:00
* @return array
*/
2018-02-16 09:42:23 -06:00
public function rules(): array
2018-02-13 11:24:06 -06:00
{
2018-03-26 12:19:11 -05:00
$accountRoles = implode(',', config('firefly.accountRoles'));
$types = implode(',', array_keys(config('firefly.subTitlesByIdentifier')));
$ccPaymentTypes = implode(',', array_keys(config('firefly.ccTypes')));
2021-01-26 12:27:49 -06:00
$type = $this->string('type');
2018-02-13 11:24:06 -06:00
$rules = [
'name' => 'required|min:1|uniqueAccountForUser',
2019-06-10 13:14:00 -05:00
'type' => 'required|' . sprintf('in:%s', $types),
2021-01-26 12:27:49 -06:00
'iban' => ['iban', 'nullable', new UniqueIban(null, $type)],
'bic' => 'bic|nullable',
2021-01-26 12:27:49 -06:00
'account_number' => ['between:1,255', 'nullable', new UniqueAccountNumber(null, $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 09:41:31 -05: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],
2019-04-10 23:06:25 -05:00
'account_role' => sprintf('in:%s|required_if:type,asset', $accountRoles),
'credit_card_type' => sprintf('in:%s|required_if:account_role,ccAsset', $ccPaymentTypes),
'monthly_payment_date' => 'date' . '|required_if:account_role,ccAsset|required_if:credit_card_type,monthlyFull',
2021-04-10 00:56:50 -05:00
'liability_type' => 'required_if:type,liability|required_if:type,liabilities|in:loan,debt,mortgage',
2021-04-10 10:24:38 -05:00
'liability_amount' => 'required_with:liability_start_date|min:0|numeric',
'liability_start_date' => 'required_with:liability_amount|date',
2021-04-10 00:56:50 -05:00
'liability_direction' => 'required_if:type,liability|required_if:type,liabilities|in:credit,debit',
2021-04-10 10:24:38 -05:00
'interest' => 'between:0,100|numeric',
'interest_period' => sprintf('in:%s', join(',', config('firefly.interest_periods'))),
'notes' => 'min:0|max:65536',
2018-02-13 11:24:06 -06:00
];
2021-01-26 12:27:49 -06:00
2020-10-23 12:11:25 -05:00
return Location::requestRules($rules);
2018-02-13 11:24:06 -06:00
}
2018-03-05 12:35:58 -06:00
}