. */ declare(strict_types=1); namespace FireflyIII\Api\V1\Requests\Models\Account; use FireflyIII\Models\Location; use FireflyIII\Rules\IsBoolean; use FireflyIII\Rules\UniqueAccountNumber; use FireflyIII\Rules\UniqueIban; use FireflyIII\Support\Request\AppendsLocationData; use FireflyIII\Support\Request\ChecksLogin; use FireflyIII\Support\Request\ConvertsDataTypes; use Illuminate\Foundation\Http\FormRequest; /** * Class StoreRequest * * @codeCoverageIgnore */ class StoreRequest extends FormRequest { use ConvertsDataTypes, AppendsLocationData, ChecksLogin; /** * @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, 'account_type_name' => $this->string('type'), 'account_type_id' => null, 'currency_id' => $this->integer('currency_id'), 'order' => $this->integer('order'), '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'), 'opening_balance_date' => $this->getCarbonDate('opening_balance_date'), 'cc_type' => $this->string('credit_card_type'), 'cc_monthly_payment_date' => $this->string('monthly_payment_date'), 'notes' => $this->stringWithNewlines('notes'), 'interest' => $this->string('interest'), 'interest_period' => $this->string('interest_period'), ]; // append location information. $data = $this->appendLocationData($data, null); if ('liability' === $data['account_type_name'] || 'liabilities' === $data['account_type_name']) { $data['opening_balance'] = app('steam')->negative($this->string('liability_amount')); $data['opening_balance_date'] = $this->getCarbonDate('liability_start_date'); $data['account_type_name'] = $this->string('liability_type'); $data['liability_direction'] = $this->string('liability_direction'); $data['account_type_id'] = null; } return $data; } /** * The rules that the incoming request must be matched against. * * @return array */ public function rules(): array { $accountRoles = implode(',', config('firefly.accountRoles')); $types = implode(',', array_keys(config('firefly.subTitlesByIdentifier'))); $ccPaymentTypes = implode(',', array_keys(config('firefly.ccTypes'))); $type = $this->string('type'); $rules = [ 'name' => 'required|min:1|uniqueAccountForUser', 'type' => 'required|' . sprintf('in:%s', $types), 'iban' => ['iban', 'nullable', new UniqueIban(null, $type)], 'bic' => 'bic|nullable', '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', '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], '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', 'liability_type' => 'required_if:type,liability|required_if:type,liabilities|in:loan,debt,mortgage', 'liability_amount' => 'required_with:liability_start_date|min:0|numeric', 'liability_start_date' => 'required_with:liability_amount|date', 'liability_direction' => 'required_if:type,liability|required_if:type,liabilities|in:credit,debit', 'interest' => 'between:0,100|numeric', 'interest_period' => sprintf('in:%s', join(',', config('firefly.interest_periods'))), 'notes' => 'min:0|max:65536', ]; return Location::requestRules($rules); } }