base.rb 9.5 KB
Newer Older
1
require 'active_resource/connection'
2 3
require 'cgi'
require 'set'
4 5 6

module ActiveResource
  class Base
7
    # The logger for diagnosing and tracing ARes calls.
8 9
    cattr_accessor :logger

10
    class << self
11
      # Gets the URI of the resource's site
12 13 14 15 16 17 18
      def site
        if defined?(@site)
          @site
        elsif superclass != Object and superclass.site
          superclass.site.dup.freeze
        end
      end
J
Jeremy Kemper 已提交
19

20
      # Set the URI for the REST resources
21
      def site=(site)
22
        @connection = nil
23
        @site = create_site_uri_from(site)
24 25
      end

26
      # Base connection to remote service
27 28 29 30
      def connection(refresh = false)
        @connection = Connection.new(site) if refresh || @connection.nil?
        @connection
      end
31

32 33 34 35 36 37
      attr_accessor_with_default(:element_name)    { to_s.underscore } #:nodoc:
      attr_accessor_with_default(:collection_name) { element_name.pluralize } #:nodoc:
      attr_accessor_with_default(:primary_key, 'id') #:nodoc:
      
      # Gets the resource prefix
      #  prefix/collectionname/1.xml
38 39 40
      def prefix(options={})
        default = site.path
        default << '/' unless default[-1..-1] == '/'
41
        self.prefix = default
42 43
        prefix(options)
      end
44

45 46
      # Sets the resource prefix
      #  prefix/collectionname/1.xml
47
      def prefix=(value = '/')
48 49 50 51 52
        prefix_call = value.gsub(/:\w+/) { |key| "\#{options[#{key}]}" }
        instance_eval <<-end_eval, __FILE__, __LINE__
          def prefix_source() "#{value}" end
          def prefix(options={}) "#{prefix_call}" end
        end_eval
53 54 55
      rescue
        logger.error "Couldn't set prefix: #{$!}\n  #{method_decl}"
        raise
56
      end
57

58
      alias_method :set_prefix, :prefix=  #:nodoc:
59

60 61
      alias_method :set_element_name, :element_name=  #:nodoc:
      alias_method :set_collection_name, :collection_name=  #:nodoc:
62 63

      def element_path(id, options = {})
64
        "#{prefix(options)}#{collection_name}/#{id}.xml#{query_string(options)}"
65
      end
66

67
      def collection_path(options = {}) 
68
        "#{prefix(options)}#{collection_name}.xml#{query_string(options)}"
69
      end
70

71
      alias_method :set_primary_key, :primary_key=  #:nodoc:
72

73 74 75 76 77 78 79 80 81 82 83 84 85 86 87
      # Create a new resource instance and request to the remote service
      # that it be saved.  This is equivalent to the following simultaneous calls:
      #
      #   ryan = Person.new(:first => 'ryan')
      #   ryan.save
      #
      # The newly created resource is returned.  If a failure has occurred an
      # exception will be raised (see save).  If the resource is invalid and
      # has not been saved then <tt>resource.valid?</tt> will return <tt>false</tt>,
      # while <tt>resource.new?</tt> will still return <tt>true</tt>.
      #      
      def create(attributes = {}, prefix_options = {})
        returning(self.new(attributes, prefix_options)) { |res| res.save }        
      end

88 89 90
      # Core method for finding resources.  Used similarly to ActiveRecord's find method.
      #  Person.find(1) # => GET /people/1.xml
      #  StreetAddress.find(1, :person_id => 1) # => GET /people/1/street_addresses/1.xml
91
      def find(*arguments)
92 93
        scope   = arguments.slice!(0)
        options = arguments.slice!(0) || {}
94 95

        case scope
96 97 98
          when :all   then find_every(options)
          when :first then find_every(options).first
          else             find_single(scope, options)
99 100
        end
      end
101

102 103 104 105
      def delete(id)
        connection.delete(element_path(id))
      end

106
      # Evalutes to <tt>true</tt> if the resource is found.
107 108 109 110 111 112
      def exists?(id, options = {})
        id && !find_single(id, options).nil?
      rescue ActiveResource::ResourceNotFound
        false
      end

113
      private
114
        # Find every resource.
115
        def find_every(options)
116 117
          collection = connection.get(collection_path(options)) || []
          collection.collect! { |element| new(element, options) }
118
        end
119

120 121
        # Find a single resource.
        #  { :person => person1 }
122
        def find_single(scope, options)
123
          new(connection.get(element_path(scope, options)), options)
124
        end
125

126
        # Accepts a URI and creates the site URI from that.
127
        def create_site_uri_from(site)
128
          site.is_a?(URI) ? site.dup : URI.parse(site)
129
        end
130

131 132 133 134
        def prefix_parameters
          @prefix_parameters ||= prefix_source.scan(/:\w+/).map { |key| key[1..-1].to_sym }.to_set
        end

135
        # Builds the query string for the request.
136 137
        def query_string(options)
          # Omit parameters which appear in the URI path.
138
          query_params = options.reject { |key, value| prefix_parameters.include?(key) }
