From 816b291ed3a990cf947ebbbc30ccf545edebe768 Mon Sep 17 00:00:00 2001 From: James Cole Date: Sun, 3 Sep 2017 10:39:05 +0200 Subject: [PATCH] Code for #805 --- app/Repositories/Rule/RuleRepository.php | 2 +- app/Rules/Triggers/HasAnyBudget.php | 65 ++++++++++++++++++++++++ app/Rules/Triggers/HasAnyCategory.php | 65 ++++++++++++++++++++++++ app/Rules/Triggers/HasAnyTag.php | 65 ++++++++++++++++++++++++ app/Rules/Triggers/HasNoBudget.php | 65 ++++++++++++++++++++++++ app/Rules/Triggers/HasNoCategory.php | 65 ++++++++++++++++++++++++ app/Rules/Triggers/HasNoTag.php | 65 ++++++++++++++++++++++++ public/js/ff/rules/create-edit.js | 10 ++++ resources/lang/en_US/firefly.php | 56 +++++++++++--------- 9 files changed, 433 insertions(+), 25 deletions(-) create mode 100644 app/Rules/Triggers/HasAnyBudget.php create mode 100644 app/Rules/Triggers/HasAnyCategory.php create mode 100644 app/Rules/Triggers/HasAnyTag.php create mode 100644 app/Rules/Triggers/HasNoBudget.php create mode 100644 app/Rules/Triggers/HasNoCategory.php create mode 100644 app/Rules/Triggers/HasNoTag.php diff --git a/app/Repositories/Rule/RuleRepository.php b/app/Repositories/Rule/RuleRepository.php index 8d40076c71..6fa0a2b2c7 100644 --- a/app/Repositories/Rule/RuleRepository.php +++ b/app/Repositories/Rule/RuleRepository.php @@ -286,7 +286,7 @@ class RuleRepository implements RuleRepositoryInterface $ruleTrigger->active = 1; $ruleTrigger->stop_processing = $values['stopProcessing']; $ruleTrigger->trigger_type = $values['action']; - $ruleTrigger->trigger_value = $values['value']; + $ruleTrigger->trigger_value = is_null($values['value']) ? '' : $values['value']; $ruleTrigger->save(); return $ruleTrigger; diff --git a/app/Rules/Triggers/HasAnyBudget.php b/app/Rules/Triggers/HasAnyBudget.php new file mode 100644 index 0000000000..74d77eab01 --- /dev/null +++ b/app/Rules/Triggers/HasAnyBudget.php @@ -0,0 +1,65 @@ +budgets()->count(); + if ($count > 0) { + Log::debug(sprintf('RuleTrigger HasAnyBudget for journal #%d: count is %d, return true.', $journal->id, $count)); + + return true; + } + Log::debug(sprintf('RuleTrigger HasAnyBudget for journal #%d: count is %d, return false.', $journal->id, $count)); + + return false; + + } +} diff --git a/app/Rules/Triggers/HasAnyCategory.php b/app/Rules/Triggers/HasAnyCategory.php new file mode 100644 index 0000000000..c7902e0e95 --- /dev/null +++ b/app/Rules/Triggers/HasAnyCategory.php @@ -0,0 +1,65 @@ +categories()->count(); + if ($count > 0) { + Log::debug(sprintf('RuleTrigger HasAnyCategory for journal #%d: count is %d, return true.', $journal->id, $count)); + + return true; + } + Log::debug(sprintf('RuleTrigger HasAnyCategory for journal #%d: count is %d, return false.', $journal->id, $count)); + + return false; + + } +} diff --git a/app/Rules/Triggers/HasAnyTag.php b/app/Rules/Triggers/HasAnyTag.php new file mode 100644 index 0000000000..a7e2ecd5bd --- /dev/null +++ b/app/Rules/Triggers/HasAnyTag.php @@ -0,0 +1,65 @@ +tags()->count(); + if ($count > 0) { + Log::debug(sprintf('RuleTrigger HasAnyTag for journal #%d: count is %d, return true.', $journal->id, $count)); + + return true; + } + Log::debug(sprintf('RuleTrigger HasAnyTag for journal #%d: count is %d, return false.', $journal->id, $count)); + + return false; + + } +} diff --git a/app/Rules/Triggers/HasNoBudget.php b/app/Rules/Triggers/HasNoBudget.php new file mode 100644 index 0000000000..9df4143805 --- /dev/null +++ b/app/Rules/Triggers/HasNoBudget.php @@ -0,0 +1,65 @@ +budgets()->count(); + if ($count === 0) { + Log::debug(sprintf('RuleTrigger HasNoBudget for journal #%d: count is %d, return true.', $journal->id, $count)); + + return true; + } + Log::debug(sprintf('RuleTrigger HasNoBudget for journal #%d: count is %d, return false.', $journal->id, $count)); + + return false; + + } +} diff --git a/app/Rules/Triggers/HasNoCategory.php b/app/Rules/Triggers/HasNoCategory.php new file mode 100644 index 0000000000..4f6e367b30 --- /dev/null +++ b/app/Rules/Triggers/HasNoCategory.php @@ -0,0 +1,65 @@ +categories()->count(); + if ($count === 0) { + Log::debug(sprintf('RuleTrigger HasNoCategory for journal #%d: count is %d, return true.', $journal->id, $count)); + + return true; + } + Log::debug(sprintf('RuleTrigger HasNoCategory for journal #%d: count is %d, return false.', $journal->id, $count)); + + return false; + + } +} diff --git a/app/Rules/Triggers/HasNoTag.php b/app/Rules/Triggers/HasNoTag.php new file mode 100644 index 0000000000..813aaf82ff --- /dev/null +++ b/app/Rules/Triggers/HasNoTag.php @@ -0,0 +1,65 @@ +tags()->count(); + if ($count === 0) { + Log::debug(sprintf('RuleTrigger HasNoTag for journal #%d: count is %d, return true.', $journal->id, $count)); + + return true; + } + Log::debug(sprintf('RuleTrigger HasNoTag for journal #%d: count is %d, return false.', $journal->id, $count)); + + return false; + + } +} diff --git a/public/js/ff/rules/create-edit.js b/public/js/ff/rules/create-edit.js index 3b8e871e04..24407d3987 100644 --- a/public/js/ff/rules/create-edit.js +++ b/public/js/ff/rules/create-edit.js @@ -229,6 +229,7 @@ function updateTriggerInput(selectList) { var parent = selectList.parent().parent(); // the text input we're looking for: var input = parent.find('input[name^="rule-trigger-value["]'); + input.prop('disabled', false); switch (selectList.val()) { case 'from_account_starts': case 'from_account_ends': @@ -259,6 +260,15 @@ function updateTriggerInput(selectList) { case 'description_is': createAutoComplete(input, 'json/transaction-journals/all'); break; + case 'has_no_category': + case 'has_any_category': + case 'has_no_budget': + case 'has_any_budget': + case 'has_no_tag': + case 'has_any_tag': + input.prop('disabled', true); + input.typeahead('destroy'); + break; default: input.typeahead('destroy'); break; diff --git a/resources/lang/en_US/firefly.php b/resources/lang/en_US/firefly.php index b7043932f7..133d3bb168 100644 --- a/resources/lang/en_US/firefly.php +++ b/resources/lang/en_US/firefly.php @@ -239,52 +239,60 @@ return [ // actions and triggers 'rule_trigger_user_action' => 'User action is ":trigger_value"', - 'rule_trigger_from_account_starts' => 'Source account starts with ":trigger_value"', - 'rule_trigger_from_account_ends' => 'Source account ends with ":trigger_value"', - 'rule_trigger_from_account_is' => 'Source account is ":trigger_value"', - 'rule_trigger_from_account_contains' => 'Source account contains ":trigger_value"', - 'rule_trigger_to_account_starts' => 'Destination account starts with ":trigger_value"', - 'rule_trigger_to_account_ends' => 'Destination account ends with ":trigger_value"', - 'rule_trigger_to_account_is' => 'Destination account is ":trigger_value"', - 'rule_trigger_to_account_contains' => 'Destination account contains ":trigger_value"', - 'rule_trigger_transaction_type' => 'Transaction is of type ":trigger_value"', - 'rule_trigger_category_is' => 'Category is ":trigger_value"', - 'rule_trigger_amount_less' => 'Amount is less than :trigger_value', - 'rule_trigger_amount_exactly' => 'Amount is :trigger_value', - 'rule_trigger_amount_more' => 'Amount is more than :trigger_value', - 'rule_trigger_description_starts' => 'Description starts with ":trigger_value"', - 'rule_trigger_description_ends' => 'Description ends with ":trigger_value"', - 'rule_trigger_description_contains' => 'Description contains ":trigger_value"', - 'rule_trigger_description_is' => 'Description is ":trigger_value"', 'rule_trigger_from_account_starts_choice' => 'Source account starts with..', + 'rule_trigger_from_account_starts' => 'Source account starts with ":trigger_value"', 'rule_trigger_from_account_ends_choice' => 'Source account ends with..', + 'rule_trigger_from_account_ends' => 'Source account ends with ":trigger_value"', 'rule_trigger_from_account_is_choice' => 'Source account is..', + 'rule_trigger_from_account_is' => 'Source account is ":trigger_value"', 'rule_trigger_from_account_contains_choice' => 'Source account contains..', + 'rule_trigger_from_account_contains' => 'Source account contains ":trigger_value"', 'rule_trigger_to_account_starts_choice' => 'Destination account starts with..', + 'rule_trigger_to_account_starts' => 'Destination account starts with ":trigger_value"', 'rule_trigger_to_account_ends_choice' => 'Destination account ends with..', + 'rule_trigger_to_account_ends' => 'Destination account ends with ":trigger_value"', 'rule_trigger_to_account_is_choice' => 'Destination account is..', + 'rule_trigger_to_account_is' => 'Destination account is ":trigger_value"', 'rule_trigger_to_account_contains_choice' => 'Destination account contains..', + 'rule_trigger_to_account_contains' => 'Destination account contains ":trigger_value"', 'rule_trigger_transaction_type_choice' => 'Transaction is of type..', - 'rule_trigger_amount_less_choice' => 'Amount is less than..', - 'rule_trigger_amount_exactly_choice' => 'Amount is..', - 'rule_trigger_amount_more_choice' => 'Amount is more than..', - 'rule_trigger_description_starts_choice' => 'Description starts with..', - 'rule_trigger_description_ends_choice' => 'Description ends with..', - 'rule_trigger_description_contains_choice' => 'Description contains..', - 'rule_trigger_description_is_choice' => 'Description is..', + 'rule_trigger_transaction_type' => 'Transaction is of type ":trigger_value"', 'rule_trigger_category_is_choice' => 'Category is..', + 'rule_trigger_category_is' => 'Category is ":trigger_value"', + 'rule_trigger_amount_less_choice' => 'Amount is less than..', + 'rule_trigger_amount_less' => 'Amount is less than :trigger_value', + 'rule_trigger_amount_exactly_choice' => 'Amount is..', + 'rule_trigger_amount_exactly' => 'Amount is :trigger_value', + 'rule_trigger_amount_more_choice' => 'Amount is more than..', + 'rule_trigger_amount_more' => 'Amount is more than :trigger_value', + 'rule_trigger_description_starts_choice' => 'Description starts with..', + 'rule_trigger_description_starts' => 'Description starts with ":trigger_value"', + 'rule_trigger_description_ends_choice' => 'Description ends with..', + 'rule_trigger_description_ends' => 'Description ends with ":trigger_value"', + 'rule_trigger_description_contains_choice' => 'Description contains..', + 'rule_trigger_description_contains' => 'Description contains ":trigger_value"', + 'rule_trigger_description_is_choice' => 'Description is..', + 'rule_trigger_description_is' => 'Description is ":trigger_value"', 'rule_trigger_budget_is_choice' => 'Budget is..', + 'rule_trigger_budget_is' => 'Budget is ":trigger_value"', 'rule_trigger_tag_is_choice' => '(A) tag is..', + 'rule_trigger_tag_is' => 'A tag is ":trigger_value"', 'rule_trigger_has_attachments_choice' => 'Has at least this many attachments', 'rule_trigger_has_attachments' => 'Has at least :trigger_value attachment(s)', 'rule_trigger_store_journal' => 'When a transaction is created', 'rule_trigger_update_journal' => 'When a transaction is updated', 'rule_trigger_has_no_category_choice' => 'Has no category', + 'rule_trigger_has_no_category' => 'Transaction has no category', 'rule_trigger_has_any_category_choice' => 'Has a (any) category', + 'rule_trigger_has_any_category' => 'Transaction has a (any) category', 'rule_trigger_has_no_budget_choice' => 'Has no budget', + 'rule_trigger_has_no_budget' => 'Transaction has no budget', 'rule_trigger_has_any_budget_choice' => 'Has a (any) budget', + 'rule_trigger_has_any_budget' => 'Transaction has a (any) budget', 'rule_trigger_has_no_tag_choice' => 'Has no tag(s)', + 'rule_trigger_has_no_tag' => 'Transaction has no tag(s)', 'rule_trigger_has_any_tag_choice' => 'Has one or more (any) tags', + 'rule_trigger_has_any_tag' => 'Transaction has one or more (any) tags', 'rule_action_set_category' => 'Set category to ":action_value"', 'rule_action_clear_category' => 'Clear category', 'rule_action_set_budget' => 'Set budget to ":action_value"',