Sha256: a35ad3cef6aac58dfe94b3f534d9a4dcdbc72e2bd924c5fe6080776dadb3f754

Contents?: true

Size: 932 Bytes

Versions: 6

Compression:

Stored size: 932 Bytes

Contents

# frozen_string_literal: true

module EveOnline
  module ESI
    class CharacterAssetsNames < Base
      API_PATH = "/v1/characters/%<character_id>s/assets/names/"

      attr_reader :character_id, :item_ids

      def initialize(options)
        super

        @character_id = options.fetch(:character_id)
        @item_ids = options.fetch(:item_ids)
      end

      def assets_names
        @assets_names ||=
          begin
            output = []
            response.each do |asset_name|
              output << Models::AssetName.new(asset_name)
            end
            output
          end
      end

      def http_method
        :post
      end

      def payload
        item_ids.to_json
      end

      def scope
        "esi-assets.read_assets.v1"
      end

      def etag
        raise NotImplementedError
      end

      def path
        format(API_PATH, character_id: character_id)
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
eve_online-0.43.0 lib/eve_online/esi/character_assets_names.rb
eve_online-0.42.0 lib/eve_online/esi/character_assets_names.rb
eve_online-0.41.0 lib/eve_online/esi/character_assets_names.rb
eve_online-0.40.0 lib/eve_online/esi/character_assets_names.rb
eve_online-0.39.0 lib/eve_online/esi/character_assets_names.rb
eve_online-0.38.0 lib/eve_online/esi/character_assets_names.rb