2021-08-25 12:24:42 +00:00
|
|
|
# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
|
|
|
|
|
|
|
|
class CoreWorkflow::Result
|
|
|
|
include ::Mixin::HasBackends
|
|
|
|
|
|
|
|
attr_accessor :payload, :user, :assets, :assets_in_result, :result, :rerun
|
|
|
|
|
|
|
|
def initialize(payload:, user:, assets: {}, assets_in_result: true, result: {})
|
2021-11-15 15:58:19 +00:00
|
|
|
raise ArgumentError, __('No payload->class_name given!') if !payload['class_name']
|
|
|
|
raise ArgumentError, __('No payload->screen given!') if !payload['screen']
|
2021-08-25 12:24:42 +00:00
|
|
|
|
|
|
|
@payload = payload
|
|
|
|
@user = user
|
|
|
|
@assets = assets
|
|
|
|
@assets_in_result = assets_in_result
|
|
|
|
@result = result
|
|
|
|
@rerun = false
|
|
|
|
end
|
|
|
|
|
|
|
|
def attributes
|
|
|
|
@attributes ||= CoreWorkflow::Attributes.new(result_object: self)
|
|
|
|
end
|
|
|
|
|
|
|
|
def workflows
|
|
|
|
CoreWorkflow.active.object(payload['class_name'])
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_default
|
|
|
|
@rerun = false
|
|
|
|
|
2021-09-20 16:12:33 +00:00
|
|
|
@result[:restrict_values] = {}
|
|
|
|
%i[request_id visibility mandatory readonly select fill_in eval matched_workflows rerun_count].each do |group|
|
|
|
|
@result[group] = attributes.send(:"#{group}_default")
|
|
|
|
end
|
2021-08-25 12:24:42 +00:00
|
|
|
|
|
|
|
# restrict init defaults to make sure param values to removed if not allowed
|
|
|
|
attributes.restrict_values_default.each do |field, values|
|
2021-10-27 14:20:30 +00:00
|
|
|
|
|
|
|
# skip initial rerun to improve performance
|
|
|
|
# priority e.g. would trigger a rerun because its not set yet
|
|
|
|
# but we skip rerun here because the initial values have no logic which
|
|
|
|
# are dependent on form changes
|
|
|
|
run_backend_value('set_fixed_to', field, values, skip_rerun: true)
|
2021-08-25 12:24:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
set_default_only_shown_if_selectable
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_default_only_shown_if_selectable
|
|
|
|
|
|
|
|
# only_shown_if_selectable should not work on bulk feature
|
|
|
|
return if @payload['screen'] == 'overview_bulk'
|
|
|
|
|
|
|
|
auto_hide = {}
|
|
|
|
attributes.auto_select_default.each do |field, state|
|
|
|
|
result = run_backend_value('auto_select', field, state)
|
|
|
|
next if result.compact.blank?
|
|
|
|
|
|
|
|
auto_hide[field] = true
|
|
|
|
end
|
|
|
|
|
|
|
|
auto_hide.each do |field, state|
|
|
|
|
run_backend_value('hide', field, state)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def run
|
|
|
|
set_default
|
|
|
|
|
|
|
|
workflows.each do |workflow|
|
|
|
|
condition = CoreWorkflow::Condition.new(result_object: self, workflow: workflow)
|
|
|
|
next if !condition.match_all?
|
|
|
|
|
|
|
|
run_workflow(workflow)
|
|
|
|
run_custom(workflow, condition)
|
|
|
|
match_workflow(workflow)
|
|
|
|
|
|
|
|
break if workflow.stop_after_match
|
|
|
|
end
|
|
|
|
|
|
|
|
consider_rerun
|
|
|
|
end
|
|
|
|
|
|
|
|
def run_workflow(workflow)
|
|
|
|
Array(workflow.perform).each do |field, config|
|
|
|
|
run_backend(field, config)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def run_custom(workflow, condition)
|
|
|
|
Array(workflow.perform.dig('custom.module', 'execute')).each do |module_path|
|
|
|
|
custom_module = module_path.constantize.new(condition_object: condition, result_object: self)
|
|
|
|
custom_module.perform
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-10-27 14:20:30 +00:00
|
|
|
def run_backend(field, perform_config, skip_rerun: false)
|
2021-08-25 12:24:42 +00:00
|
|
|
result = []
|
|
|
|
Array(perform_config['operator']).each do |backend|
|
2021-10-27 14:20:30 +00:00
|
|
|
result << "CoreWorkflow::Result::#{backend.classify}".constantize.new(result_object: self, field: field, perform_config: perform_config, skip_rerun: skip_rerun).run
|
2021-08-25 12:24:42 +00:00
|
|
|
end
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
2021-10-27 14:20:30 +00:00
|
|
|
def run_backend_value(backend, field, value, skip_rerun: false)
|
2021-08-25 12:24:42 +00:00
|
|
|
perform_config = {
|
|
|
|
'operator' => backend,
|
|
|
|
backend => value,
|
|
|
|
}
|
|
|
|
|
2021-10-27 14:20:30 +00:00
|
|
|
run_backend(field, perform_config, skip_rerun: skip_rerun)
|
2021-08-25 12:24:42 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def match_workflow(workflow)
|
|
|
|
@result[:matched_workflows] |= Array(workflow.id)
|
|
|
|
end
|
|
|
|
|
|
|
|
def assets_in_result?
|
|
|
|
return false if !@assets_in_result
|
|
|
|
|
|
|
|
@result[:assets] = assets
|
|
|
|
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def consider_rerun
|
|
|
|
if @rerun && @result[:rerun_count] < 25
|
|
|
|
@result[:rerun_count] += 1
|
|
|
|
return run
|
|
|
|
end
|
|
|
|
|
|
|
|
assets_in_result?
|
|
|
|
|
|
|
|
@result
|
|
|
|
end
|
|
|
|
end
|