Class: Amazon::Ecs::Response
- Inherits:
-
Object
- Object
- Amazon::Ecs::Response
- Defined in:
- lib/crown/amazon/ecs.rb
Overview
Response object returned after a REST call to Amazon service.
Instance Method Summary collapse
-
#doc ⇒ Object
Return Nokogiri::XML::Document object.
-
#error ⇒ Object
Return error message.
-
#error_code ⇒ Object
Return error code.
-
#first_item ⇒ Object
Return the first item (Amazon::Element).
-
#has_error? ⇒ Boolean
Return true if response has an error.
-
#initialize(xml) ⇒ Response
constructor
XML input is in string format.
-
#is_valid_request? ⇒ Boolean
Return true if request is valid.
-
#item_page ⇒ Object
Return current page no if :item_page option is when initiating the request.
-
#items ⇒ Object
Return an array of Amazon::Element item objects.
- #marshal_dump ⇒ Object
- #marshal_load(xml) ⇒ Object
-
#total_pages ⇒ Object
Return total pages.
-
#total_results ⇒ Object
Return total results.
Constructor Details
#initialize(xml) ⇒ Response
XML input is in string format
140 141 142 143 144 145 |
# File 'lib/crown/amazon/ecs.rb', line 140 def initialize(xml) @doc = Nokogiri::XML(xml, 'nul', 'UTF-8') @doc.remove_namespaces! # @doc.xpath("//*").each { |elem| elem.name = elem.name.downcase } # @doc.xpath("//@*").each { |att| att.name = att.name.downcase } end |
Instance Method Details
#doc ⇒ Object
Return Nokogiri::XML::Document object.
148 149 150 |
# File 'lib/crown/amazon/ecs.rb', line 148 def doc @doc end |
#error ⇒ Object
Return error message.
163 164 165 |
# File 'lib/crown/amazon/ecs.rb', line 163 def error Element.get(@doc, "//Error/Message") end |
#error_code ⇒ Object
Return error code
168 169 170 |
# File 'lib/crown/amazon/ecs.rb', line 168 def error_code Element.get(@doc, "//Error/Code") end |
#first_item ⇒ Object
Return the first item (Amazon::Element)
178 179 180 |
# File 'lib/crown/amazon/ecs.rb', line 178 def first_item items.first end |
#has_error? ⇒ Boolean
Return true if response has an error.
158 159 160 |
# File 'lib/crown/amazon/ecs.rb', line 158 def has_error? !(error.nil? || error.empty?) end |
#is_valid_request? ⇒ Boolean
Return true if request is valid.
153 154 155 |
# File 'lib/crown/amazon/ecs.rb', line 153 def is_valid_request? Element.get(@doc, "//IsValid") == "True" end |
#item_page ⇒ Object
Return current page no if :item_page option is when initiating the request.
183 184 185 |
# File 'lib/crown/amazon/ecs.rb', line 183 def item_page @item_page ||= Element.get(@doc, "//ItemPage").to_i end |
#items ⇒ Object
Return an array of Amazon::Element item objects.
173 174 175 |
# File 'lib/crown/amazon/ecs.rb', line 173 def items @items ||= (@doc/"Item").collect { |item| Element.new(item) } end |
#marshal_dump ⇒ Object
197 198 199 |
# File 'lib/crown/amazon/ecs.rb', line 197 def marshal_dump @doc.to_s end |
#marshal_load(xml) ⇒ Object
201 202 203 |
# File 'lib/crown/amazon/ecs.rb', line 201 def marshal_load(xml) initialize(xml) end |