Sha256: 3f8afc941ebb5e16d63eb914fa471a5220595038f427eae8363c002eedf0e72d

Contents?: true

Size: 1.2 KB

Versions: 5

Compression:

Stored size: 1.2 KB

Contents

module SoapyCake
  class ResponseValue
    attr_reader :value
    attr_reader :key

    # Known string ids that should not be parsed as integers
    STRING_IDS = %w(tax_id transaction_id).freeze

    def initialize(key, value, opts = {})
      @key = key.to_s
      @value = value
      @opts = opts
    end

    def parse
      return parse_int if id? && !string_id?
      return false if false?
      return true if true?
      return parse_date if date?

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

    private

    def false?
      value == 'false'
    end

    def true?
      value == 'true'
    end

    def date?
      value =~ /\A\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.?\d*\z/
    end

    def id?
      key.to_s.end_with?('_id')
    end

    def string_id?
      STRING_IDS.any? { |id| key.end_with?(id) }
    end

    def numeric?
      value =~ /\A-?\d*\z/
    end

    def parse_int
      unless value.nil? || numeric?
        fail Error, "'#{key}' contains non-digit chars but was to be parsed as an integer id"
      end
      value.to_i
    end

    def parse_date
      DateTime.parse(value + format('%+03d:00', @opts[:time_offset].to_i))
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
soapy_cake-1.15.0 lib/soapy_cake/response_value.rb
soapy_cake-1.14.4 lib/soapy_cake/response_value.rb
soapy_cake-1.14.3 lib/soapy_cake/response_value.rb
soapy_cake-1.14.2 lib/soapy_cake/response_value.rb
soapy_cake-1.14.1 lib/soapy_cake/response_value.rb