Class: Locomotive::Httparty::Webservice

Inherits:
Object
  • Object
show all
Includes:
HTTParty
Defined in:
lib/locomotive/httparty/webservice.rb

Class Method Summary collapse

Class Method Details

.consume(url, options = {}) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# File 'lib/locomotive/httparty/webservice.rb', line 9

def self.consume(url, options = {})
  url = HTTParty.normalize_base_uri(url)

  uri = URI.parse(url)
  options[:base_uri] = "#{uri.scheme}://#{uri.host}"
  options[:base_uri] += ":#{uri.port}" if uri.port != 80
  path = uri.request_uri

  options.delete(:format) if options[:format] == 'default'

  username, password = options.delete(:username), options.delete(:password)
  options[:basic_auth] = { :username => username, :password => password } if username

  path ||= '/'

  # puts "[WebService] consuming #{path}, #{options.inspect}"

  response = self.get(path, options)

  if response.code == 200
    if response.respond_to?(:underscore_keys)
      response.underscore_keys
    else
      response.collect(&:underscore_keys)
    end
  else
    nil
  end

end