Class: OnSIP::Connection
- Inherits:
-
Object
- Object
- OnSIP::Connection
- Defined in:
- lib/onsip/connection.rb
Constant Summary collapse
- USER_AGENT =
"onsip-client v#{OnSIP::VERSION}"- DEFAULT_OPTIONS =
{ :log_response_headers => false, :log_response_body => false }
Instance Attribute Summary collapse
-
#faraday ⇒ Object
Returns the value of attribute faraday.
-
#options ⇒ Object
Returns the value of attribute options.
Instance Method Summary collapse
- #config_request(request, method, path, params, options) ⇒ Object
- #create_faraday(uri) ⇒ Object
- #delete(path, params = {}, options = {}, &callback) ⇒ Object
- #get(path, params = {}, options = {}, &callback) ⇒ Object
-
#initialize(options = {}) ⇒ Connection
constructor
A new instance of Connection.
- #post(path, params = {}, options = {}, &callback) ⇒ Object
- #put(path, params = {}, options = {}, &callback) ⇒ Object
- #request(method, path, params, options, &callback) ⇒ Object
Constructor Details
#initialize(options = {}) ⇒ Connection
Returns a new instance of Connection.
12 13 14 15 |
# File 'lib/onsip/connection.rb', line 12 def initialize( = {}) @options = DEFAULT_OPTIONS.merge() @faraday = self.create_faraday([:uri]) end |
Instance Attribute Details
#faraday ⇒ Object
Returns the value of attribute faraday.
10 11 12 |
# File 'lib/onsip/connection.rb', line 10 def faraday @faraday end |
#options ⇒ Object
Returns the value of attribute options.
10 11 12 |
# File 'lib/onsip/connection.rb', line 10 def @options end |
Instance Method Details
#config_request(request, method, path, params, options) ⇒ Object
50 51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/onsip/connection.rb', line 50 def config_request(request, method, path, params, ) request.headers['Content-Type'] = 'application/json' case method.to_sym when :delete, :get request.url(path, params) when :post, :put request.path = path request.body = MultiJson.dump(params) unless params.empty? end request end |
#create_faraday(uri) ⇒ Object
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
# File 'lib/onsip/connection.rb', line 17 def create_faraday(uri) @faraday = Faraday.new uri do |c| c.headers['User-Agent'] = USER_AGENT c.request :multipart c.request :url_encoded c.response :json, :content_type => /\bjson$/ c.response :mashify c.response :logger, OnSIP.logger if @options[:log_response_headers] c.use :instrumentation c.adapter Faraday.default_adapter end end |
#delete(path, params = {}, options = {}, &callback) ⇒ Object
68 69 70 |
# File 'lib/onsip/connection.rb', line 68 def delete(path, params={}, ={}, &callback) request(:delete, path, params, , &callback) end |
#get(path, params = {}, options = {}, &callback) ⇒ Object
64 65 66 |
# File 'lib/onsip/connection.rb', line 64 def get(path, params={}, ={}, &callback) request(:get, path, params, , &callback) end |
#post(path, params = {}, options = {}, &callback) ⇒ Object
72 73 74 |
# File 'lib/onsip/connection.rb', line 72 def post(path, params={}, ={}, &callback) request(:post, path, params, , &callback) end |
#put(path, params = {}, options = {}, &callback) ⇒ Object
76 77 78 |
# File 'lib/onsip/connection.rb', line 76 def put(path, params={}, ={}, &callback) request(:put, path, params, , &callback) end |
#request(method, path, params, options, &callback) ⇒ Object
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
# File 'lib/onsip/connection.rb', line 33 def request(method, path, params, , &callback) sent_at = nil response = @faraday.send(method) { |request| sent_at = Time.now request = config_request(request, method, path, params, ) }.on_complete { |env| env[:total_time] = Time.now.utc.to_f - sent_at.utc.to_f if sent_at env[:request_params] = params env[:request_options] = OnSIP.logger.debug env.body if @options[:log_response_body] callback.call(env) if callback } response end |