2017-08-14 11:56:23 +00:00
|
|
|
class Sequencer
|
|
|
|
class Unit
|
|
|
|
module Import
|
|
|
|
module Common
|
|
|
|
module Mapping
|
|
|
|
class FlatKeys < Sequencer::Unit::Base
|
|
|
|
include ::Sequencer::Unit::Import::Common::Mapping::Mixin::ProvideMapped
|
2018-04-26 07:07:30 +00:00
|
|
|
prepend ::Sequencer::Unit::Import::Common::Model::Mixin::Skip::Action
|
|
|
|
|
|
|
|
skip_any_action
|
2017-08-14 11:56:23 +00:00
|
|
|
|
|
|
|
uses :resource
|
2018-04-26 07:07:30 +00:00
|
|
|
provides :mapped
|
2017-08-14 11:56:23 +00:00
|
|
|
|
|
|
|
def process
|
|
|
|
provide_mapped do
|
|
|
|
mapped
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def mapped
|
|
|
|
resource_with_indifferent_access = resource.with_indifferent_access
|
|
|
|
mapping.symbolize_keys.collect do |source, local|
|
|
|
|
[local, resource_with_indifferent_access[source]]
|
|
|
|
end.to_h.with_indifferent_access
|
|
|
|
end
|
|
|
|
|
|
|
|
def mapping
|
|
|
|
raise "Missing implementation of '#{__method__}' method for '#{self.class.name}'"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|