Class: Spacelift::Policy::CLI

Inherits:
Object
  • Object
show all
Defined in:
lib/spacelift/policy/cli.rb

Overview

CLI implements the logic required to configure, run and report policy checks.

Constant Summary collapse

DEFAULT_PLAN =
'spacelift.plan.json'.freeze
DEFAULT_POLICIES =
'/spacelift/project/**/*.policy.rb'.freeze

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeCLI

Returns a new instance of CLI.



17
18
19
20
# File 'lib/spacelift/policy/cli.rb', line 17

def initialize
  @json = DEFAULT_PLAN
  @policies = DEFAULT_POLICIES
end

Instance Attribute Details

#jsonObject (readonly)

Returns the value of attribute json.



8
9
10
# File 'lib/spacelift/policy/cli.rb', line 8

def json
  @json
end

#policiesObject (readonly)

Returns the value of attribute policies.



8
9
10
# File 'lib/spacelift/policy/cli.rb', line 8

def policies
  @policies
end

Class Method Details

.run(argv: ARGV) ⇒ Object



13
14
15
# File 'lib/spacelift/policy/cli.rb', line 13

def self.run(argv: ARGV)
  new.parse(argv).run
end

Instance Method Details

#parse(options) ⇒ Object

This method reeks of :reek:NestedIterators and :reek:TooManyStatements rubocop:disable Metrics/LineLength, Metrics/MethodLength



24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/spacelift/policy/cli.rb', line 24

def parse(options)
  parser = OptionParser.new do |opts|
    opts.banner = 'Usage: spacelift-policy [options]'

    opts.on('-jJSON', '--json=JSON', 'Path to the Terraform JSON plan') do |json|
      @json = json.freeze
    end

    opts.on('-pPOLICIES', '--policies=POLICIES', 'Glob expression capturing policy files') do |policies|
      @policies = policies.freeze
    end

    opts.on('-h', '--help', 'Prints this help') do
      puts opts
      exit
    end
  end
  parser.parse!(options)
  self
end

#runObject

This method reeks of :reek:TooManyStatements.

Raises:



47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/spacelift/policy/cli.rb', line 47

def run
  # List and validate policy paths.
  paths = Dir.glob(@policies)
  raise Error, "no policy files matched by #{@policies}" if paths.empty?

  # Validate state file path.
  raise Error, "state file '#{json}' not present" unless File.file?(@json)

  # Load policy files.
  paths.each { |path| load path }

  # Apply rules against the plan JSON file.
  violations = Spacelift::Policy.enforce(File.read(@json))

  # Print out violations, if any.
  violations.each { |violation| warn violation.to_s }

  # In the end, report if there were any violations. Based on that the
  # caller will be able to decide whether ther run was successful or not.
  violations.empty?
end