Class: StackMaster::StackDiffer

Inherits:
Object
  • Object
show all
Defined in:
lib/stack_master/stack_differ.rb

Instance Method Summary collapse

Constructor Details

#initialize(proposed_stack, current_stack) ⇒ StackDiffer

Returns a new instance of StackDiffer.



6
7
8
9
# File 'lib/stack_master/stack_differ.rb', line 6

def initialize(proposed_stack, current_stack)
  @proposed_stack = proposed_stack
  @current_stack = current_stack
end

Instance Method Details

#body_diffObject



47
48
49
50
51
52
# File 'lib/stack_master/stack_differ.rb', line 47

def body_diff
  @body_diff ||= Diff.new(name: 'Stack',
                          before: current_template,
                          after: proposed_template,
                          context: 7)
end

#body_different?Boolean

Returns:

  • (Boolean)


43
44
45
# File 'lib/stack_master/stack_differ.rb', line 43

def body_different?
  body_diff.different?
end

#current_parametersObject



24
25
26
27
28
29
30
# File 'lib/stack_master/stack_differ.rb', line 24

def current_parameters
  if @current_stack
    YAML.dump(sort_params(@current_stack.parameters_with_defaults))
  else
    ''
  end
end

#current_templateObject



17
18
19
20
21
22
# File 'lib/stack_master/stack_differ.rb', line 17

def current_template
  return '' unless @current_stack
  return @current_stack.template_body unless @current_stack.template_format == :json

  JSON.pretty_generate(TemplateUtils.template_hash(@current_stack.template_body)) + "\n"
end

#noecho_keysObject



74
75
76
77
78
79
80
81
82
# File 'lib/stack_master/stack_differ.rb', line 74

def noecho_keys
  if @current_stack
    @current_stack.parameters_with_defaults.select do |key, value|
      value == "****"
    end.keys
  else
    []
  end
end

#output_diffObject



64
65
66
67
68
69
70
71
72
# File 'lib/stack_master/stack_differ.rb', line 64

def output_diff
  body_diff.display
  parameters_diff.display

  unless noecho_keys.empty?
    StackMaster.stdout.puts " * can not tell if NoEcho parameters are different."
  end
  StackMaster.stdout.puts "No stack found" if @current_stack.nil?
end

#parameters_diffObject



58
59
60
61
62
# File 'lib/stack_master/stack_differ.rb', line 58

def parameters_diff
  @param_diff ||= Diff.new(name: 'Parameters',
                           before: current_parameters,
                           after: proposed_parameters)
end

#params_different?Boolean

Returns:

  • (Boolean)


54
55
56
# File 'lib/stack_master/stack_differ.rb', line 54

def params_different?
  parameters_diff.different?
end

#proposed_parametersObject



32
33
34
35
36
37
38
39
40
41
# File 'lib/stack_master/stack_differ.rb', line 32

def proposed_parameters
  # **** out any secret parameters in the current stack.
  params = @proposed_stack.parameters_with_defaults
  if @current_stack
    noecho_keys.each do |key|
      params[key] = "****"
    end
  end
  YAML.dump(sort_params(params))
end

#proposed_templateObject



11
12
13
14
15
# File 'lib/stack_master/stack_differ.rb', line 11

def proposed_template
  return @proposed_stack.template_body unless @proposed_stack.template_format == :json

  JSON.pretty_generate(JSON.parse(@proposed_stack.template_body)) + "\n"
end

#single_param_update?(param_name) ⇒ Boolean

Returns:

  • (Boolean)


84
85
86
87
88
89
90
91
92
# File 'lib/stack_master/stack_differ.rb', line 84

def single_param_update?(param_name)
  return false if param_name.blank? || @current_stack.blank? || body_different?

  differences = Hashdiff.diff(@current_stack.parameters_with_defaults, @proposed_stack.parameters_with_defaults)
  return false if differences.count != 1

  diff = differences[0]
  diff[0] == "~" && diff[1] == param_name
end