2008-12-06 22:01:42 -05:00
|
|
|
$:.unshift(File.dirname(__FILE__))
|
|
|
|
|
2008-07-27 11:52:18 -04:00
|
|
|
require 'net/http'
|
|
|
|
require 'net/https'
|
|
|
|
require 'rubygems'
|
2008-12-06 22:16:21 -05:00
|
|
|
gem 'json', '>= 1.1.3'
|
|
|
|
require 'json'
|
2008-12-06 22:51:18 -05:00
|
|
|
|
2008-12-06 19:41:23 -05:00
|
|
|
require 'module_level_inheritable_attributes'
|
2008-12-06 22:47:01 -05:00
|
|
|
require 'core_extensions'
|
2008-11-08 13:59:57 -05:00
|
|
|
|
2009-01-28 14:06:46 -05:00
|
|
|
module HTTParty
|
|
|
|
|
|
|
|
AllowedFormats = {
|
|
|
|
'text/xml' => :xml,
|
|
|
|
'application/xml' => :xml,
|
|
|
|
'application/json' => :json,
|
|
|
|
'text/json' => :json,
|
|
|
|
'application/javascript' => :json,
|
|
|
|
'text/javascript' => :json,
|
|
|
|
'text/html' => :html
|
2009-01-28 14:40:15 -05:00
|
|
|
} unless defined?(AllowedFormats)
|
2008-08-22 21:50:51 -04:00
|
|
|
|
2008-07-27 11:52:18 -04:00
|
|
|
def self.included(base)
|
|
|
|
base.extend ClassMethods
|
2008-11-30 23:58:06 -05:00
|
|
|
base.send :include, ModuleLevelInheritableAttributes
|
|
|
|
base.send(:mattr_inheritable, :default_options)
|
|
|
|
base.instance_variable_set("@default_options", {})
|
2008-07-27 11:52:18 -04:00
|
|
|
end
|
|
|
|
|
2008-12-06 22:47:01 -05:00
|
|
|
module ClassMethods
|
2008-11-08 13:59:57 -05:00
|
|
|
def default_options
|
2008-11-30 23:58:06 -05:00
|
|
|
@default_options
|
2008-11-08 13:59:57 -05:00
|
|
|
end
|
|
|
|
|
2008-08-18 15:48:54 -04:00
|
|
|
def http_proxy(addr=nil, port = nil)
|
2008-11-08 13:59:57 -05:00
|
|
|
default_options[:http_proxyaddr] = addr
|
|
|
|
default_options[:http_proxyport] = port
|
2008-08-18 15:48:54 -04:00
|
|
|
end
|
|
|
|
|
2008-11-08 13:59:57 -05:00
|
|
|
def base_uri(uri=nil)
|
|
|
|
return default_options[:base_uri] unless uri
|
2008-12-06 23:41:28 -05:00
|
|
|
default_options[:base_uri] = HTTParty.normalize_base_uri(uri)
|
2008-07-27 14:44:18 -04:00
|
|
|
end
|
2008-11-08 13:59:57 -05:00
|
|
|
|
2008-07-27 14:44:18 -04:00
|
|
|
def basic_auth(u, p)
|
2008-11-08 13:59:57 -05:00
|
|
|
default_options[:basic_auth] = {:username => u, :password => p}
|
2008-07-27 11:52:18 -04:00
|
|
|
end
|
|
|
|
|
2008-07-28 12:40:40 -04:00
|
|
|
def default_params(h={})
|
|
|
|
raise ArgumentError, 'Default params must be a hash' unless h.is_a?(Hash)
|
2008-11-08 13:59:57 -05:00
|
|
|
default_options[:default_params] ||= {}
|
|
|
|
default_options[:default_params].merge!(h)
|
2008-07-28 12:08:21 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def headers(h={})
|
|
|
|
raise ArgumentError, 'Headers must be a hash' unless h.is_a?(Hash)
|
2008-11-08 13:59:57 -05:00
|
|
|
default_options[:headers] ||= {}
|
|
|
|
default_options[:headers].merge!(h)
|
2008-07-28 12:08:21 -04:00
|
|
|
end
|
2009-01-28 23:54:42 -05:00
|
|
|
|
|
|
|
def cookies(h={})
|
|
|
|
raise ArgumentError, 'Cookies must be a hash' unless h.is_a?(Hash)
|
|
|
|
default_options[:cookies] ||= CookieHash.new
|
|
|
|
default_options[:cookies].add_cookies(h)
|
|
|
|
end
|
2008-07-28 12:08:21 -04:00
|
|
|
|
2008-07-28 12:40:40 -04:00
|
|
|
def format(f)
|
2009-01-28 14:06:46 -05:00
|
|
|
raise UnsupportedFormat, "Must be one of: #{AllowedFormats.values.join(', ')}" unless AllowedFormats.value?(f)
|
2008-11-08 13:59:57 -05:00
|
|
|
default_options[:format] = f
|
2008-07-28 12:40:40 -04:00
|
|
|
end
|
|
|
|
|
2008-07-27 14:44:18 -04:00
|
|
|
def get(path, options={})
|
2008-11-11 19:07:11 -05:00
|
|
|
perform_request Net::HTTP::Get, path, options
|
2008-07-27 14:44:18 -04:00
|
|
|
end
|
2008-07-28 12:40:40 -04:00
|
|
|
|
2008-07-27 14:44:18 -04:00
|
|
|
def post(path, options={})
|
2008-11-11 19:07:11 -05:00
|
|
|
perform_request Net::HTTP::Post, path, options
|
2008-07-27 14:44:18 -04:00
|
|
|
end
|
2008-07-28 12:40:40 -04:00
|
|
|
|
2008-07-27 14:44:18 -04:00
|
|
|
def put(path, options={})
|
2008-11-11 19:07:11 -05:00
|
|
|
perform_request Net::HTTP::Put, path, options
|
2008-07-27 14:44:18 -04:00
|
|
|
end
|
2008-07-28 12:40:40 -04:00
|
|
|
|
2008-07-27 14:44:18 -04:00
|
|
|
def delete(path, options={})
|
2008-11-11 19:07:11 -05:00
|
|
|
perform_request Net::HTTP::Delete, path, options
|
2008-07-27 14:44:18 -04:00
|
|
|
end
|
2008-11-08 13:59:57 -05:00
|
|
|
|
2008-07-27 11:52:18 -04:00
|
|
|
private
|
2008-11-11 23:27:58 -05:00
|
|
|
def perform_request(http_method, path, options) #:nodoc:
|
2009-01-28 23:54:42 -05:00
|
|
|
process_cookies(options)
|
2008-12-06 23:41:28 -05:00
|
|
|
Request.new(http_method, path, default_options.dup.merge(options)).perform
|
2008-07-27 14:44:18 -04:00
|
|
|
end
|
2009-01-28 23:54:42 -05:00
|
|
|
|
|
|
|
def process_cookies(options) #:nodoc:
|
|
|
|
return unless options[:cookies] || default_options[:cookies]
|
|
|
|
options[:headers] ||= {}
|
|
|
|
options[:headers]["cookie"] = cookies(options[:cookies] || {}).to_cookie_string
|
|
|
|
|
|
|
|
default_options.delete(:cookies)
|
|
|
|
options.delete(:cookies)
|
|
|
|
end
|
2008-07-27 11:52:18 -04:00
|
|
|
end
|
2008-12-05 16:13:11 -05:00
|
|
|
|
2008-12-06 23:41:28 -05:00
|
|
|
def self.normalize_base_uri(url) #:nodoc:
|
|
|
|
use_ssl = (url =~ /^https/) || url.include?(':443')
|
|
|
|
ends_with_slash = url =~ /\/$/
|
|
|
|
|
|
|
|
url.chop! if ends_with_slash
|
|
|
|
url.gsub!(/^https?:\/\//i, '')
|
|
|
|
|
|
|
|
"http#{'s' if use_ssl}://#{url}"
|
|
|
|
end
|
|
|
|
|
2008-12-05 16:13:11 -05:00
|
|
|
class Basement
|
|
|
|
include HTTParty
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.get(*args)
|
|
|
|
Basement.get(*args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.post(*args)
|
|
|
|
Basement.post(*args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.put(*args)
|
|
|
|
Basement.put(*args)
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.delete(*args)
|
|
|
|
Basement.delete(*args)
|
|
|
|
end
|
2008-11-08 12:05:59 -05:00
|
|
|
end
|
2008-12-06 22:01:42 -05:00
|
|
|
|
2008-12-06 22:03:28 -05:00
|
|
|
require 'httparty/exceptions'
|
2009-01-28 14:40:15 -05:00
|
|
|
require 'httparty/request'
|
2009-01-28 23:54:42 -05:00
|
|
|
require 'httparty/response'
|
|
|
|
require 'httparty/cookie_hash'
|