1
0
Fork 0
mirror of https://github.com/fog/fog-aws.git synced 2022-11-09 13:50:52 -05:00
fog--fog-aws/lib/fog/aws/parsers/cloud_formation/describe_stacks.rb
Josh Lane d48d376e9c initial import
* take the liberty of correcting Aws naming
2014-12-31 09:17:51 -08:00

78 lines
2.3 KiB
Ruby

module Fog
module Parsers
module AWS
module CloudFormation
class DescribeStacks < Fog::Parsers::Base
def reset
@stack = { 'Outputs' => [], 'Parameters' => [], 'Capabilities' => [] }
@output = {}
@parameter = {}
@response = { 'Stacks' => [] }
end
def start_element(name, attrs = [])
super
case name
when 'Outputs'
@in_outputs = true
when 'Parameters'
@in_parameters = true
when 'Capabilities'
@in_capabilities = true
end
end
def end_element(name)
if @in_outputs
case name
when 'OutputKey', 'OutputValue', 'Description'
@output[name] = value
when 'member'
@stack['Outputs'] << @output
@output = {}
when 'Outputs'
@in_outputs = false
end
elsif @in_parameters
case name
when 'ParameterKey', 'ParameterValue'
@parameter[name] = value
when 'member'
@stack['Parameters'] << @parameter
@parameter = {}
when 'Parameters'
@in_parameters = false
end
elsif @in_capabilities
case name
when 'member'
@stack['Capabilities'] << value
when 'Capabilities'
@in_capabilities = false
end
else
case name
when 'member'
@response['Stacks'] << @stack
@stack = { 'Outputs' => [], 'Parameters' => [], 'Capabilities' => []}
when 'RequestId'
@response[name] = value
when 'CreationTime'
@stack[name] = Time.parse(value)
when 'DisableRollback'
case value
when 'false'
@stack[name] = false
when 'true'
@stack[name] = true
end
when 'StackName', 'StackId', 'StackStatus'
@stack[name] = value
end
end
end
end
end
end
end
end