mirror of
https://github.com/inspec/inspec
synced 2024-11-23 21:23:29 +00:00
6668bf15ea
The is_automate_server_pre_080? and is_automate_server_080_and_later? methods needed some fixing. The Compliance configuration could have a "version" key that was not nil but was an empty hash, indicating that it came from a pre-0.8.x Automate server. What we really need to look for is config['version']['version'] being nil?. Signed-off-by: Adam Leff <adam@leff.co>
103 lines
2.5 KiB
Ruby
103 lines
2.5 KiB
Ruby
# encoding: utf-8
|
|
# author: Christoph Hartmann
|
|
# author: Dominik Richter
|
|
|
|
module Compliance
|
|
# stores configuration on local filesystem
|
|
class Configuration
|
|
def initialize
|
|
@config_path = File.join(Dir.home, '.inspec', 'compliance')
|
|
# ensure the directory is available
|
|
unless File.directory?(@config_path)
|
|
FileUtils.mkdir_p(@config_path)
|
|
end
|
|
# set config file path
|
|
@config_file = File.join(@config_path, '/config.json')
|
|
@config = {}
|
|
|
|
# load the data
|
|
get
|
|
end
|
|
|
|
# direct access to config
|
|
def [](key)
|
|
@config[key]
|
|
end
|
|
|
|
def []=(key, value)
|
|
@config[key] = value
|
|
end
|
|
|
|
def key?(key)
|
|
@config.key?(key)
|
|
end
|
|
|
|
def clean
|
|
@config = {}
|
|
end
|
|
|
|
# return the json data
|
|
def get
|
|
if File.exist?(@config_file)
|
|
file = File.read(@config_file)
|
|
@config = JSON.parse(file)
|
|
end
|
|
@config
|
|
end
|
|
|
|
# stores a hash to json
|
|
def store
|
|
File.open(@config_file, 'w') do |f|
|
|
f.chmod(0600)
|
|
f.write(@config.to_json)
|
|
end
|
|
end
|
|
|
|
# deletes data
|
|
def destroy
|
|
if File.exist?(@config_file)
|
|
File.delete(@config_file)
|
|
else
|
|
true
|
|
end
|
|
end
|
|
|
|
# return if the (stored) api version does not support a certain feature
|
|
def supported?(feature)
|
|
sup = version_with_support(feature)
|
|
|
|
# we do not know the version, therefore we do not know if its possible to use the feature
|
|
return if self['version'].nil? || self['version']['version'].nil?
|
|
|
|
if sup.is_a?(Array)
|
|
Gem::Version.new(self['version']['version']) >= sup[0] &&
|
|
Gem::Version.new(self['version']['version']) < sup[1]
|
|
else
|
|
Gem::Version.new(self['version']['version']) >= sup
|
|
end
|
|
end
|
|
|
|
# exit 1 if the version of compliance that we're working with doesn't support odic
|
|
def legacy_check!(feature)
|
|
if !supported?(feature)
|
|
puts "This feature (#{feature}) is not available for legacy installations."
|
|
puts 'Please upgrade to a recent version of Chef Compliance.'
|
|
exit 1
|
|
end
|
|
end
|
|
|
|
private
|
|
|
|
# for a feature, returns either:
|
|
# - a version v0: v supports v0 iff v0 <= v
|
|
# - an array [v0, v1] of two versions: v supports [v0, v1] iff v0 <= v < v1
|
|
def version_with_support(feature)
|
|
case feature.to_sym
|
|
when :oidc
|
|
Gem::Version.new('0.16.19')
|
|
else
|
|
Gem::Version.new('0.0.0')
|
|
end
|
|
end
|
|
end
|
|
end
|