inspec/lib/resources/parse_config.rb

70 lines
1.4 KiB
Ruby
Raw Normal View History

2015-07-15 14:33:39 +00:00
# encoding: utf-8
# copyright: 2015, Vulcano Security GmbH
# license: All rights reserved
# Usage example:
#
# audit = command('/sbin/auditctl -l').stdout
# options = {
# assignment_re: /^\s*([^:]*?)\s*:\s*(.*?)\s*$/,
# multiple_values: true
# }
# describe parse_config(audit, options ) do
class PConfig < Vulcano.resource(1)
name 'parse_config'
2015-07-15 14:33:39 +00:00
2015-09-05 14:07:54 +00:00
def initialize(content = nil, useropts = {})
default_options = {}
@opts = default_options.merge(useropts)
@files_contents = {}
2015-07-15 14:33:39 +00:00
@params = nil
@content = content
read_content if @content.nil?
end
def to_s
"parse_config #{@conf_path}"
2015-07-15 14:33:39 +00:00
end
2015-09-03 18:43:58 +00:00
def method_missing(name)
2015-07-15 14:33:39 +00:00
@params || read_content
@params[name.to_s]
end
2015-09-03 18:43:58 +00:00
def parse_file(conf_path)
@conf_path = conf_path
# read the file
if !vulcano.file(conf_path).file?
return skip_resource "Can't find file \"#{conf_path}\""
end
@content = read_file(conf_path)
if @content.empty? && vulcano.file(conf_path).size > 0
return skip_resource "Can't read file \"#{conf_path}\""
end
read_content
end
def read_file(path)
@files_contents[path] ||= vulcano.file(path).content
end
2015-07-15 14:33:39 +00:00
def read_content
# parse the file
@params = SimpleConfig.new(@content, @opts).params
2015-07-15 14:33:39 +00:00
@content
end
end
class PConfigFile < PConfig
name 'parse_config_file'
def initialize(path, opts)
super(nil, opts)
parse_file(path)
end
end