2016-11-25 16:10:37 +00:00
|
|
|
module Import
|
|
|
|
module OTRS
|
|
|
|
module HistoryFactory
|
|
|
|
extend Import::Factory
|
|
|
|
|
|
|
|
# rubocop:disable Style/ModuleFunction
|
|
|
|
extend self
|
|
|
|
|
2016-12-20 15:16:09 +00:00
|
|
|
def skip?(record, *_args)
|
2016-11-25 16:10:37 +00:00
|
|
|
return true if !determine_class(record)
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
2016-12-20 15:16:09 +00:00
|
|
|
def backend_class(record, *_args)
|
2016-11-25 16:10:37 +00:00
|
|
|
"Import::OTRS::History::#{determine_class(record)}".constantize
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def determine_class(history)
|
|
|
|
check_supported(history) || check_article(history)
|
|
|
|
end
|
|
|
|
|
|
|
|
def supported_types
|
2017-11-23 08:09:44 +00:00
|
|
|
%w[NewTicket StateUpdate Move PriorityUpdate]
|
2016-11-25 16:10:37 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def check_supported(history)
|
|
|
|
return if !supported_types.include?(history['HistoryType'])
|
|
|
|
history['HistoryType']
|
|
|
|
end
|
|
|
|
|
|
|
|
def check_article(history)
|
|
|
|
return if !history['ArticleID']
|
|
|
|
return if history['ArticleID'].to_i.zero?
|
|
|
|
'Article'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|