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

82 lines
2.8 KiB
PHP
Raw Normal View History

2015-02-25 08:19:14 -06: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 09:15:12 -05:00
declare(strict_types=1);
2015-02-25 08:19:14 -06:00
namespace FireflyIII\Http\Requests;
/**
* 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
2016-09-16 05:07:45 -05:00
return auth()->check();
2015-02-25 08:19:14 -06:00
}
2015-03-29 04:51:26 -05:00
/**
* @return array
*/
public function getBillData()
{
return [
2017-01-21 01:32:23 -06: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 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';
2016-10-23 05:19:32 -05:00
if (intval($this->get('id')) > 0) {
2017-03-24 09:15:12 -05:00
$nameRule .= ',' . intval($this->get('id'));
2016-10-23 05:19:32 -05:00
$matchRule .= ',' . intval($this->get('id'));
2015-02-25 08:19:14 -06:00
}
2017-09-12 14:44:31 -05:00
// is OK
2015-02-25 08:19:14 -06:00
$rules = [
2015-12-26 01:12:44 -06:00
'name' => $nameRule,
'match' => $matchRule,
2017-01-04 10:25:28 -06:00
'amount_min' => 'required|numeric|more:0',
'amount_max' => 'required|numeric|more:0',
2015-12-26 01:12:44 -06: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 08:19:14 -06:00
];
return $rules;
}
2015-03-29 01:14:32 -05:00
}