Class: Sfn::Command::Diff

Inherits:
Sfn::Command show all
Includes:
Sfn::CommandModule::Base, Sfn::CommandModule::Stack, Sfn::CommandModule::Template
Defined in:
lib/sfn/command/diff.rb

Overview

Diff command

Constant Summary

Constants included from Sfn::CommandModule::Template

Sfn::CommandModule::Template::MAX_PARAMETER_ATTEMPTS, Sfn::CommandModule::Template::TEMPLATE_IGNORE_DIRECTORIES

Constants inherited from Sfn::Command

CONFIG_BASE_NAME, VALID_CONFIG_EXTENSIONS

Instance Method Summary collapse

Methods included from Sfn::CommandModule::Stack

included

Methods included from Sfn::CommandModule::Template

included

Methods included from Sfn::CommandModule::Base

included

Methods inherited from Sfn::Command

#config, #initialize

Methods included from Sfn::CommandModule::Callbacks

#api_action!, #callbacks_for, #run_callbacks_for

Constructor Details

This class inherits a constructor from Sfn::Command

Instance Method Details

#diff_stack(stack, file, parent_names = []) ⇒ Object

TODO:

needs updates for better provider compat



41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
# File 'lib/sfn/command/diff.rb', line 41

def diff_stack(stack, file, parent_names=[])
  stack_template = stack.template
  nested_stacks = Hash[
    file.fetch('Resources', file.fetch('resources', {})).find_all do |name, value|
      value.fetch('Properties', {})['Stack']
    end
  ]
  nested_stacks.each do |name, value|
    n_stack = stack.nested_stacks(false).detect do |ns|
      ns.data[:logical_id] == name
    end
    if(n_stack)
      diff_stack(n_stack, value['Properties']['Stack'], [*parent_names, stack.data.fetch(:logical_id, stack.name)].compact)
    end
    file['Resources'][name]['Properties'].delete('Stack')
  end

  ui.info "#{ui.color('Stack diff:', :bold)} #{ui.color((parent_names + [stack.data.fetch(:logical_id, stack.name)]).compact.join(' > '), :blue)}"

  stack_diff = HashDiff.diff(stack.template, file)

  if(config[:raw_diff])
    ui.info "Dumping raw template diff:"
    require 'pp'
    pp stack_diff
  else

    added_resources = stack_diff.find_all do |item|
      item.first == '+' && item[1].match(/Resources\.[^.]+$/)
    end
    removed_resources = stack_diff.find_all do |item|
      item.first == '-' && item[1].match(/Resources\.[^.]+$/)
    end
    modified_resources = stack_diff.find_all do |item|
      item[1].start_with?('Resources.') &&
        !item[1].end_with?('TemplateURL') &&
        !item[1].include?('Properties.Parameters')
    end - added_resources - removed_resources

    if(added_resources.empty? && removed_resources.empty? && modified_resources.empty?)
      ui.info 'No changes detected'
      ui.puts
    else

      unless(added_resources.empty?)
        ui.info ui.color('Added Resources:', :green, :bold)
        added_resources.each do |item|
          ui.print ui.color("  -> #{item[1].split('.').last}", :green)
          ui.puts " [#{item[2]['Type']}]"
        end
        ui.puts
      end

      unless(modified_resources.empty?)
        ui.info ui.color('Modified Resources:', :yellow, :bold)
        m_resources = Hash.new.tap do |hash|
          modified_resources.each do |item|
            _, key, path = item[1].split('.', 3)
            hash[key] ||= {}
            prefix, a_key = path.split('.', 2)
            hash[key][prefix] ||= []
            matched = hash[key][prefix].detect do |i|
              i[:path] == a_key
            end
            if(matched)
              if(item.first == '-')
                matched[:original] = item[2]
              else
                matched[:new] = item[2]
              end
            else
              hash[key][prefix] << Hash.new.tap do |info|
                info[:path] = a_key
                case item.first
                when '~'
                  info[:original] = item[2]
                  info[:new] = item[3]
                when '+'
                  info[:new] = item[2]
                else
                  info[:original] = item[2]
                end
              end
            end
          end
        end.to_smash(:sorted).each do |key, value|
          ui.puts ui.color("  - #{key}", :yellow) + " [#{stack.template['Resources'][key]['Type']}]"
          value.each do |prefix, items|
            ui.puts ui.color("    #{prefix}:", :bold)
            items.each do |item|
              original = item[:original].nil? ? ui.color('(none)', :yellow) : ui.color(item[:original].inspect, :red)
              new_val = item[:new].nil? ? ui.color('(deleted)', :red) : ui.color(item[:new].inspect, :green)
              ui.puts "      #{item[:path]}: #{original} -> #{new_val}"
            end
          end
        end
        ui.puts
      end

      unless(removed_resources.empty?)
        ui.info ui.color('Removed Resources:', :red, :bold)
        removed_resources.each do |item|
          ui.print ui.color("  <- #{item[1].split('.').last}", :red)
          ui.puts " [#{item[2]['Type']}]"
        end
        ui.puts
      end

      run_callbacks_for(:after_stack_diff,
        :diff => stack_diff,
        :diff_info => {
          :added => added_resources,
          :modified => modified_resources,
          :removed => removed_resources
        },
        :api_stack => stack,
        :new_template => file
      )
    end

  end

end

#execute!Object

Diff the stack with existing stack



15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/sfn/command/diff.rb', line 15

def execute!
  name_required!
  name = name_args.first

  begin
    stack = provider.stack(name)
  rescue Miasma::Error::ApiError::RequestError
    stack = nil
  end

  if(stack)
    config[:print_only] = true
    file = load_template_file
    file = parameter_scrub!(file.dump)

    ui.info "#{ui.color('SparkleFormation:', :bold)} #{ui.color('diff', :blue)} - #{name}"
    ui.puts

    diff_stack(stack, MultiJson.load(MultiJson.dump(file)).to_smash)
  else
    ui.fatal "Failed to locate requested stack: #{ui.color(name, :red, :bold)}"
    raise "Failed to locate stack: #{name}"
  end
end