Sha256: 0668d24bcce3df714a5ba8b0977b74c31d91514fe5114236d93d36a432f9af8b

Contents?: true

Size: 773 Bytes

Versions: 4

Compression:

Stored size: 773 Bytes

Contents

# frozen_string_literal: true

require 'forwardable'

module EveOnline
  module ESI
    class UniverseSystem < Base
      extend Forwardable

      API_PATH = '/v4/universe/systems/%<system_id>s/?datasource=%<datasource>s'

      attr_reader :id

      def initialize(options)
        super

        @id = options.fetch(:id)
      end

      def_delegators :model, :as_json, :constellation_id, :name,
                     :security_class, :security_status, :star_id, :system_id,
                     :position, :planets, :stargate_ids, :station_ids

      def model
        @model ||= Models::System.new(response)
      end

      def scope; end

      def url
        format("#{ API_HOST }#{ API_PATH }", system_id: id, datasource: datasource)
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
eve_online-0.27.0 lib/eve_online/esi/universe_system.rb
eve_online-0.26.0 lib/eve_online/esi/universe_system.rb
eve_online-0.25.0 lib/eve_online/esi/universe_system.rb
eve_online-0.24.0 lib/eve_online/esi/universe_system.rb