Sha256: e4ce86380cd47fb0d0212277c3c1d5a0a24afcbd44b7e6647330c621ec470986
Contents?: true
Size: 1.4 KB
Versions: 8
Compression:
Stored size: 1.4 KB
Contents
require 'faraday' require 'better-faraday' module Peatio module Bitgo class Client Error = Class.new(StandardError) ConnectionError = Class.new(Error) class ResponseError < Error def initialize(msg) super "#{msg}" end end def initialize(endpoint, access_token) @endpoint = URI.parse(endpoint) @access_token = access_token end def rest_api(verb, path, data = nil) args = [@endpoint.to_s + path] if data if %i[post put patch].include?(verb) args << data.compact.to_json args << { 'Content-Type' => 'application/json' } else args << data.compact args << {} end else args << nil args << {} end args.last['Accept'] = 'application/json' args.last['Authorization'] = 'Bearer ' + @access_token response = Faraday.send(verb, *args) response.assert_success! response = JSON.parse(response.body) response['error'].tap { |error| raise ResponseError.new(error) if error } response rescue Faraday::Error => e if e.is_a?(Faraday::ConnectionFailed) || e.is_a?(Faraday::TimeoutError) raise ConnectionError, e else raise ConnectionError, JSON.parse(e.response.body)['message'] end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems