Sha256: 87eaac2b7efa58a00931a696616f25c854c0bfd5147f0e59cd4ee54a24613749
Contents?: true
Size: 1.37 KB
Versions: 1
Compression:
Stored size: 1.37 KB
Contents
module StorageRoom class Resource < Model class << self def index_path # :nodoc: "/collections/#{collection_id}/resources" end def show_path(resource_id) # :nodoc: "#{index_path}/#{resource_id}" end def collection_path # :nodoc: "/collections/#{collection_id}" end def collection_id # :nodoc: self.name.gsub('StorageRoom::', '').tableize end def json_name # :nodoc: 'resource' end def search_path(parameters = {}) # :nodoc: parameters.present? ? "#{index_path}?#{parameters.to_query}" : index_path end # Search for objects with specific parameters def search(parameters = {}) Array.load(search_path(parameters)) end end # Sets a resource with a hash from the API. def set_from_api(attributes) super(attributes) self.attributes.each do |k, v| if v.is_a?(Hash) && v[:@type].present? object = StorageRoom.class_for_name(v[:@type]).new object.set_from_api(v) self.attributes[k] = object end end self.attributes end # The collection of a resource def collection Collection.load(self[:@collection_url] || self.class.collection_path) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
storage_room-0.1.1 | lib/storage_room/models/resource.rb |