public
Description: Makes http fun! Also, makes consuming restful web services dead easy.
Homepage:
Clone URL: git://github.com/jnunemaker/httparty.git
Click here to lend your support to: httparty and make a donation at www.pledgie.com !
jnunemaker (author)
Sat Dec 06 19:01:42 -0800 2008
commit  80aa3595d504dccb175e35797db6bfada427ee93
tree    02b9906307471c207350b295302e1e1d67d7b530
parent  5ba768e29ab19edebd2122b4bd0c39de536b97d6
httparty / lib / httparty.rb
100644 101 lines (79 sloc) 2.482 kb
1
2
3
4
5
6
7
8
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
$:.unshift(File.dirname(__FILE__))
 
require 'net/http'
require 'net/https'
require 'rubygems'
require 'active_support'
require 'module_level_inheritable_attributes'
 
module HTTParty
  class UnsupportedFormat < StandardError; end
  class RedirectionTooDeep < StandardError; end
  
  AllowedFormats = {:xml => 'text/xml', :json => 'application/json', :html => 'text/html'}
  
  def self.included(base)
    base.extend ClassMethods
    base.send :include, ModuleLevelInheritableAttributes
    base.send(:mattr_inheritable, :default_options)
    base.instance_variable_set("@default_options", {})
  end
  
  module ClassMethods
    def default_options
      @default_options
    end
 
    def http_proxy(addr=nil, port = nil)
      default_options[:http_proxyaddr] = addr
      default_options[:http_proxyport] = port
    end
 
    def base_uri(uri=nil)
      return default_options[:base_uri] unless uri
      default_options[:base_uri] = uri
    end
 
    def basic_auth(u, p)
      default_options[:basic_auth] = {:username => u, :password => p}
    end
    
    def default_params(h={})
      raise ArgumentError, 'Default params must be a hash' unless h.is_a?(Hash)
      default_options[:default_params] ||= {}
      default_options[:default_params].merge!(h)
    end
 
    def headers(h={})
      raise ArgumentError, 'Headers must be a hash' unless h.is_a?(Hash)
      default_options[:headers] ||= {}
      default_options[:headers].merge!(h)
    end
    
    def format(f)
      raise UnsupportedFormat, "Must be one of: #{AllowedFormats.keys.join(', ')}" unless AllowedFormats.key?(f)
      default_options[:format] = f
    end
    
    def get(path, options={})
      perform_request Net::HTTP::Get, path, options
    end
 
    def post(path, options={})
      perform_request Net::HTTP::Post, path, options
    end
 
    def put(path, options={})
      perform_request Net::HTTP::Put, path, options
    end
 
    def delete(path, options={})
      perform_request Net::HTTP::Delete, path, options
    end
 
    private
      def perform_request(http_method, path, options) #:nodoc:
        Request.new(http_method, path, default_options.merge(options)).perform
      end
  end
 
  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
end
 
require 'httparty/request'