base.rb 12.0 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
      # Do not include any modules in the default element name. This makes it easier to seclude ARes objects
      # in a separate namespace without having to set element_name repeatedly.
      attr_accessor_with_default(:element_name)    { to_s.split("::").last.underscore } #:nodoc:

36 37 38 39 40
      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
41 42 43
      def prefix(options={})
        default = site.path
        default << '/' unless default[-1..-1] == '/'
44
        # generate the actual method based on the current site path
45
        self.prefix = default
46 47
        prefix(options)
      end
48

49 50 51 52 53
      def prefix_source
        prefix # generate #prefix and #prefix_source methods first
        prefix_source
      end

54 55
      # Sets the resource prefix
      #  prefix/collectionname/1.xml
56
      def prefix=(value = '/')
57
        # Replace :placeholders with '#{embedded options[:lookups]}'
58
        prefix_call = value.gsub(/:\w+/) { |key| "\#{options[#{key}]}" }
59 60 61

        # Redefine the new methods.
        code = <<-end_code
62 63
          def prefix_source() "#{value}" end
          def prefix(options={}) "#{prefix_call}" end
64 65
        end_code
        silence_warnings { instance_eval code, __FILE__, __LINE__ }
66
      rescue
67
        logger.error "Couldn't set prefix: #{$!}\n  #{code}"
68
        raise
69
      end
70

71
      alias_method :set_prefix, :prefix=  #:nodoc:
72

73 74
      alias_method :set_element_name, :element_name=  #:nodoc:
      alias_method :set_collection_name, :collection_name=  #:nodoc:
75

76 77 78 79 80 81 82 83 84
      # Gets the element path for the given ID.  If no query_options are given, they are split from the prefix options:
      #
      # Post.element_path(1) # => /posts/1.xml
      # Comment.element_path(1, :post_id => 5) # => /posts/5/comments/1.xml
      # Comment.element_path(1, :post_id => 5, :active => 1) # => /posts/5/comments/1.xml?active=1
      # Comment.element_path(1, {:post_id => 5}, {:active => 1}) # => /posts/5/comments/1.xml?active=1
      def element_path(id, prefix_options = {}, query_options = nil)
        prefix_options, query_options = split_options(prefix_options) if query_options.nil?
        "#{prefix(prefix_options)}#{collection_name}/#{id}.xml#{query_string(query_options)}"
85
      end
86

87 88 89 90 91 92 93 94 95
      # Gets the collection path.  If no query_options are given, they are split from the prefix options:
      #
      # Post.collection_path # => /posts.xml
      # Comment.collection_path(:post_id => 5) # => /posts/5/comments.xml
      # Comment.collection_path(:post_id => 5, :active => 1) # => /posts/5/comments.xml?active=1
      # Comment.collection_path({:post_id => 5}, {:active => 1}) # => /posts/5/comments.xml?active=1
      def collection_path(prefix_options = {}, query_options = nil)
        prefix_options, query_options = split_options(prefix_options) if query_options.nil?
        "#{prefix(prefix_options)}#{collection_name}.xml#{query_string(query_options)}"
96
      end
97

98
      alias_method :set_primary_key, :primary_key=  #:nodoc:
99

100 101 102 103 104 105 106 107 108 109 110
      # 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>.
      #      
111 112
      def create(attributes = {})
        returning(self.new(attributes)) { |res| res.save }        
113 114
      end

115 116 117
      # 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
118
      def find(*arguments)
119 120
        scope   = arguments.slice!(0)
        options = arguments.slice!(0) || {}
121 122

        case scope
123 124 125
          when :all   then find_every(options)
          when :first then find_every(options).first
          else             find_single(scope, options)
126 127
        end
      end
128

129 130
      def delete(id, options = {})
        connection.delete(element_path(id, options))
131 132
      end

133
      # Evalutes to <tt>true</tt> if the resource is found.
134 135 136 137 138 139
      def exists?(id, options = {})
        id && !find_single(id, options).nil?
      rescue ActiveResource::ResourceNotFound
        false
      end

140
      private
141
        # Find every resource.
142
        def find_every(options)
143 144 145 146 147 148 149
          prefix_options, query_options = split_options(options)
          collection = connection.get(collection_path(prefix_options, query_options)) || []
          collection.collect! do |element|
            returning new(element.merge(prefix_options)) do |resource|
              resource.prefix_options = prefix_options
            end
          end
150
        end
151

152 153
        # Find a single resource.
        #  { :person => person1 }
154
        def find_single(scope, options)
155 156 157 158
          prefix_options, query_options = split_options(options)
          returning new(connection.get(element_path(scope, prefix_options, query_options))) do |resource|
            resource.prefix_options = prefix_options
          end
159
        end
160

161
        # Accepts a URI and creates the site URI from that.
162
        def create_site_uri_from(site)
163
          site.is_a?(URI) ? site.dup : URI.parse(site)
164
        end
165

166
        # contains a set of the current prefix parameters.
167 168 169 170
        def prefix_parameters
          @prefix_parameters ||= prefix_source.scan(/:\w+/).map { |key| key[1..-1].to_sym }.to_set
        end

171
        # Builds the query string for the request.
172
        def query_string(options)
173 174 175 176 177 178 179 180 181 182 183
          "?#{options.to_query}" unless options.empty? 
        end

        # split an option hash into two hashes, one containing the prefix options, 
        # and the other containing the leftovers.
        def split_options(options = {})
          prefix_options = {}; query_options = {}
          options.each do |key, value|
            (prefix_parameters.include?(key) ? prefix_options : query_options)[key] = value
          end
          [prefix_options, query_options]
184
        end
185 186
    end

187 188
    attr_accessor :attributes #:nodoc:
    attr_accessor :prefix_options #:nodoc:
189

190 191 192
    def initialize(attributes = {})
      @attributes     = {}
      @prefix_options = {}
193
      load(attributes)
194
    end
195

196
    # Is the resource a new object?
197
    def new?
198 199 200
      id.nil?
    end

201
    # Get the id of the object.
202
    def id
203
      attributes[self.class.primary_key]
204
    end
205

206
    # Set the id of the object.
207
    def id=(id)
208
      attributes[self.class.primary_key] = id
209
    end
210

211
    # 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+.
212 213 214 215 216 217 218 219 220 221 222 223 224 225
    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
226 227 228 229 230 231 232
    
    def dup
      returning new do |resource|
        resource.attributes     = @attributes
        resource.prefix_options = @prefix_options
      end
    end
233

234 235 236
    # Delegates to +create+ if a new object, +update+ if its old. If the response to the save includes a body,
    # it will be assumed that this body is XML for the final object as it looked after the save (which would include
    # attributes like created_at that wasn't part of the original submit).
237
    def save
238
      new? ? create : update
239 240
    end

241
    # Delete the resource.
242
    def destroy
243
      connection.delete(element_path)
244
    end
245

246
    # Evaluates to <tt>true</tt> if this resource is found.
247 248 249 250
    def exists?
      !new? && self.class.exists?(id, prefix_options)
    end

251
    # Convert the resource to an XML string
252 253
    def to_xml(options={})
      attributes.to_xml({:root => self.class.element_name}.merge(options))
254
    end
255 256 257

    # Reloads the attributes of this object from the remote web service.
    def reload
258
      self.load(self.class.find(id, @prefix_options).attributes)
259 260 261 262 263
    end

    # Manually load attributes from a hash. Recursively loads collections of
    # resources.
    def load(attributes)
J
Jeremy Kemper 已提交
264
      raise ArgumentError, "expected an attributes Hash, got #{attributes.inspect}" unless attributes.is_a?(Hash)
265
      @prefix_options, attributes = split_options(attributes)
266 267 268 269 270 271 272
      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
273 274
              resource = find_or_create_resource_for(key)
              resource.new(value)
275 276 277 278
            else
              value.dup rescue value
          end
      end
279 280 281
      self
    end

282 283 284 285
    protected
      def connection(refresh = false)
        self.class.connection(refresh)
      end
286

287
      # Update the resource on the remote service.
288
      def update
289
        connection.put(element_path(prefix_options), to_xml)
290
      end
291

292
      # Create (i.e., save to the remote service) the new resource.
293
      def create
294 295
        returning connection.post(collection_path, to_xml) do |response|
          self.id = id_from_response(response)
296 297 298 299
          
          if response['Content-size'] != "0" && response.body.strip.size > 0
            load(connection.xml_from_response(response))
          end
300
        end
301 302
      end

303
      # Takes a response from a typical create post and pulls the ID out
304 305 306 307
      def id_from_response(response)
        response['Location'][/\/([^\/]*?)(\.\w+)?$/, 1]
      end

308 309 310 311 312 313 314 315
      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

316
    private
317
      # Tries to find a resource for a given collection name; if it fails, then the resource is created
318 319 320
      def find_or_create_resource_for_collection(name)
        find_or_create_resource_for(name.to_s.singularize)
      end
321 322
      
      # Tries to find a resource for a given name; if it fails, then the resource is created
323 324
      def find_or_create_resource_for(name)
        resource_name = name.to_s.camelize
325
        self.class.const_get(resource_name)
326 327 328
      rescue NameError
        resource = self.class.const_set(resource_name, Class.new(ActiveResource::Base))
        resource.prefix = self.class.prefix
329
        resource.site   = self.class.site
330 331 332
        resource
      end

333 334 335 336
      def split_options(options = {})
        self.class.send(:split_options, options)
      end

337
      def method_missing(method_symbol, *arguments) #:nodoc:
338
        method_name = method_symbol.to_s
339

340 341 342 343
        case method_name.last
          when "="
            attributes[method_name.first(-1)] = arguments.first
          when "?"
344
            attributes[method_name.first(-1)] == true
345
          else
346
            attributes.has_key?(method_name) ? attributes[method_name] : super
347 348 349
        end
      end
  end
J
Jeremy Kemper 已提交
350
end