mirror of
https://github.com/inspec/inspec
synced 2024-11-11 07:34:15 +00:00
23 lines
598 B
Ruby
23 lines
598 B
Ruby
# encoding: utf-8
|
|
# author: Dominik Richter
|
|
# author: Christoph Hartmann
|
|
module ObjectTraverser
|
|
def extract_value(keys, value)
|
|
key = keys.shift
|
|
return nil if key.nil? || value.nil?
|
|
|
|
# if value is an array, iterate over each child
|
|
if value.is_a?(Array)
|
|
value = value.map { |i|
|
|
extract_value([key], i)
|
|
}
|
|
else
|
|
value = value[key.to_s].nil? ? nil : value[key.to_s]
|
|
end
|
|
|
|
# if there are no more keys, just return the value
|
|
return value if keys.first.nil?
|
|
# if there are more keys, extract more
|
|
extract_value(keys.clone, value)
|
|
end
|
|
end
|