trabajo-afectivo/lib/sequencer/unit/import/freshdesk/resources.rb

29 lines
815 B
Ruby

# Copyright (C) 2012-2021 Zammad Foundation, http://zammad-foundation.org/
class Sequencer
class Unit
module Import
module Freshdesk
class Resources < Sequencer::Unit::Common::Provider::Named
include ::Sequencer::Unit::Import::Common::Model::Mixin::HandleFailure
uses :response, :skipped_resource_id
private
def resources
body = JSON.parse(response.body)
return body if skipped_resource_id.nil?
# Remove the skipped resource id from the received resources.
body.reject { |item| item['id'] == skipped_resource_id }
rescue => e
logger.error "Won't be continued, because no response is available."
handle_failure(e)
end
end
end
end
end
end