Class: ActiveResource::Connection

Inherits:
Object
  • Object
show all
Defined in:
lib/active_resource/connection.rb,
lib/active_resource/http_mock.rb

Overview

Class to handle connections to remote web services. This class is used by ActiveResource::Base to interface with REST services.

Constant Summary collapse

HTTP_FORMAT_HEADER_NAMES =
{  get: "Accept",
  put: "Content-Type",
  post: "Content-Type",
  patch: "Content-Type",
  delete: "Accept",
  head: "Accept"
}

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(site, format = ActiveResource::Formats::JsonFormat, logger: nil) ⇒ Connection

The site parameter is required and will set the site attribute to the URI for the remote resource service.

Raises:

  • (ArgumentError)


34
35
36
37
38
39
40
# File 'lib/active_resource/connection.rb', line 34

def initialize(site, format = ActiveResource::Formats::JsonFormat, logger: nil)
  raise ArgumentError, "Missing site URI" unless site
  @proxy = @user = @password = @bearer_token = nil
  self.site = site
  self.format = format
  self.logger = logger
end

Instance Attribute Details

#auth_typeObject

Returns the value of attribute auth_type.



23
24
25
# File 'lib/active_resource/connection.rb', line 23

def auth_type
  @auth_type
end

#bearer_tokenObject

Returns the value of attribute bearer_token.



23
24
25
# File 'lib/active_resource/connection.rb', line 23

def bearer_token
  @bearer_token
end

#formatObject

Returns the value of attribute format.



24
25
26
# File 'lib/active_resource/connection.rb', line 24

def format
  @format
end

#loggerObject

Returns the value of attribute logger.



24
25
26
# File 'lib/active_resource/connection.rb', line 24

def logger
  @logger
end

#open_timeoutObject

Returns the value of attribute open_timeout.



23
24
25
# File 'lib/active_resource/connection.rb', line 23

def open_timeout
  @open_timeout
end

#passwordObject

Returns the value of attribute password.



23
24
25
# File 'lib/active_resource/connection.rb', line 23

def password
  @password
end

#proxyObject

Returns the value of attribute proxy.



23
24
25
# File 'lib/active_resource/connection.rb', line 23

def proxy
  @proxy
end

#read_timeoutObject

Returns the value of attribute read_timeout.



23
24
25
# File 'lib/active_resource/connection.rb', line 23

def read_timeout
  @read_timeout
end

#siteObject

Returns the value of attribute site.



23
24
25
# File 'lib/active_resource/connection.rb', line 23

def site
  @site
end

#ssl_optionsObject

Returns the value of attribute ssl_options.



23
24
25
# File 'lib/active_resource/connection.rb', line 23

def ssl_options
  @ssl_options
end

#timeoutObject

Returns the value of attribute timeout.



23
24
25
# File 'lib/active_resource/connection.rb', line 23

def timeout
  @timeout
end

#userObject

Returns the value of attribute user.



23
24
25
# File 'lib/active_resource/connection.rb', line 23

def user
  @user
end

Class Method Details

.requestsObject



27
28
29
# File 'lib/active_resource/connection.rb', line 27

def requests
  @@requests ||= []
end

Instance Method Details

#delete(path, headers = {}) ⇒ Object

Executes a DELETE request (see HTTP protocol documentation if unfamiliar). Used to delete resources.



89
90
91
# File 'lib/active_resource/connection.rb', line 89

def delete(path, headers = {})
  with_auth { request(:delete, path, build_request_headers(headers, :delete, self.site.merge(path))) }
end

#get(path, headers = {}) ⇒ Object

Executes a GET request. Used to get (find) resources.



83
84
85
# File 'lib/active_resource/connection.rb', line 83

def get(path, headers = {})
  with_auth { request(:get, path, build_request_headers(headers, :get, self.site.merge(path))) }
end

#head(path, headers = {}) ⇒ Object

Executes a HEAD request. Used to obtain meta-information about resources, such as whether they exist and their size (via response headers).



113
114
115
# File 'lib/active_resource/connection.rb', line 113

def head(path, headers = {})
  with_auth { request(:head, path, build_request_headers(headers, :head, self.site.merge(path))) }
end

#patch(path, body = "", headers = {}) ⇒ Object

Executes a PATCH request (see HTTP protocol documentation if unfamiliar). Used to update resources.



95
96
97
# File 'lib/active_resource/connection.rb', line 95

def patch(path, body = "", headers = {})
  with_auth { request(:patch, path, body.to_s, build_request_headers(headers, :patch, self.site.merge(path))) }
end

#post(path, body = "", headers = {}) ⇒ Object

Executes a POST request. Used to create new resources.



107
108
109
# File 'lib/active_resource/connection.rb', line 107

def post(path, body = "", headers = {})
  with_auth { request(:post, path, body.to_s, build_request_headers(headers, :post, self.site.merge(path))) }
end

#put(path, body = "", headers = {}) ⇒ Object

Executes a PUT request (see HTTP protocol documentation if unfamiliar). Used to update resources.



101
102
103
# File 'lib/active_resource/connection.rb', line 101

def put(path, body = "", headers = {})
  with_auth { request(:put, path, body.to_s, build_request_headers(headers, :put, self.site.merge(path))) }
end