Sha256: e115e7edd7d165681a6ea089688e3bd6d8db90553df79597c24e768ff179a3e2

Contents?: true

Size: 1.13 KB

Versions: 1

Compression:

Stored size: 1.13 KB

Contents

module Almodovar
  class ResourceCollection
    include HttpAccessor
    include Enumerable
    
    delegate :inspect, :to => :resources
    
    def initialize(url, auth, xml = nil, options = {})
      @url = url
      @auth = auth
      @xml = xml if options.empty?
      @options = options
    end
    
    def create(attrs = {})
      raise ArgumentError.new("You must specify one only root element which is the type of resource (e.g. `:project => { :name => 'Wadus' }` instead of just `:name => 'Wadus'`)") if attrs.size > 1
      root, body = attrs.first
      response = http.post(url_with_params, body.to_xml(:root => root, :convert_links => true, :skip_links_one_level => true), "Content-Type" => "application/xml")
      check_errors(response, url_with_params)
      Resource.new(nil, @auth, Nokogiri::XML.parse(response.body).root)
    end
    
    private
    
    def resources
      @resources ||= xml.xpath("./*").map { |subnode| Resource.new(subnode.at_xpath("./link[@rel='self']").try(:[], "href"), @auth, subnode, @options) }
    end
    
    def method_missing(meth, *args, &blk)
      resources.send(meth, *args, &blk)
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
almodovar-0.9.8 lib/almodovar/resource_collection.rb