Class: Fog::Parsers::Storage::AWS::GetBucket
- Inherits:
-
Base
- Object
- Nokogiri::XML::SAX::Document
- Base
- Fog::Parsers::Storage::AWS::GetBucket
show all
- Defined in:
- lib/fog/aws/parsers/storage/get_bucket.rb
Instance Attribute Summary
Attributes inherited from Base
#response
Instance Method Summary
collapse
Methods inherited from Base
#attr_value, #characters, #initialize, #value
Instance Method Details
permalink
#end_element(name) ⇒ Object
[View source]
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
# File 'lib/fog/aws/parsers/storage/get_bucket.rb', line 21
def end_element(name)
case name
when 'CommonPrefixes'
@in_common_prefixes = false
when 'Contents'
@response['Contents'] << @object
@object = { 'Owner' => {} }
when 'DisplayName', 'ID'
@object['Owner'][name] = value
when 'ETag'
@object[name] = value.gsub('"', '')
when 'IsTruncated'
if value == 'true'
@response['IsTruncated'] = true
else
@response['IsTruncated'] = false
end
when 'LastModified'
@object['LastModified'] = Time.parse(value)
when 'Marker', 'Name'
@response[name] = value
when 'MaxKeys'
@response['MaxKeys'] = value.to_i
when 'Prefix'
if @in_common_prefixes
@response['CommonPrefixes'] << value
else
@response[name] = value
end
when 'Size'
@object['Size'] = value.to_i
when 'Delimiter', 'Key', 'StorageClass'
@object[name] = value
end
end
|
[View source]
8
9
10
11
|
# File 'lib/fog/aws/parsers/storage/get_bucket.rb', line 8
def reset
@object = { 'Owner' => {} }
@response = { 'Contents' => [], 'CommonPrefixes' => [] }
end
|
permalink
#start_element(name, attrs = []) ⇒ Object
[View source]
13
14
15
16
17
18
19
|
# File 'lib/fog/aws/parsers/storage/get_bucket.rb', line 13
def start_element(name, attrs = [])
super
case name
when 'CommonPrefixes'
@in_common_prefixes = true
end
end
|