mirror of
https://github.com/rest-client/rest-client.git
synced 2022-11-09 13:49:40 -05:00
57 lines
1.6 KiB
Ruby
57 lines
1.6 KiB
Ruby
require 'rexml/document'
|
|
|
|
module RestClient
|
|
# A redirect was encountered; caught by execute to retry with the new url.
|
|
class Redirect < RuntimeError; end
|
|
|
|
# Authorization is required to access the resource specified.
|
|
class Unauthorized < RuntimeError; end
|
|
|
|
# The server broke the connection prior to the request completing.
|
|
class ServerBrokeConnection < RuntimeError; end
|
|
|
|
# The server took too long to respond.
|
|
class RequestTimeout < RuntimeError; end
|
|
|
|
# The request failed, meaning the remote HTTP server returned a code other
|
|
# than success, unauthorized, or redirect.
|
|
#
|
|
# The exception message attempts to extract the error from the XML, using
|
|
# format returned by Rails: <errors><error>some message</error></errors>
|
|
#
|
|
# You can get the status code by e.http_code, or see anything about the
|
|
# response via e.response. For example, the entire result body (which is
|
|
# probably an HTML error page) is e.response.body.
|
|
class RequestFailed < RuntimeError
|
|
attr_accessor :response
|
|
|
|
def initialize(response)
|
|
@response = response
|
|
end
|
|
|
|
def http_code
|
|
@response.code.to_i
|
|
end
|
|
|
|
def message(default="Unknown error, HTTP status code #{http_code}")
|
|
return "Resource not found" if http_code == 404
|
|
parse_error_xml rescue default
|
|
end
|
|
|
|
def parse_error_xml
|
|
xml_errors = REXML::Document.new(@response.body).elements.to_a("//errors/error")
|
|
xml_errors.empty? ? raise : xml_errors.map { |a| a.text }.join(" / ")
|
|
end
|
|
|
|
def to_s
|
|
message
|
|
end
|
|
end
|
|
end
|
|
|
|
# backwards compatibility
|
|
class RestClient::Request
|
|
Redirect = RestClient::Redirect
|
|
Unauthorized = RestClient::Unauthorized
|
|
RequestFailed = RestClient::RequestFailed
|
|
end
|