Sha256: fab5caea97c57b104a9d7c36ea46362945678bbcc8bfed5f7197538157a30622

Contents?: true

Size: 1.23 KB

Versions: 3

Compression:

Stored size: 1.23 KB

Contents

require 'json'

module Stackster
  class StackUpdater

    def initialize(args)
      @config = args[:config]
      @entry = args[:entry]
      @name = args[:name]
      @template_body = args[:template_body]
    end

    def update_stack_if_parameters_changed(attributes)
      parameter_updated?(attributes) ? update : false
    end

    private

    def update
      cloud_formation.update :name => @name,
                             :parameters => read_parameters_from_entry_attributes,
                             :template => @template_body
    end

    def parameter_updated?(attributes)
      (template_parameters - updated_parameters(attributes)) != template_parameters
    end

    def template_parameters
      json = JSON.parse @template_body
      json['Parameters'].nil? ? [] : json['Parameters'].keys
    end

    def updated_parameters attributes
      (attributes.map { |s| s.keys }).flatten
    end

    def read_parameters_from_entry_attributes
      h = {}
      entry_attributes = @entry.attributes
      template_parameters.each do |p|
        h[p] = entry_attributes[p] if entry_attributes[p]
      end
      h
    end

    def cloud_formation
      @cloud_formation ||= AWS::CloudFormation.new :config => @config
    end

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
stackster-0.2.2 lib/stackster/stack/stack_updater.rb
stackster-0.2.1 lib/stackster/stack/stack_updater.rb
stackster-0.2.0 lib/stackster/stack/stack_updater.rb