Sha256: 6debb83cc40887a799ab004e7f25f15ed59d6a62852b60e38eb12ac094d78ab0

Contents?: true

Size: 693 Bytes

Versions: 2

Compression:

Stored size: 693 Bytes

Contents

# frozen_string_literal: true

require 'forwardable'

module EveOnline
  module ESI
    class CharacterOnline < Base
      extend Forwardable

      API_PATH = '/v2/characters/%<character_id>s/online/'

      attr_reader :character_id

      def initialize(options)
        super

        @character_id = options.fetch(:character_id)
      end

      def_delegators :model, :as_json, :last_login, :last_logout, :logins,
                     :online

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

      def scope
        'esi-location.read_online.v1'
      end

      def path
        format("#{ API_PATH }", character_id: character_id)
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
eve_online-0.29.0 lib/eve_online/esi/character_online.rb
eve_online-0.28.0 lib/eve_online/esi/character_online.rb