2007-12-21 08:48:59 +01:00
|
|
|
require 'net/https'
|
|
|
|
require 'date'
|
|
|
|
require 'time'
|
|
|
|
require 'uri'
|
|
|
|
require 'benchmark'
|
|
|
|
|
|
|
|
module ActiveResource
|
|
|
|
class ConnectionError < StandardError # :nodoc:
|
|
|
|
attr_reader :response
|
|
|
|
|
|
|
|
def initialize(response, message = nil)
|
|
|
|
@response = response
|
|
|
|
@message = message
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_s
|
|
|
|
"Failed with #{response.code} #{response.message if response.respond_to?(:message)}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-05-18 06:22:34 +02:00
|
|
|
# Raised when a Timeout::Error occurs.
|
|
|
|
class TimeoutError < ConnectionError
|
|
|
|
def initialize(message)
|
|
|
|
@message = message
|
|
|
|
end
|
|
|
|
def to_s; @message ;end
|
|
|
|
end
|
|
|
|
|
2009-09-05 09:01:46 +02:00
|
|
|
# Raised when a OpenSSL::SSL::SSLError occurs.
|
|
|
|
class SSLError < ConnectionError
|
|
|
|
def initialize(message)
|
|
|
|
@message = message
|
|
|
|
end
|
|
|
|
def to_s; @message ;end
|
|
|
|
end
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
# 3xx Redirection
|
|
|
|
class Redirection < ConnectionError # :nodoc:
|
2008-10-27 07:47:01 +01:00
|
|
|
def to_s; response['Location'] ? "#{super} => #{response['Location']}" : super; end
|
|
|
|
end
|
2007-12-21 08:48:59 +01:00
|
|
|
|
|
|
|
# 4xx Client Error
|
|
|
|
class ClientError < ConnectionError; end # :nodoc:
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
# 400 Bad Request
|
|
|
|
class BadRequest < ClientError; end # :nodoc
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
# 401 Unauthorized
|
|
|
|
class UnauthorizedAccess < ClientError; end # :nodoc
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
# 403 Forbidden
|
|
|
|
class ForbiddenAccess < ClientError; end # :nodoc
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
# 404 Not Found
|
|
|
|
class ResourceNotFound < ClientError; end # :nodoc:
|
2008-10-27 07:47:01 +01:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
# 409 Conflict
|
|
|
|
class ResourceConflict < ClientError; end # :nodoc:
|
|
|
|
|
2009-09-05 09:01:46 +02:00
|
|
|
# 410 Gone
|
|
|
|
class ResourceGone < ClientError; end # :nodoc:
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
# 5xx Server Error
|
|
|
|
class ServerError < ConnectionError; end # :nodoc:
|
|
|
|
|
|
|
|
# 405 Method Not Allowed
|
|
|
|
class MethodNotAllowed < ClientError # :nodoc:
|
|
|
|
def allowed_methods
|
|
|
|
@response['Allow'].split(',').map { |verb| verb.strip.downcase.to_sym }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Class to handle connections to remote web services.
|
|
|
|
# This class is used by ActiveResource::Base to interface with REST
|
|
|
|
# services.
|
|
|
|
class Connection
|
2008-09-07 07:54:05 +02:00
|
|
|
|
|
|
|
HTTP_FORMAT_HEADER_NAMES = { :get => 'Accept',
|
|
|
|
:put => 'Content-Type',
|
|
|
|
:post => 'Content-Type',
|
2009-09-05 09:01:46 +02:00
|
|
|
:delete => 'Accept',
|
|
|
|
:head => 'Accept'
|
2008-09-07 07:54:05 +02:00
|
|
|
}
|
|
|
|
|
2009-09-05 09:01:46 +02:00
|
|
|
attr_reader :site, :user, :password, :timeout, :proxy, :ssl_options
|
2007-12-21 08:48:59 +01:00
|
|
|
attr_accessor :format
|
|
|
|
|
|
|
|
class << self
|
|
|
|
def requests
|
|
|
|
@@requests ||= []
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# The +site+ parameter is required and will set the +site+
|
|
|
|
# attribute to the URI for the remote resource service.
|
|
|
|
def initialize(site, format = ActiveResource::Formats[:xml])
|
|
|
|
raise ArgumentError, 'Missing site URI' unless site
|
2008-05-18 06:22:34 +02:00
|
|
|
@user = @password = nil
|
2007-12-21 08:48:59 +01:00
|
|
|
self.site = site
|
|
|
|
self.format = format
|
|
|
|
end
|
|
|
|
|
|
|
|
# Set URI for remote service.
|
|
|
|
def site=(site)
|
|
|
|
@site = site.is_a?(URI) ? site : URI.parse(site)
|
2008-05-18 06:22:34 +02:00
|
|
|
@user = URI.decode(@site.user) if @site.user
|
|
|
|
@password = URI.decode(@site.password) if @site.password
|
|
|
|
end
|
|
|
|
|
2009-09-05 09:01:46 +02:00
|
|
|
# Set the proxy for remote service.
|
|
|
|
def proxy=(proxy)
|
|
|
|
@proxy = proxy.is_a?(URI) ? proxy : URI.parse(proxy)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Set the user for remote service.
|
2008-05-18 06:22:34 +02:00
|
|
|
def user=(user)
|
|
|
|
@user = user
|
|
|
|
end
|
|
|
|
|
|
|
|
# Set password for remote service.
|
|
|
|
def password=(password)
|
|
|
|
@password = password
|
|
|
|
end
|
|
|
|
|
|
|
|
# Set the number of seconds after which HTTP requests to the remote service should time out.
|
|
|
|
def timeout=(timeout)
|
|
|
|
@timeout = timeout
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
|
|
|
|
2009-09-05 09:01:46 +02:00
|
|
|
# Hash of options applied to Net::HTTP instance when +site+ protocol is 'https'.
|
|
|
|
def ssl_options=(opts={})
|
|
|
|
@ssl_options = opts
|
|
|
|
end
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
# Execute a GET request.
|
|
|
|
# Used to get (find) resources.
|
|
|
|
def get(path, headers = {})
|
2008-09-07 07:54:05 +02:00
|
|
|
format.decode(request(:get, path, build_request_headers(headers, :get)).body)
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
# Execute a DELETE request (see HTTP protocol documentation if unfamiliar).
|
|
|
|
# Used to delete resources.
|
|
|
|
def delete(path, headers = {})
|
2008-09-07 07:54:05 +02:00
|
|
|
request(:delete, path, build_request_headers(headers, :delete))
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
# Execute a PUT request (see HTTP protocol documentation if unfamiliar).
|
|
|
|
# Used to update resources.
|
|
|
|
def put(path, body = '', headers = {})
|
2008-09-07 07:54:05 +02:00
|
|
|
request(:put, path, body.to_s, build_request_headers(headers, :put))
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
# Execute a POST request.
|
|
|
|
# Used to create new resources.
|
|
|
|
def post(path, body = '', headers = {})
|
2008-09-07 07:54:05 +02:00
|
|
|
request(:post, path, body.to_s, build_request_headers(headers, :post))
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
|
|
|
|
2008-05-18 06:22:34 +02:00
|
|
|
# Execute a HEAD request.
|
|
|
|
# Used to obtain meta-information about resources, such as whether they exist and their size (via response headers).
|
|
|
|
def head(path, headers = {})
|
2009-09-05 09:01:46 +02:00
|
|
|
request(:head, path, build_request_headers(headers, :head))
|
2008-05-18 06:22:34 +02:00
|
|
|
end
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
|
|
|
|
private
|
|
|
|
# Makes request to remote service.
|
|
|
|
def request(method, path, *arguments)
|
|
|
|
logger.info "#{method.to_s.upcase} #{site.scheme}://#{site.host}:#{site.port}#{path}" if logger
|
|
|
|
result = nil
|
2009-02-04 21:26:08 +01:00
|
|
|
ms = Benchmark.ms { result = http.send(method, path, *arguments) }
|
|
|
|
logger.info "--> %d %s (%d %.0fms)" % [result.code, result.message, result.body ? result.body.length : 0, ms] if logger
|
2007-12-21 08:48:59 +01:00
|
|
|
handle_response(result)
|
2008-05-18 06:22:34 +02:00
|
|
|
rescue Timeout::Error => e
|
|
|
|
raise TimeoutError.new(e.message)
|
2009-09-05 09:01:46 +02:00
|
|
|
rescue OpenSSL::SSL::SSLError => e
|
|
|
|
raise SSLError.new(e.message)
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
# Handles response and error codes from remote service.
|
|
|
|
def handle_response(response)
|
|
|
|
case response.code.to_i
|
|
|
|
when 301,302
|
|
|
|
raise(Redirection.new(response))
|
|
|
|
when 200...400
|
|
|
|
response
|
|
|
|
when 400
|
|
|
|
raise(BadRequest.new(response))
|
|
|
|
when 401
|
|
|
|
raise(UnauthorizedAccess.new(response))
|
|
|
|
when 403
|
|
|
|
raise(ForbiddenAccess.new(response))
|
|
|
|
when 404
|
|
|
|
raise(ResourceNotFound.new(response))
|
|
|
|
when 405
|
|
|
|
raise(MethodNotAllowed.new(response))
|
|
|
|
when 409
|
|
|
|
raise(ResourceConflict.new(response))
|
2009-09-05 09:01:46 +02:00
|
|
|
when 410
|
|
|
|
raise(ResourceGone.new(response))
|
2007-12-21 08:48:59 +01:00
|
|
|
when 422
|
|
|
|
raise(ResourceInvalid.new(response))
|
|
|
|
when 401...500
|
|
|
|
raise(ClientError.new(response))
|
|
|
|
when 500...600
|
|
|
|
raise(ServerError.new(response))
|
|
|
|
else
|
|
|
|
raise(ConnectionError.new(response, "Unknown response code: #{response.code}"))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Creates new Net::HTTP instance for communication with
|
|
|
|
# remote service and resources.
|
|
|
|
def http
|
2009-09-05 09:01:46 +02:00
|
|
|
configure_http(new_http)
|
|
|
|
end
|
|
|
|
|
|
|
|
def new_http
|
|
|
|
if @proxy
|
|
|
|
Net::HTTP.new(@site.host, @site.port, @proxy.host, @proxy.port, @proxy.user, @proxy.password)
|
|
|
|
else
|
|
|
|
Net::HTTP.new(@site.host, @site.port)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def configure_http(http)
|
|
|
|
http = apply_ssl_options(http)
|
|
|
|
|
|
|
|
# Net::HTTP timeouts default to 60 seconds.
|
|
|
|
if @timeout
|
|
|
|
http.open_timeout = @timeout
|
|
|
|
http.read_timeout = @timeout
|
|
|
|
end
|
|
|
|
|
|
|
|
http
|
|
|
|
end
|
|
|
|
|
|
|
|
def apply_ssl_options(http)
|
|
|
|
return http unless @site.is_a?(URI::HTTPS)
|
|
|
|
|
|
|
|
http.use_ssl = true
|
|
|
|
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
|
|
|
return http unless defined?(@ssl_options)
|
|
|
|
|
|
|
|
http.ca_path = @ssl_options[:ca_path] if @ssl_options[:ca_path]
|
|
|
|
http.ca_file = @ssl_options[:ca_file] if @ssl_options[:ca_file]
|
|
|
|
|
|
|
|
http.cert = @ssl_options[:cert] if @ssl_options[:cert]
|
|
|
|
http.key = @ssl_options[:key] if @ssl_options[:key]
|
|
|
|
|
|
|
|
http.cert_store = @ssl_options[:cert_store] if @ssl_options[:cert_store]
|
|
|
|
http.ssl_timeout = @ssl_options[:ssl_timeout] if @ssl_options[:ssl_timeout]
|
|
|
|
|
|
|
|
http.verify_mode = @ssl_options[:verify_mode] if @ssl_options[:verify_mode]
|
|
|
|
http.verify_callback = @ssl_options[:verify_callback] if @ssl_options[:verify_callback]
|
|
|
|
http.verify_depth = @ssl_options[:verify_depth] if @ssl_options[:verify_depth]
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
http
|
|
|
|
end
|
|
|
|
|
|
|
|
def default_header
|
2008-09-07 07:54:05 +02:00
|
|
|
@default_header ||= {}
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
2008-05-18 06:22:34 +02:00
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
# Builds headers for request to remote service.
|
2008-09-07 07:54:05 +02:00
|
|
|
def build_request_headers(headers, http_method=nil)
|
2008-10-27 07:47:01 +01:00
|
|
|
authorization_header.update(default_header).update(http_format_header(http_method)).update(headers)
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
2008-05-18 06:22:34 +02:00
|
|
|
|
|
|
|
# Sets authorization header
|
2007-12-21 08:48:59 +01:00
|
|
|
def authorization_header
|
2008-05-18 06:22:34 +02:00
|
|
|
(@user || @password ? { 'Authorization' => 'Basic ' + ["#{@user}:#{ @password}"].pack('m').delete("\r\n") } : {})
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
|
|
|
|
2008-09-07 07:54:05 +02:00
|
|
|
def http_format_header(http_method)
|
|
|
|
{HTTP_FORMAT_HEADER_NAMES[http_method] => format.mime_type}
|
|
|
|
end
|
|
|
|
|
2007-12-21 08:48:59 +01:00
|
|
|
def logger #:nodoc:
|
2008-10-27 07:47:01 +01:00
|
|
|
Base.logger
|
2007-12-21 08:48:59 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|