2016-01-13 11:34:56 -06:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* RuleRepositoryInterface.php
|
2016-04-01 09:44:46 -05:00
|
|
|
* Copyright (C) 2016 thegrumpydictator@gmail.com
|
2016-01-13 11:34:56 -06:00
|
|
|
*
|
2016-10-04 23:52:15 -05: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-13 11:34:56 -06:00
|
|
|
*/
|
|
|
|
|
2016-05-20 05:41:23 -05:00
|
|
|
declare(strict_types = 1);
|
|
|
|
|
2016-01-13 11:34:56 -06:00
|
|
|
namespace FireflyIII\Repositories\Rule;
|
|
|
|
|
2016-01-14 02:38:48 -06:00
|
|
|
use FireflyIII\Models\Rule;
|
2016-01-14 14:34:17 -06:00
|
|
|
use FireflyIII\Models\RuleAction;
|
2016-01-13 11:34:56 -06:00
|
|
|
use FireflyIII\Models\RuleGroup;
|
2016-01-14 14:34:17 -06:00
|
|
|
use FireflyIII\Models\RuleTrigger;
|
2017-01-30 09:40:49 -06:00
|
|
|
use FireflyIII\User;
|
2016-01-13 11:34:56 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Interface RuleRepositoryInterface
|
|
|
|
*
|
|
|
|
* @package FireflyIII\Repositories\Rule
|
|
|
|
*/
|
|
|
|
interface RuleRepositoryInterface
|
|
|
|
{
|
2016-01-24 09:50:55 -06:00
|
|
|
/**
|
|
|
|
* @return int
|
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function count(): int;
|
2016-01-24 09:50:55 -06:00
|
|
|
|
2016-01-13 11:34:56 -06:00
|
|
|
/**
|
2016-01-15 04:27:27 -06:00
|
|
|
* @param Rule $rule
|
2016-01-13 14:44:26 -06:00
|
|
|
*
|
2016-01-14 14:34:17 -06:00
|
|
|
* @return bool
|
2016-01-13 14:44:26 -06:00
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function destroy(Rule $rule): bool;
|
2016-01-13 14:44:26 -06:00
|
|
|
|
2016-01-24 09:50:55 -06:00
|
|
|
/**
|
|
|
|
* @return RuleGroup
|
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function getFirstRuleGroup(): RuleGroup;
|
2016-01-24 09:50:55 -06:00
|
|
|
|
2016-01-14 14:34:17 -06:00
|
|
|
/**
|
2016-01-15 04:27:27 -06:00
|
|
|
* @param RuleGroup $ruleGroup
|
2016-01-14 14:34:17 -06:00
|
|
|
*
|
2016-01-15 04:27:27 -06:00
|
|
|
* @return int
|
2016-01-14 14:34:17 -06:00
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function getHighestOrderInRuleGroup(RuleGroup $ruleGroup): int;
|
2016-01-14 14:34:17 -06:00
|
|
|
|
2016-02-17 10:27:41 -06:00
|
|
|
/**
|
|
|
|
* @param Rule $rule
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getPrimaryTrigger(Rule $rule): string;
|
|
|
|
|
2016-01-14 04:27:15 -06:00
|
|
|
/**
|
2016-01-20 08:23:36 -06:00
|
|
|
* @param Rule $rule
|
2016-01-15 06:13:33 -06:00
|
|
|
*
|
2016-01-14 04:27:15 -06:00
|
|
|
* @return bool
|
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function moveDown(Rule $rule): bool;
|
2016-01-14 04:27:15 -06:00
|
|
|
|
2016-01-13 14:44:26 -06:00
|
|
|
/**
|
2016-01-20 08:23:36 -06:00
|
|
|
* @param Rule $rule
|
2016-01-15 06:13:33 -06:00
|
|
|
*
|
2016-01-14 02:38:48 -06:00
|
|
|
* @return bool
|
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function moveUp(Rule $rule): bool;
|
2016-01-14 02:38:48 -06:00
|
|
|
|
|
|
|
/**
|
2016-01-20 08:23:36 -06:00
|
|
|
* @param Rule $rule
|
|
|
|
* @param array $ids
|
2016-01-15 06:13:33 -06:00
|
|
|
*
|
2016-01-14 02:38:48 -06:00
|
|
|
* @return bool
|
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function reorderRuleActions(Rule $rule, array $ids): bool;
|
2016-01-14 02:38:48 -06:00
|
|
|
|
2016-01-15 02:25:32 -06:00
|
|
|
/**
|
|
|
|
* @param Rule $rule
|
2016-01-20 08:23:36 -06:00
|
|
|
* @param array $ids
|
2016-01-15 06:13:33 -06:00
|
|
|
*
|
2016-01-20 08:23:36 -06:00
|
|
|
* @return bool
|
2016-01-15 02:25:32 -06:00
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function reorderRuleTriggers(Rule $rule, array $ids): bool;
|
2016-01-15 02:25:32 -06:00
|
|
|
|
2016-01-14 02:38:48 -06:00
|
|
|
/**
|
2016-01-20 08:23:36 -06:00
|
|
|
* @param RuleGroup $ruleGroup
|
2016-01-15 06:13:33 -06:00
|
|
|
*
|
2016-01-14 02:38:48 -06:00
|
|
|
* @return bool
|
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function resetRulesInGroupOrder(RuleGroup $ruleGroup): bool;
|
2016-01-14 02:38:48 -06:00
|
|
|
|
2017-01-30 09:46:30 -06:00
|
|
|
/**
|
|
|
|
* @param User $user
|
|
|
|
*/
|
|
|
|
public function setUser(User $user);
|
|
|
|
|
2016-01-14 14:34:17 -06:00
|
|
|
/**
|
|
|
|
* @param array $data
|
|
|
|
*
|
|
|
|
* @return Rule
|
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function store(array $data): Rule;
|
2016-01-14 14:34:17 -06:00
|
|
|
|
|
|
|
/**
|
2016-01-24 09:50:55 -06:00
|
|
|
* @param Rule $rule
|
2016-01-22 00:35:28 -06:00
|
|
|
* @param array $values
|
2016-01-14 14:34:17 -06:00
|
|
|
*
|
2016-01-20 08:23:36 -06:00
|
|
|
* @return RuleAction
|
2016-01-14 14:34:17 -06:00
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function storeAction(Rule $rule, array $values): RuleAction;
|
2016-01-14 14:34:17 -06:00
|
|
|
|
|
|
|
/**
|
2016-01-24 09:50:55 -06:00
|
|
|
* @param Rule $rule
|
2016-01-22 00:35:28 -06:00
|
|
|
* @param array $values
|
2016-01-14 14:34:17 -06:00
|
|
|
*
|
2016-01-20 08:23:36 -06:00
|
|
|
* @return RuleTrigger
|
2016-01-14 14:34:17 -06:00
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function storeTrigger(Rule $rule, array $values): RuleTrigger;
|
2016-01-20 08:23:36 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @param Rule $rule
|
|
|
|
* @param array $data
|
|
|
|
*
|
|
|
|
* @return Rule
|
|
|
|
*/
|
2016-04-06 02:27:45 -05:00
|
|
|
public function update(Rule $rule, array $data): Rule;
|
2016-01-14 14:34:17 -06:00
|
|
|
|
2016-01-22 00:35:28 -06:00
|
|
|
}
|