2008-07-27 11:52:18 -04:00
|
|
|
require 'net/http'
|
|
|
|
require 'net/https'
|
|
|
|
require 'uri'
|
2008-07-27 16:35:31 -04:00
|
|
|
require 'ostruct'
|
2008-07-27 11:52:18 -04:00
|
|
|
require 'rubygems'
|
|
|
|
require 'active_support'
|
|
|
|
|
2008-11-08 10:41:32 -05:00
|
|
|
directory = File.dirname(__FILE__)
|
|
|
|
$:.unshift(directory) unless $:.include?(directory) || $:.include?(File.expand_path(directory))
|
2008-09-19 19:31:06 -04:00
|
|
|
|
2008-11-08 13:59:57 -05:00
|
|
|
require 'httparty/request'
|
|
|
|
|
2008-07-28 10:49:53 -04:00
|
|
|
module HTTParty
|
2008-08-22 21:50:51 -04:00
|
|
|
class UnsupportedFormat < StandardError; end
|
2008-09-19 19:31:06 -04:00
|
|
|
class RedirectionTooDeep < StandardError; end
|
2008-11-08 13:59:57 -05:00
|
|
|
|
|
|
|
AllowedFormats = {:xml => 'text/xml', :json => 'application/json'}
|
2008-08-22 21:50:51 -04:00
|
|
|
|
2008-07-27 11:52:18 -04:00
|
|
|
def self.included(base)
|
|
|
|
base.extend ClassMethods
|
|
|
|
end
|
|
|
|
|
2008-11-11 19:28:04 -05:00
|
|
|
module ClassMethods
|
2008-11-08 13:59:57 -05:00
|
|
|
def default_options
|
|
|
|
@@default_options ||= {}
|
|
|
|
end
|
|
|
|
|
2008-08-18 15:48:54 -04:00
|
|
|
#
|
|
|
|
# Set an http proxy
|
|
|
|
#
|
|
|
|
# class Twitter
|
|
|
|
# include HTTParty
|
2008-11-11 19:28:04 -05:00
|
|
|
# http_proxy 'http://myProxy', 1080
|
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
|
|
|
|
default_options[:base_uri] = 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
|
|
|
|
|
2008-07-28 12:40:40 -04:00
|
|
|
def format(f)
|
2008-08-22 21:50:51 -04:00
|
|
|
raise UnsupportedFormat, "Must be one of: #{AllowedFormats.keys.join(', ')}" unless AllowedFormats.key?(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 19:07:11 -05:00
|
|
|
def perform_request(http_method, path, options)
|
2008-11-11 19:25:48 -05:00
|
|
|
Request.new(http_method, path, default_options.merge(options)).perform
|
2008-07-27 14:44:18 -04:00
|
|
|
end
|
|
|
|
|
2008-07-27 11:52:18 -04:00
|
|
|
# Makes it so uri is sure to parse stuff like google.com with the http
|
2008-11-08 11:18:25 -05:00
|
|
|
def normalize_base_uri(url) #:nodoc:
|
|
|
|
use_ssl = (url =~ /^https/) || url.include?(':443')
|
|
|
|
url.chop! if url.ends_with?('/')
|
|
|
|
url.gsub!(/^https?:\/\//i, '')
|
|
|
|
"http#{'s' if use_ssl}://#{url}"
|
2008-07-27 11:52:18 -04:00
|
|
|
end
|
|
|
|
end
|
2008-11-08 12:05:59 -05:00
|
|
|
end
|