Files
firefly-iii/app/Repositories/Rule/RuleRepositoryInterface.php

199 lines
4.3 KiB
PHP
Raw Normal View History

2016-01-13 18:34:56 +01:00
<?php
/**
* RuleRepositoryInterface.php
2020-02-16 14:00:57 +01:00
* Copyright (c) 2019 james@firefly-iii.org
2016-01-13 18:34:56 +01:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
2017-10-21 08:40:00 +02:00
*
* This program is distributed in the hope that it will be useful,
2017-10-21 08:40:00 +02:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
2017-10-21 08:40:00 +02:00
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2016-01-13 18:34:56 +01:00
*/
declare(strict_types=1);
2016-01-13 18:34:56 +01:00
namespace FireflyIII\Repositories\Rule;
2016-01-14 09:38:48 +01:00
use FireflyIII\Models\Rule;
2016-01-14 21:34:17 +01:00
use FireflyIII\Models\RuleAction;
2016-01-13 18:34:56 +01:00
use FireflyIII\Models\RuleGroup;
2016-01-14 21:34:17 +01:00
use FireflyIII\Models\RuleTrigger;
use FireflyIII\User;
use Illuminate\Support\Collection;
2016-01-13 18:34:56 +01:00
/**
2017-11-15 12:25:49 +01:00
* Interface RuleRepositoryInterface.
2016-01-13 18:34:56 +01:00
*/
interface RuleRepositoryInterface
{
/**
* @return int
*/
2016-04-06 09:27:45 +02:00
public function count(): int;
2016-01-13 18:34:56 +01:00
/**
* @param Rule $rule
*
2016-01-14 21:34:17 +01:00
* @return bool
*/
2016-04-06 09:27:45 +02:00
public function destroy(Rule $rule): bool;
2020-03-14 21:01:21 +01:00
/**
* @param Rule $rule
*
* @return Rule
*/
public function duplicate(Rule $rule): Rule;
2017-09-03 15:57:13 +02:00
/**
* @param int $ruleId
*
2018-07-22 21:09:57 +02:00
* @return Rule|null
2017-09-03 15:57:13 +02:00
*/
2018-07-22 21:09:57 +02:00
public function find(int $ruleId): ?Rule;
2017-09-03 15:57:13 +02:00
2018-06-30 16:46:51 +02:00
/**
* Get all the users rules.
*
* @return Collection
*/
public function getAll(): Collection;
/**
* @return RuleGroup
*/
2016-04-06 09:27:45 +02:00
public function getFirstRuleGroup(): RuleGroup;
2016-01-14 21:34:17 +01:00
/**
* @param RuleGroup $ruleGroup
2016-01-14 21:34:17 +01:00
*
* @return int
2016-01-14 21:34:17 +01:00
*/
2016-04-06 09:27:45 +02:00
public function getHighestOrderInRuleGroup(RuleGroup $ruleGroup): int;
2016-01-14 21:34:17 +01:00
/**
* @param Rule $rule
*
* @return string
*/
public function getPrimaryTrigger(Rule $rule): string;
/**
* @param Rule $rule
*
* @return Collection
*/
public function getRuleActions(Rule $rule): Collection;
/**
* @param Rule $rule
*
* @return Collection
*/
public function getRuleTriggers(Rule $rule): Collection;
2021-03-12 06:20:01 +01:00
/**
* Return search query for rule.
*
* @param Rule $rule
*
* @return string
*/
public function getSearchQuery(Rule $rule): string;
/**
* Get all the users rules that trigger on storage.
*
* @return Collection
*/
public function getStoreRules(): Collection;
/**
* Get all the users rules that trigger on update.
*
* @return Collection
*/
public function getUpdateRules(): Collection;
2021-03-21 09:15:40 +01:00
/**
* @param RuleGroup $ruleGroup
*
* @return int
*/
public function maxOrder(RuleGroup $ruleGroup): int;
2021-03-12 06:20:01 +01:00
/**
* @param Rule $rule
* @param RuleGroup $ruleGroup
* @param int $order
*
* @return Rule
*/
public function moveRule(Rule $rule, RuleGroup $ruleGroup, int $order): Rule;
2016-01-14 09:38:48 +01:00
/**
2016-01-20 15:23:36 +01:00
* @param RuleGroup $ruleGroup
2016-01-15 13:13:33 +01:00
*
2016-01-14 09:38:48 +01:00
* @return bool
*/
2021-03-14 10:41:17 +01:00
public function resetRuleOrder(RuleGroup $ruleGroup): bool;
2016-01-14 09:38:48 +01:00
2021-03-12 06:20:01 +01:00
/**
* @param string $query
* @param int $limit
*
* @return Collection
*/
public function searchRule(string $query, int $limit): Collection;
2021-03-21 09:15:40 +01:00
/**
* @param Rule $rule
* @param int $newOrder
*/
public function setOrder(Rule $rule, int $newOrder): void;
2017-01-30 16:46:30 +01:00
/**
* @param User $user
*/
public function setUser(User $user);
2016-01-14 21:34:17 +01:00
/**
* @param array $data
*
* @return Rule
*/
2016-04-06 09:27:45 +02:00
public function store(array $data): Rule;
2016-01-14 21:34:17 +01:00
/**
* @param Rule $rule
2016-01-22 07:35:28 +01:00
* @param array $values
2016-01-14 21:34:17 +01:00
*
2016-01-20 15:23:36 +01:00
* @return RuleAction
2016-01-14 21:34:17 +01:00
*/
2016-04-06 09:27:45 +02:00
public function storeAction(Rule $rule, array $values): RuleAction;
2016-01-14 21:34:17 +01:00
/**
* @param Rule $rule
2016-01-22 07:35:28 +01:00
* @param array $values
2016-01-14 21:34:17 +01:00
*
2016-01-20 15:23:36 +01:00
* @return RuleTrigger
2016-01-14 21:34:17 +01:00
*/
2016-04-06 09:27:45 +02:00
public function storeTrigger(Rule $rule, array $values): RuleTrigger;
2016-01-20 15:23:36 +01:00
/**
* @param Rule $rule
* @param array $data
*
* @return Rule
*/
2016-04-06 09:27:45 +02:00
public function update(Rule $rule, array $data): Rule;
2016-01-22 07:35:28 +01:00
}