Sha256: 0655777e633b3b8ecfc5965052aa01ff8decae0aa61bb98673400fd4911c1ce9

Contents?: true

Size: 811 Bytes

Versions: 1

Compression:

Stored size: 811 Bytes

Contents

require 'uri'

module EveOnline
  module XML
    # https://eveonline-third-party-documentation.readthedocs.io/en/latest/xmlapi/character/char_notificationtexts.html
    class CharacterNotificationTexts < Base
      API_ENDPOINT = 'https://api.eveonline.com/char/NotificationTexts.xml.aspx'.freeze

      ACCESS_MASK = 32_768

      attr_reader :key_id, :v_code, :character_id, :ids

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

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

      private

      def escaped_ids
        URI.escape(ids.join(','))
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
eve_online-0.12.0 lib/eve_online/xml/character_notification_texts.rb