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

91 lines
3.0 KiB
PHP
Raw Normal View History

2016-01-14 11:09:20 -06:00
<?php
/**
* RuleFormRequest.php
2016-04-01 09:44:46 -05:00
* Copyright (C) 2016 thegrumpydictator@gmail.com
2016-01-14 11:09:20 -06:00
*
* 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.
2016-01-14 11:09:20 -06:00
*/
declare(strict_types=1);
2016-01-14 11:09:20 -06:00
namespace FireflyIII\Http\Requests;
2016-10-23 05:41:54 -05:00
use FireflyIII\Repositories\RuleGroup\RuleGroupRepositoryInterface;
2016-01-14 11:09:20 -06:00
/**
* Class RuleFormRequest
*
2016-02-04 00:28:39 -06:00
*
2016-01-14 11:09:20 -06:00
* @package FireflyIII\Http\Requests
*/
class RuleFormRequest extends Request
{
/**
* @return bool
*/
public function authorize()
{
// Only allow logged in users
2016-09-16 05:07:45 -05:00
return auth()->check();
2016-01-14 11:09:20 -06:00
}
2016-10-23 05:10:22 -05:00
/**
* @return array
*/
public function getRuleData(): array
{
return [
2017-01-21 01:32:23 -06:00
'title' => $this->string('title'),
'active' => $this->boolean('active'),
'trigger' => $this->string('trigger'),
'description' => $this->string('description'),
2016-10-23 05:10:22 -05:00
'rule-triggers' => $this->get('rule-trigger'),
'rule-trigger-values' => $this->get('rule-trigger-value'),
'rule-trigger-stop' => $this->get('rule-trigger-stop'),
'rule-actions' => $this->get('rule-action'),
'rule-action-values' => $this->get('rule-action-value'),
'rule-action-stop' => $this->get('rule-action-stop'),
2017-01-21 01:32:23 -06:00
'stop_processing' => $this->boolean('stop_processing'),
2016-10-23 05:10:22 -05:00
];
}
2016-01-14 11:09:20 -06:00
/**
* @return array
*/
public function rules()
{
2016-10-23 05:41:54 -05:00
/** @var RuleGroupRepositoryInterface $repository */
$repository = app(RuleGroupRepositoryInterface::class);
2016-04-26 14:40:15 -05:00
$validTriggers = array_keys(config('firefly.rule-triggers'));
$validActions = array_keys(config('firefly.rule-actions'));
// some actions require text:
2016-04-26 14:40:15 -05:00
$contextActions = join(',', config('firefly.rule-actions-text'));
2016-01-14 11:09:20 -06:00
2017-09-03 03:38:41 -05:00
$titleRule = 'required|between:1,100|uniqueObjectForUser:rules,title';
2016-10-23 05:41:54 -05:00
if (!is_null($repository->find(intval($this->get('id')))->id)) {
2017-09-03 03:38:41 -05:00
$titleRule = 'required|between:1,100|uniqueObjectForUser:rules,title,' . intval($this->get('id'));
2016-01-14 11:09:20 -06:00
}
$rules = [
'title' => $titleRule,
'description' => 'between:1,5000',
'stop_processing' => 'boolean',
2016-01-14 14:34:17 -06:00
'rule_group_id' => 'required|belongsToUser:rule_groups',
'trigger' => 'required|in:store-journal,update-journal',
'rule-trigger.*' => 'required|in:' . join(',', $validTriggers),
2016-01-14 14:34:17 -06:00
'rule-trigger-value.*' => 'required|min:1|ruleTriggerValue',
'rule-action.*' => 'required|in:' . join(',', $validActions),
2016-01-14 11:09:20 -06:00
];
2016-01-14 14:34:17 -06:00
// since Laravel does not support this stuff yet, here's a trick.
for ($i = 0; $i < 10; $i++) {
$rules['rule-action-value.' . $i] = 'required_if:rule-action.' . $i . ',' . $contextActions . '|ruleActionValue';
}
2016-01-15 16:12:52 -06:00
2016-01-14 14:34:17 -06:00
return $rules;
2016-01-14 11:09:20 -06:00
}
}