. */ declare(strict_types=1); namespace FireflyIII\Api\V1\Requests; use FireflyIII\Rules\IsBoolean; use FireflyIII\Support\Request\ChecksLogin; use FireflyIII\Support\Request\ConvertsDataTypes; use Illuminate\Foundation\Http\FormRequest; use Illuminate\Validation\Validator; /** * Class BillUpdateRequest * * @codeCoverageIgnore */ class BillUpdateRequest extends FormRequest { use ConvertsDataTypes, ChecksLogin; /** * Get all data from the request. * * @return array */ public function getAll(): array { $active = true; if (null !== $this->get('active')) { $active = $this->boolean('active'); } return [ 'name' => $this->string('name'), 'amount_min' => $this->string('amount_min'), 'amount_max' => $this->string('amount_max'), 'currency_id' => $this->integer('currency_id'), 'currency_code' => $this->string('currency_code'), 'date' => $this->date('date'), 'repeat_freq' => $this->string('repeat_freq'), 'skip' => $this->integer('skip'), 'active' => $active, 'order' => $this->integer('order'), 'notes' => $this->nlString('notes'), ]; } /** * The rules that the incoming request must be matched against. * * @return array */ public function rules(): array { $bill = $this->route()->parameter('bill'); return [ 'name' => sprintf('between:1,255|uniqueObjectForUser:bills,name,%d', $bill->id), 'amount_min' => 'numeric|gt:0', 'amount_max' => 'numeric|gt:0', 'currency_id' => 'numeric|exists:transaction_currencies,id', 'currency_code' => 'min:3|max:3|exists:transaction_currencies,code', 'date' => 'date', 'repeat_freq' => 'in:weekly,monthly,quarterly,half-year,yearly', 'skip' => 'between:0,31', 'active' => [new IsBoolean], 'notes' => 'between:1,65536', ]; } /** * Configure the validator instance. * * @param Validator $validator * * @return void */ public function withValidator(Validator $validator): void { $validator->after( static function (Validator $validator) { $data = $validator->getData(); $min = (float) ($data['amount_min'] ?? 0); $max = (float) ($data['amount_max'] ?? 0); if ($min > $max) { $validator->errors()->add('amount_min', (string) trans('validation.amount_min_over_max')); } } ); } }