mirror of
https://github.com/zammad/zammad
synced 2026-05-24 09:48:36 +00:00
50 lines
1.4 KiB
Ruby
50 lines
1.4 KiB
Ruby
# Copyright (C) 2012-2026 Zammad Foundation, https://zammad-foundation.org/
|
|
|
|
class Macro < ApplicationModel
|
|
include ChecksClientNotification
|
|
include ChecksHtmlSanitized
|
|
include CanSeed
|
|
include HasCollectionUpdate
|
|
include HasSearchIndexBackend
|
|
include CanSelector
|
|
include CanSearch
|
|
include Macro::TriggersSubscriptions
|
|
include HasOptionalGroups
|
|
include TouchesPerformReferences
|
|
|
|
store :perform
|
|
validates :perform, 'validations/verify_perform_rules': true
|
|
validates :name, presence: true, uniqueness: { case_sensitive: false }
|
|
validates :ux_flow_next_up, inclusion: { in: %w[none next_task next_task_on_close next_from_overview] }
|
|
|
|
validates :note, length: { maximum: 250 }
|
|
sanitized_html :note
|
|
|
|
collection_push_permission('ticket.agent')
|
|
|
|
ApplicableOn = Struct.new(:result, :blocking_tickets) do
|
|
delegate :==, to: :result
|
|
delegate :!, to: :result
|
|
|
|
def error_message
|
|
"Macro blocked by: #{blocking_tickets.join(', ')}"
|
|
end
|
|
end
|
|
|
|
def applicable_on?(tickets)
|
|
tickets = Array(tickets)
|
|
|
|
return ApplicableOn.new(true, []) if group_ids.blank?
|
|
|
|
blocking = tickets.reject { |elem| group_ids.include? elem.group_id }
|
|
|
|
ApplicableOn.new(blocking.none?, blocking)
|
|
end
|
|
|
|
def performable_on?(object, activator_type:)
|
|
return false if !active
|
|
return true if group_ids.blank?
|
|
|
|
group_ids.include? object.group_id
|
|
end
|
|
end
|