Sha256: 6b6a53269015383a276a677ab213f6925b896ea73799b83061826376c21c36d1
Contents?: true
Size: 1.26 KB
Versions: 2
Compression:
Stored size: 1.26 KB
Contents
require 'uri' module Locomotive module Builder module Httparty class Webservice include ::HTTParty 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 _response = response.parsed_response if _response.respond_to?(:underscore_keys) _response.underscore_keys else _response.collect(&:underscore_keys) end else # TODO: handle errors puts "[Locomotive][Builder][Error] consuming #{path}, #{options.inspect}, response = #{response.inspect}" nil end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
locomotivecms_builder-1.0.0.alpha2 | lib/locomotive/builder/misc/httparty.rb |
locomotivecms_builder-1.0.0.alpha1 | lib/locomotive/builder/misc/httparty.rb |