2022-01-01 13:38:12 +00:00
|
|
|
# Copyright (C) 2012-2022 Zammad Foundation, https://zammad-foundation.org/
|
2021-10-20 09:43:35 +00:00
|
|
|
|
|
|
|
class Sequencer
|
|
|
|
class Unit
|
|
|
|
module Import
|
|
|
|
module Kayako
|
|
|
|
module ObjectAttribute
|
|
|
|
class Skip < Sequencer::Unit::Base
|
|
|
|
|
|
|
|
uses :resource
|
|
|
|
provides :action
|
|
|
|
|
|
|
|
def process
|
|
|
|
return if (!resource['is_system'] && skip_attribute_types.exclude?(resource['type'])) || allowed_system_attributes.include?(resource['key'])
|
|
|
|
|
|
|
|
state.provide(:action, :skipped)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def skip_attribute_types
|
2022-04-22 14:40:18 +00:00
|
|
|
@skip_attribute_types ||= %w[FILE]
|
2021-10-20 09:43:35 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def allowed_system_attributes
|
|
|
|
@allowed_system_attributes ||= %w[type]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|