139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156

          # Accumulate a list of escaped key=value pairs for the given parameters.
          pairs = []
          query_params.each do |key, value|
            key = CGI.escape(key.to_s)

            # a => b becomes a=b
            # a => [b, c] becomes a[]=b&a[]=c
            case value
              when Array
                value.each { |val| pairs << "#{key}[]=#{CGI.escape(val.to_s)}" }
              else
                pairs << "#{key}=#{CGI.escape(value.to_s)}"
            end
          end

          "?#{pairs * '&'}" unless pairs.empty?
        end
157 158
    end

159 160
    attr_accessor :attributes #:nodoc:
    attr_accessor :prefix_options #:nodoc:
161

162
    def initialize(attributes = {}, prefix_options = {})
163 164
      @attributes = {}
      self.load attributes
165
      @prefix_options = prefix_options
166
    end
167

168
    # Is the resource a new object?
169
    def new?
170 171 172
      id.nil?
    end

173
    # Get the id of the object.
174
    def id
175
      attributes[self.class.primary_key]
176
    end
177

178
    # Set the id of the object.
179
    def id=(id)
180
      attributes[self.class.primary_key] = id
181
    end
182

183
    # True if and only if +other+ is the same object or is an instance of the same class, is not +new?+, and has the same +id+.
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
    def ==(other)
      other.equal?(self) || (other.instance_of?(self.class) && !other.new? && other.id == id)
    end

    # Delegates to ==
    def eql?(other)
      self == other
    end

    # Delegates to id in order to allow two resources of the same type and id to work with something like:
    #   [Person.find(1), Person.find(2)] & [Person.find(1), Person.find(4)] # => [Person.find(1)]
    def hash
      id.hash
    end

199
    # Delegates to +create+ if a new object, +update+ if its old.
200
    def save
201
      new? ? create : update
202 203
    end

204
    # Delete the resource.
205
    def destroy
206
      connection.delete(element_path)
207
    end
208

209
    # Evaluates to <tt>true</tt> if this resource is found.
210 211 212 213
    def exists?
      !new? && self.class.exists?(id, prefix_options)
    end

214
    # Convert the resource to an XML string
215 216
    def to_xml(options={})
      attributes.to_xml({:root => self.class.element_name}.merge(options))
217
    end
218 219 220

    # Reloads the attributes of this object from the remote web service.
    def reload
221 222 223 224 225 226
      self.load self.class.find(id, @prefix_options).attributes
    end

    # Manually load attributes from a hash. Recursively loads collections of
    # resources.
    def load(attributes)
J
Jeremy Kemper 已提交
227
      raise ArgumentError, "expected an attributes Hash, got #{attributes.inspect}" unless attributes.is_a?(Hash)
228 229 230 231 232 233 234
      attributes.each do |key, value|
        @attributes[key.to_s] =
          case value
            when Array
              resource = find_or_create_resource_for_collection(key)
              value.map { |attrs| resource.new(attrs) }
            when Hash
235 236
              resource = find_or_create_resource_for(key)
              resource.new(value)
237 238 239 240 241 242
            when ActiveResource::Base
              value.class.new(value.attributes)
            else
              value.dup rescue value
          end
      end
243 244 245
      self
    end

246 247 248 249
    protected
      def connection(refresh = false)
        self.class.connection(refresh)
      end
250

251
      # Update the resource on the remote service.
252
      def update
253
        connection.put(element_path, to_xml)
254
      end
255

256
      # Create (i.e., save to the remote service) the new resource.
257
      def create
258 259 260
        returning connection.post(collection_path, to_xml) do |response|
          self.id = id_from_response(response)
        end
261 262
      end

263
      # Takes a response from a typical create post and pulls the ID out
264 265 266 267
      def id_from_response(response)
        response['Location'][/\/([^\/]*?)(\.\w+)?$/, 1]
      end

268 269 270 271 272 273 274 275
      def element_path(options = nil)
        self.class.element_path(id, options || prefix_options)
      end

      def collection_path(options = nil)
        self.class.collection_path(options || prefix_options)
      end

276
    private
277
      # Tries to find a resource for a given collection name; if it fails, then the resource is created
278 279 280
      def find_or_create_resource_for_collection(name)
        find_or_create_resource_for(name.to_s.singularize)
      end
281 282
      
      # Tries to find a resource for a given name; if it fails, then the resource is created
283 284 285 286 287 288
      def find_or_create_resource_for(name)
        resource_name = name.to_s.camelize
        resource_name.constantize
      rescue NameError
        resource = self.class.const_set(resource_name, Class.new(ActiveResource::Base))
        resource.prefix = self.class.prefix
289
        resource.site   = self.class.site
290 291 292
        resource
      end

293
      def method_missing(method_symbol, *arguments) #:nodoc:
294
        method_name = method_symbol.to_s
295

296 297 298 299
        case method_name.last
          when "="
            attributes[method_name.first(-1)] = arguments.first
          when "?"
300
            attributes[method_name.first(-1)] == true
301
          else
302
            attributes.has_key?(method_name) ? attributes[method_name] : super
303 304 305
        end
      end
  end
J
Jeremy Kemper 已提交
306
end