. */ declare(strict_types=1); namespace FireflyIII\Api\V1\Requests\Models\TransactionCurrency; use FireflyIII\Rules\IsBoolean; use FireflyIII\Support\Request\ChecksLogin; use FireflyIII\Support\Request\ConvertsDataTypes; use Illuminate\Foundation\Http\FormRequest; /** * Class UpdateRequest * * @codeCoverageIgnore */ class UpdateRequest extends FormRequest { use ConvertsDataTypes, ChecksLogin; /** * Get all data from the request. * * @return array */ public function getAll(): array { // return nothing that isn't explicitely in the array: $fields = [ 'name' => ['name', 'string'], 'code' => ['code', 'string'], 'symbol' => ['symbol', 'string'], 'decimal_places' => ['decimal_places', 'integer'], 'default' => ['default', 'boolean'], 'enabled' => ['enabled', 'boolean'], ]; $return = $this->getAllData($fields); return $return; } /** * The rules that the incoming request must be matched against. * * @return array */ public function rules(): array { $currency = $this->route()->parameter('currency_code'); return [ 'name' => sprintf('between:1,255|unique:transaction_currencies,name,%d', $currency->id), 'code' => sprintf('between:3,3|unique:transaction_currencies,code,%d', $currency->id), 'symbol' => sprintf('between:1,8|unique:transaction_currencies,symbol,%d', $currency->id), 'decimal_places' => 'between:0,20|numeric|min:0|max:20', 'enabled' => [new IsBoolean()], 'default' => [new IsBoolean()], ]; } }