firefly-iii/app/Http/Requests/AccountFormRequest.php

110 lines
4.3 KiB
PHP
Raw Normal View History

<?php
/**
* AccountFormRequest.php
2017-10-21 01:40:00 -05:00
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
2017-10-21 01:40:00 -05:00
* This file is part of Firefly III.
*
2017-10-21 01:40:00 -05:00
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2017-12-17 07:44:05 -06:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace FireflyIII\Http\Requests;
use FireflyIII\Models\Account;
use FireflyIII\Rules\UniqueIban;
/**
2017-11-15 05:25:49 -06:00
* Class AccountFormRequest.
*/
class AccountFormRequest extends Request
{
2015-02-11 00:35:10 -06:00
/**
2018-07-22 01:10:16 -05:00
* Verify the request.
*
2015-02-11 00:35:10 -06:00
* @return bool
*/
2018-07-08 05:08:53 -05:00
public function authorize(): bool
{
// Only allow logged in users
2016-09-16 05:07:45 -05:00
return auth()->check();
}
2016-10-22 14:40:31 -05:00
/**
2018-07-22 01:10:16 -05:00
* Get all data.
*
2016-10-22 14:40:31 -05:00
* @return array
*/
2016-10-22 15:03:00 -05:00
public function getAccountData(): array
2016-10-22 14:40:31 -05:00
{
return [
2017-06-05 04:12:50 -05:00
'name' => $this->string('name'),
'active' => $this->boolean('active'),
'accountType' => $this->string('what'),
'account_type_id' => 0,
2017-06-05 04:12:50 -05:00
'currency_id' => $this->integer('currency_id'),
2017-11-17 22:45:58 -06:00
'virtualBalance' => $this->string('virtualBalance'),
2017-06-05 04:12:50 -05:00
'iban' => $this->string('iban'),
'BIC' => $this->string('BIC'),
'accountNumber' => $this->string('accountNumber'),
'accountRole' => $this->string('accountRole'),
2017-11-17 22:45:58 -06:00
'openingBalance' => $this->string('openingBalance'),
2017-06-05 04:12:50 -05:00
'openingBalanceDate' => $this->date('openingBalanceDate'),
'ccType' => $this->string('ccType'),
'ccMonthlyPaymentDate' => $this->string('ccMonthlyPaymentDate'),
2017-12-30 14:04:04 -06:00
'notes' => $this->string('notes'),
2016-10-22 14:40:31 -05:00
];
}
2015-02-11 00:35:10 -06:00
/**
2018-07-22 01:10:16 -05:00
* Rules for this request.
*
2015-02-11 00:35:10 -06:00
* @return array
*/
2018-07-08 05:08:53 -05:00
public function rules(): array
{
$accountRoles = implode(',', config('firefly.accountRoles'));
$types = implode(',', array_keys(config('firefly.subTitlesByIdentifier')));
$ccPaymentTypes = implode(',', array_keys(config('firefly.ccTypes')));
$rules = [
'name' => 'required|min:1|uniqueAccountForUser',
2017-09-12 14:44:31 -05:00
'openingBalance' => 'numeric|required_with:openingBalanceDate|nullable',
'openingBalanceDate' => 'date|required_with:openingBalance|nullable',
2018-03-19 02:16:54 -05:00
'iban' => ['iban', 'nullable', new UniqueIban(null, $this->string('what'))],
2017-09-12 14:44:31 -05:00
'BIC' => 'bic|nullable',
'virtualBalance' => 'numeric|nullable',
'currency_id' => 'exists:transaction_currencies,id',
2017-09-12 14:44:31 -05:00
'accountNumber' => 'between:1,255|uniqueAccountNumberForUser|nullable',
'accountRole' => 'in:' . $accountRoles,
'active' => 'boolean',
'ccType' => 'in:' . $ccPaymentTypes,
'ccMonthlyPaymentDate' => 'date',
'amount_currency_id_openingBalance' => 'exists:transaction_currencies,id',
'amount_currency_id_virtualBalance' => 'exists:transaction_currencies,id',
2016-01-15 16:12:52 -06:00
'what' => 'in:' . $types,
];
/** @var Account $account */
$account = $this->route()->parameter('account');
2018-04-02 08:10:40 -05:00
if (null !== $account) {
// add rules:
$rules['id'] = 'belongsToUser:accounts';
2018-04-02 08:10:40 -05:00
$rules['name'] = 'required|min:1|uniqueAccountForUser:' . (int)$this->get('id');
2018-03-19 02:16:54 -05:00
$rules['iban'] = ['iban', 'nullable', new UniqueIban($account, $account->accountType->type)];
}
return $rules;
}
}