Class: EveApp::XmlApi::Client

Inherits:
Object
  • Object
show all
Defined in:
lib/eve_app/xml_api/client.rb

Constant Summary collapse

API_HOST =
'https://api.eveonline.com'
MAX_TRIES =
4
REQUEST_TIMEOUT =
60

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key_id, vcode) ⇒ Client

Returns a new instance of Client.

[View source]

15
16
17
18
19
20
# File 'lib/eve_app/xml_api/client.rb', line 15

def initialize(key_id, vcode)
  @key_id = key_id
  @vcode = vcode
  @save_responses = false
  @character_id = nil
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method

#method_missing(name, params = {}) ⇒ Object

[View source]

22
23
24
25
26
27
# File 'lib/eve_app/xml_api/client.rb', line 22

def method_missing(name, params={})
  call = Calls.const_get(name.to_s.camelize)
  params[:last_id] ? walk(call, params) : request(call, params)
# rescue NameError
#   super
end

Instance Attribute Details

#character_idObject

Returns the value of attribute character_id.


13
14
15
# File 'lib/eve_app/xml_api/client.rb', line 13

def character_id
  @character_id
end

#key_idObject (readonly)

Returns the value of attribute key_id.


12
13
14
# File 'lib/eve_app/xml_api/client.rb', line 12

def key_id
  @key_id
end

#save_responsesObject

Returns the value of attribute save_responses.


13
14
15
# File 'lib/eve_app/xml_api/client.rb', line 13

def save_responses
  @save_responses
end

#vcodeObject (readonly)

Returns the value of attribute vcode.


12
13
14
# File 'lib/eve_app/xml_api/client.rb', line 12

def vcode
  @vcode
end