Sha256: f01b3c9cc093f281e4f1781756869c4144fc80499ab15f90fbcb59df2a7a1fdb

Contents?: true

Size: 1.41 KB

Versions: 5

Compression:

Stored size: 1.41 KB

Contents

module SoapyCake
  class Response
    include Helper

    attr_accessor :time_offset
    attr_reader :body, :short_response

    def initialize(body, short_response)
      @body = body
      @short_response = short_response
    end

    def collection
      check_errors!

      return typed_element(sax.at_depth(3).first) if short_response

      sax.at_depth(5).map do |element|
        typed_element(element)
      end
    end

    private

    def typed_element(element)
      walk_tree(element) do |value, key|
        next value.to_i if key.to_s.end_with?('_id') && !key.to_s.end_with?('tax_id')

        if /\A\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.?\d*\z/.match(value)
          next DateTime.parse(value + format('%+03d:00', time_offset.to_i))
        end

        next false if value == 'false'
        next true if value == 'true'

        # cast to primitive string to get rid of Saxerator string class
        value.to_s
      end
    end

    def sax
      @sax ||= Saxerator.parser(StringIO.new(body)) do |config|
        config.symbolize_keys!
        config.ignore_namespaces!
      end
    end

    def check_errors!
      fault = sax.for_tag(:fault).first
      fail RequestFailed, fault[:reason][:text] if fault
      fail RequestFailed, error_message unless sax.for_tag(:success).first == 'true'
    end

    def error_message
      sax.for_tag(:message).first || sax.for_tag(:Text).first || 'Unknown error'
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
soapy_cake-1.6.8 lib/soapy_cake/response.rb
soapy_cake-1.6.7 lib/soapy_cake/response.rb
soapy_cake-1.6.6 lib/soapy_cake/response.rb
soapy_cake-1.6.5 lib/soapy_cake/response.rb
soapy_cake-1.6.4 lib/soapy_cake/response.rb