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

77 lines
2.7 KiB
PHP
Raw Normal View History

2015-02-25 08:19:14 -06:00
<?php
2016-02-05 05:08:25 -06:00
declare(strict_types = 1);
2015-02-25 08:19:14 -06:00
namespace FireflyIII\Http\Requests;
use Auth;
2015-03-29 04:51:26 -05:00
use Carbon\Carbon;
2015-02-25 08:19:14 -06:00
use Input;
/**
* Class BillFormRequest
*
2016-02-04 00:28:39 -06:00
*
2015-02-25 08:19:14 -06:00
* @package FireflyIII\Http\Requests
*/
class BillFormRequest extends Request
{
/**
* @return bool
*/
public function authorize()
{
// Only allow logged in users
return Auth::check();
}
2015-03-29 04:51:26 -05:00
/**
* @return array
*/
public function getBillData()
{
return [
2015-12-26 01:12:44 -06:00
'name' => $this->get('name'),
'match' => $this->get('match'),
'amount_min' => round($this->get('amount_min'), 2),
'amount_currency_id_amount_min' => intval($this->get('amount_currency_id_amount_min')),
'amount_currency_id_amount_max' => intval($this->get('amount_currency_id_amount_max')),
'amount_max' => round($this->get('amount_max'), 2),
'date' => new Carbon($this->get('date')),
'user' => Auth::user()->id,
'repeat_freq' => $this->get('repeat_freq'),
'skip' => intval($this->get('skip')),
'automatch' => intval($this->get('automatch')) === 1,
'active' => intval($this->get('active')) === 1,
2015-03-29 04:51:26 -05:00
];
}
2015-02-25 08:19:14 -06:00
/**
* @return array
*/
public function rules()
{
2015-06-05 05:34:45 -05:00
$nameRule = 'required|between:1,255|uniqueObjectForUser:bills,name';
$matchRule = 'required|between:1,255|uniqueObjectForUser:bills,match';
2015-03-01 00:50:26 -06:00
if (intval(Input::get('id')) > 0) {
2015-03-31 07:16:25 -05:00
$nameRule .= ',' . intval(Input::get('id'));
$matchRule .= ',' . intval(Input::get('id'));
2015-02-25 08:19:14 -06:00
}
$rules = [
2015-12-26 01:12:44 -06:00
'name' => $nameRule,
'match' => $matchRule,
'amount_min' => 'required|numeric|min:0.01',
'amount_max' => 'required|numeric|min:0.01',
'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 08:19:14 -06:00
];
return $rules;
}
2015-03-29 01:14:32 -05:00
}