. */ declare(strict_types=1); namespace FireflyIII\Api\V1\Requests; use FireflyIII\Rules\IsBoolean; /** * Class AccountRequest */ class AccountRequest extends Request { /** * Authorize logged in users. * * @return bool */ public function authorize(): bool { // Only allow authenticated users return auth()->check(); } /** * Get all data from the request. * * @return array */ public function getAll(): 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, 'accountType' => $this->string('type'), 'account_type_id' => null, 'currency_id' => $this->integer('currency_id'), 'currency_code' => $this->string('currency_code'), 'virtualBalance' => $this->string('virtual_balance'), 'iban' => $this->string('iban'), 'BIC' => $this->string('bic'), 'accountNumber' => $this->string('account_number'), 'accountRole' => $this->string('account_role'), 'openingBalance' => $this->string('opening_balance'), 'openingBalanceDate' => $this->date('opening_balance_date'), 'ccType' => $this->string('credit_card_type'), 'ccMonthlyPaymentDate' => $this->string('monthly_payment_date'), 'notes' => $this->string('notes'), 'interest' => $this->string('interest'), 'interest_period' => $this->string('interest_period'), ]; if ('liability' === $data['accountType']) { $data['openingBalance'] = bcmul($this->string('liability_amount'), '-1'); $data['openingBalanceDate'] = $this->date('liability_start_date'); $data['accountType'] = $this->string('liability_type'); $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'))); $rules = [ 'name' => 'required|min:1|uniqueAccountForUser', 'type' => 'required|in:' . $types, 'iban' => 'iban|nullable', 'bic' => 'bic|nullable', 'account_number' => 'between:1,255|nullable|uniqueAccountNumberForUser', 'opening_balance' => 'numeric|required_with:opening_balance_date|nullable', 'opening_balance_date' => 'date|required_with:opening_balance|nullable', 'virtual_balance' => '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' => 'in:' . $accountRoles . '|required_if:type,asset', 'credit_card_type' => 'in:' . $ccPaymentTypes . '|required_if:account_role,ccAsset', 'monthly_payment_date' => 'date' . '|required_if:account_role,ccAsset|required_if:credit_card_type,monthlyFull', 'liability_type' => 'required_if:type,liability|in:loan,debt,mortgage', 'liability_amount' => 'required_if:type,liability|min:0|numeric', 'liability_start_date' => 'required_if:type,liability|date', 'interest' => 'required_if:type,liability|between:0,100|numeric', 'interest_period' => 'required_if:type,liability|in:daily,monthly,yearly', 'notes' => 'min:0|max:65536', ]; switch ($this->method()) { default: break; case 'PUT': case 'PATCH': $account = $this->route()->parameter('account'); $rules['name'] .= ':' . $account->id; $rules['account_number'] .= ':' . $account->id; $rules['type'] = 'in:' . $types; break; } return $rules; } }