require 'faraday' # @private module Faraday # @private class Response::RaiseHttp4xx < Response::Middleware def on_complete(env) case env[:status].to_i when 400 raise Desk::BadRequest.new(error_message(env), env[:response_headers]) when 401 raise Desk::Unauthorized.new(error_message(env), env[:response_headers]) when 403 raise Desk::Forbidden.new(error_message(env), env[:response_headers]) when 404 raise Desk::NotFound.new(error_message(env), env[:response_headers]) when 406 raise Desk::NotAcceptable.new(error_message(env), env[:response_headers]) when 409 raise Desk::Conflict.new(error_message(env), env[:response_headers]) when 422 raise Desk::Unprocessable.new(error_message(env), env[:response_headers]) when 429 raise Desk::EnhanceYourCalm.new(error_message(env), env[:response_headers]) end end private def error_message(env) "#{env[:method].to_s.upcase} #{env[:url].to_s}: #{env[:status]}#{error_body(env[:body])}" end def error_body(body) if body.nil? nil elsif body['error'] ": #{body['error']}" elsif body['errors'] first = body['errors'].to_a.first if first.kind_of? Hash ": #{first['message'].chomp}" else ": #{first.chomp}" end end end end end