Class: Inspec::Resources::SecurityPolicy

Inherits:
Object
  • Object
show all
Defined in:
lib/resources/security_policy.rb

Instance Method Summary collapse

Constructor Details

#initialize(opts = {}) ⇒ SecurityPolicy

Returns a new instance of SecurityPolicy.



83
84
85
# File 'lib/resources/security_policy.rb', line 83

def initialize(opts = {})
  @translate_sid = opts[:translate_sid] || false
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name) ⇒ Object



97
98
99
100
101
102
103
104
105
106
107
108
# File 'lib/resources/security_policy.rb', line 97

def method_missing(name)
  params = read_params
  return nil if params.nil?

  # deep search for hash key
  params.extend Hashie::Extensions::DeepFind
  res = params.deep_find(name.to_s)

  # return an empty array if configuration does not include rights configuration
  return [] if res.nil? && MS_PRIVILEGES_RIGHTS.include?(name.to_s)
  res
end

Instance Method Details

#contentObject



87
88
89
# File 'lib/resources/security_policy.rb', line 87

def content
  read_content
end

#params(*opts) ⇒ Object



91
92
93
94
95
# File 'lib/resources/security_policy.rb', line 91

def params(*opts)
  opts.inject(read_params) do |res, nxt|
    res.respond_to?(:key) ? res[nxt] : nil
  end
end

#to_sObject



110
111
112
# File 'lib/resources/security_policy.rb', line 110

def to_s
  'Security Policy'
end