~singpolyma/sgx-jmp

2d687b1a39c8318d4efba9300f428f58ed4ad713 — Stephen Paul Weber 1 year, 7 months ago 9b77d65
Patch bandwidth-iris to raise useful exceptions
2 files changed, 28 insertions(+), 0 deletions(-)

A lib/bandwidth_iris_patch.rb
M sgx_jmp.rb
A lib/bandwidth_iris_patch.rb => lib/bandwidth_iris_patch.rb +27 -0
@@ 0,0 1,27 @@
# frozen_string_literal: true

require "ruby-bandwidth-iris"

module BandwidthIris
	class APIError < StandardError
		attr_reader :code

		def initialize(description:, code: nil)
			super(description)
			@code = code
		end
	end

	class Client
		# Expose useful error messages from the API instead of hiding them
		def check_response(response)
			parsed_body = parse_xml(response.body || "")
			return parsed_body unless response.status >= 400
			raise APIError.new(**parsed_body[:error]) if parsed_body.key?(:error)

			raise Errors::GenericError.new(
				"", "Http code #{response.status}", response.status
			)
		end
	end
end

M sgx_jmp.rb => sgx_jmp.rb +1 -0
@@ 70,6 70,7 @@ require_relative "lib/alt_top_up_form"
require_relative "lib/add_bitcoin_address"
require_relative "lib/backend_sgx"
require_relative "lib/bwmsgsv2_repo"
require_relative "lib/bandwidth_iris_patch"
require_relative "lib/bandwidth_tn_order"
require_relative "lib/btc_sell_prices"
require_relative "lib/buy_account_credit_form"