Class: OnSIP::Connection

Inherits:
Object
  • Object
show all
Defined in:
lib/onsip/connection.rb

Constant Summary collapse

USER_AGENT =
"onsip-client v#{OnSIP::VERSION}"

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(options = {}) ⇒ Connection



8
9
10
11
# File 'lib/onsip/connection.rb', line 8

def initialize(options = {})
  @options = options
  @faraday = self.create_faraday(options[:uri])
end

Instance Attribute Details

#faradayObject

Returns the value of attribute faraday.



6
7
8
# File 'lib/onsip/connection.rb', line 6

def faraday
  @faraday
end

#optionsObject

Returns the value of attribute options.



6
7
8
# File 'lib/onsip/connection.rb', line 6

def options
  @options
end

Instance Method Details

#config_request(request, method, path, params, options) ⇒ Object



45
46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/onsip/connection.rb', line 45

def config_request(request, method, path, params, options)
  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



13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# File 'lib/onsip/connection.rb', line 13

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

    c.use :instrumentation
    c.adapter Faraday.default_adapter
  end
end

#delete(path, params = {}, options = {}, &callback) ⇒ Object



63
64
65
# File 'lib/onsip/connection.rb', line 63

def delete(path, params={}, options={}, &callback)
  request(:delete, path, params, options, &callback)
end

#get(path, params = {}, options = {}, &callback) ⇒ Object



59
60
61
# File 'lib/onsip/connection.rb', line 59

def get(path, params={}, options={}, &callback)
  request(:get, path, params, options, &callback)
end

#post(path, params = {}, options = {}, &callback) ⇒ Object



67
68
69
# File 'lib/onsip/connection.rb', line 67

def post(path, params={}, options={}, &callback)
  request(:post, path, params, options, &callback)
end

#put(path, params = {}, options = {}, &callback) ⇒ Object



71
72
73
# File 'lib/onsip/connection.rb', line 71

def put(path, params={}, options={}, &callback)
  request(:put, path, params, options, &callback)
end

#request(method, path, params, options, &callback) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# File 'lib/onsip/connection.rb', line 29

def request(method, path, params, options, &callback)
  sent_at = nil

  response = @faraday.send(method) { |request|
    sent_at = Time.now
    request = config_request(request, method, path, params, options)
  }.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] = options
    callback.call(env) if callback
  }

  response
end