Files
firefly-iii/app/Http/Requests/BillFormRequest.php

82 lines
2.8 KiB
PHP
Raw Normal View History

2015-02-25 15:19:14 +01:00
<?php
/**
* BillFormRequest.php
* Copyright (C) 2016 thegrumpydictator@gmail.com
*
* This software may be modified and distributed under the terms of the
* Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
2017-03-24 15:15:12 +01:00
declare(strict_types=1);
2015-02-25 15:19:14 +01:00
namespace FireflyIII\Http\Requests;
/**
* Class BillFormRequest
*
2016-02-04 07:28:39 +01:00
*
2015-02-25 15:19:14 +01:00
* @package FireflyIII\Http\Requests
*/
class BillFormRequest extends Request
{
/**
* @return bool
*/
public function authorize()
{
// Only allow logged in users
2016-09-16 12:07:45 +02:00
return auth()->check();
2015-02-25 15:19:14 +01:00
}
2015-03-29 11:51:26 +02:00
/**
* @return array
*/
public function getBillData()
{
return [
2017-01-21 08:32:23 +01:00
'name' => $this->string('name'),
'match' => $this->string('match'),
'amount_min' => $this->float('amount_min'),
'amount_currency_id_amount_min' => $this->integer('amount_currency_id_amount_min'),
'amount_currency_id_amount_max' => $this->integer('amount_currency_id_amount_max'),
'amount_max' => $this->float('amount_max'),
'date' => $this->date('date'),
'repeat_freq' => $this->string('repeat_freq'),
'skip' => $this->integer('skip'),
'automatch' => $this->boolean('automatch'),
'active' => $this->boolean('active'),
2015-03-29 11:51:26 +02:00
];
}
2015-02-25 15:19:14 +01:00
/**
* @return array
*/
public function rules()
{
2015-06-05 12:34:45 +02:00
$nameRule = 'required|between:1,255|uniqueObjectForUser:bills,name';
$matchRule = 'required|between:1,255|uniqueObjectForUser:bills,match';
2016-10-23 12:19:32 +02:00
if (intval($this->get('id')) > 0) {
2017-03-24 15:15:12 +01:00
$nameRule .= ',' . intval($this->get('id'));
2016-10-23 12:19:32 +02:00
$matchRule .= ',' . intval($this->get('id'));
2015-02-25 15:19:14 +01:00
}
$rules = [
2015-12-26 08:12:44 +01:00
'name' => $nameRule,
'match' => $matchRule,
2017-01-04 17:25:28 +01:00
'amount_min' => 'required|numeric|more:0',
'amount_max' => 'required|numeric|more:0',
2015-12-26 08:12:44 +01:00
'amount_currency_id_amount_min' => 'required|exists:transaction_currencies,id',
'amount_currency_id_amount_max' => 'required|exists:transaction_currencies,id',
'date' => 'required|date',
'repeat_freq' => 'required|in:weekly,monthly,quarterly,half-year,yearly',
'skip' => 'required|between:0,31',
'automatch' => 'in:1',
'active' => 'in:1',
2015-02-25 15:19:14 +01:00
];
return $rules;
}
2015-03-29 08:14:32 +02:00
}