Sha256: 3efcdf708f2c0b01391f77cc5cc13407dc4c7bc88d009bfd26e10c1bd452f20c

Contents?: true

Size: 1.21 KB

Versions: 1

Compression:

Stored size: 1.21 KB

Contents

module EveOnline
  module Characters
    # https://eveonline-third-party-documentation.readthedocs.org/en/latest/xmlapi/character/char_accountbalance.html
    class AccountBalance < BaseXML
      API_ENDPOINT = 'https://api.eveonline.com/char/AccountBalance.xml.aspx'.freeze

      attr_reader :key_id, :v_code, :character_id

      def initialize(key_id, v_code, character_id)
        super()
        @key_id = key_id
        @v_code = v_code
        @character_id = character_id
      end

      def as_json(*args)
        {
          account_id: account_id,
          account_key: account_key,
          balance: balance,
          current_time: current_time,
          cached_until: cached_until
        }
      end

      def account_id
        @account_id ||= row.fetch('@accountID').to_i
      end

      def account_key
        @account_key ||= row.fetch('@accountKey').to_i
      end

      def balance
        @balance ||= row.fetch('@balance')
      end

      def row
        @row ||= rowset.fetch('row')
      end

      def rowset
        @rowset ||= result.fetch('rowset')
      end

      def url
        "#{ API_ENDPOINT }?keyID=#{ key_id }&vCode=#{ v_code }&characterID=#{ character_id }"
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
eve_online-0.7.0 lib/eve_online/characters/account_balance.rb