Class: Peatio::Ripple::Client

Inherits:
Object
  • Object
show all
Extended by:
Memoist
Defined in:
lib/peatio/ripple/client.rb

Defined Under Namespace

Classes: ConnectionError, ResponseError

Constant Summary collapse

Error =
Class.new(StandardError)

Instance Method Summary collapse

Constructor Details

#initialize(endpoint) ⇒ Client

Returns a new instance of Client.



24
25
26
27
# File 'lib/peatio/ripple/client.rb', line 24

def initialize(endpoint)
  @json_rpc_endpoint = URI.parse(endpoint)
  @json_rpc_call_id = 0
end

Instance Method Details

#json_rpc(method, params = []) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/peatio/ripple/client.rb', line 29

def json_rpc(method, params = [])
  response = post(method, params)

  response.assert_2xx!
  response = JSON.parse(response.body)
  response.fetch('result').tap do |result|
    raise ResponseError.new(result['error_code'], result['error_message']) if result['status'] == 'error'
  end
  response.fetch('result')
rescue => e
  if e.is_a?(Error)
    raise e, e.message
  elsif e.is_a?(Faraday::Error)
    raise ConnectionError, e
  else
    raise Error, e
  end
end