lib/runcible/resources/repository.rb in runcible-1.2.0 vs lib/runcible/resources/repository.rb in runcible-1.3.0

- old
+ new

@@ -29,39 +29,39 @@ class Repository < Runcible::Base # Generates the API path for Repositories # # @param [String] id the id of the repository # @return [String] the repository path, may contain the id if passed - def self.path(id=nil) - (id == nil) ? "repositories/" : "repositories/#{id}/" + def self.path(id = nil) + (id.nil?) ? 'repositories/' : "repositories/#{id}/" end # Creates a repository # # @param [String] id the id of the repository # @param [Hash] optional container for all optional parameters # @return [RestClient::Response] - def create(id, optional={}) + def create(id, optional = {}) required = required_params(binding.send(:local_variables), binding) call(:post, path, :payload => { :required => required, :optional => optional }) end # Retrieves a repository # # @param [String] id the id of the repository # @param [Hash] params container for optional query parameters # @return [RestClient::Response] - def retrieve(id, params={}) + def retrieve(id, params = {}) call(:get, path(id), :params => params) end # Updates a repository # # @param [String] id the id of the repository # @param [Hash] optional container for all optional parameters # @return [RestClient::Response] - def update(id, optional={}) + def update(id, optional = {}) call(:put, path(id), :payload => { :delta => optional }) end # Deletes a repository # @@ -73,22 +73,22 @@ # Retrieve all repositories # # @param [Hash] optional container for all optional parameters # @return [RestClient::Response] - def retrieve_all(optional={}) + def retrieve_all(optional = {}) call(:get, path, :payload => { :optional => optional }) end # Searches for repositories based on criteria # # @param [Hash] criteria criteria object containing Mongo syntax # @param [Hash] optional container for all optional parameters # @return [RestClient::Response] - def search(criteria, optional={}) + def search(criteria, optional = {}) required = required_params(binding.send(:local_variables), binding) - call(:post, path("search"), :payload => { :required => required, :optional => optional }) + call(:post, path('search'), :payload => { :required => required, :optional => optional }) end # Associates an importer to a repository # # @param [String] id the ID of the repository @@ -105,21 +105,21 @@ # @param [String] id the ID of the repository # @param [String] distributor_type_id the type ID of the distributor being associated # @param [Hash] distributor_config configuration options for the distributor # @param [Hash] optional container for all optional parameters # @return [RestClient::Response] - def associate_distributor(id, distributor_type_id, distributor_config, optional={}) - required = required_params(binding.send(:local_variables), binding, ["id"]) + def associate_distributor(id, distributor_type_id, distributor_config, optional = {}) + required = required_params(binding.send(:local_variables), binding, ['id']) call(:post, path("#{id}/distributors"), :payload => { :required => required, :optional => optional }) end # Syncs a repository # # @param [String] id the id of the repository # @param [Hash] optional container for all optional parameters # @return [RestClient::Response] - def sync(id, optional={}) + def sync(id, optional = {}) call(:post, "#{path(id)}actions/sync/", :payload => { :optional => optional }) end # History of all sync actions on a repository # @@ -133,44 +133,45 @@ # # @param [String] destination_repo_id the id of the destination repository # @param [String] source_repo_id the id of the source repository # @param [Hash] optional container for all optional parameters # @return [RestClient::Response] - def unit_copy(destination_repo_id, source_repo_id, optional={}) - required = required_params(binding.send(:local_variables), binding, ["destination_repo_id"]) + def unit_copy(destination_repo_id, source_repo_id, optional = {}) + required = required_params(binding.send(:local_variables), binding, ['destination_repo_id']) call(:post, "#{path(destination_repo_id)}actions/associate/", :payload => { :required => required, :optional => optional }) end # Unassociates units from the repository # # @param [String] source_repo_id the id of the source repository # @param [Hash] criteria criteria object containing Mongo syntax # @return [RestClient::Response] - def unassociate_units(source_repo_id, criteria={}) - required = required_params(binding.send(:local_variables), binding, ["source_repo_id"]) + def unassociate_units(source_repo_id, criteria = {}) + required = required_params(binding.send(:local_variables), binding, ['source_repo_id']) call(:post, "#{path(source_repo_id)}actions/unassociate/", :payload => { :required => required }) end # Searches the repository for units based on criteria # # @param [String] id the id of the repository # @param [Hash] criteria criteria object containing Mongo syntax # @return [RestClient::Response] - def unit_search(id, criteria={}) - call(:post, "#{path(id)}search/units/", :payload=>{:required=>{:criteria=>criteria}}) + def unit_search(id, criteria = {}) + call(:post, "#{path(id)}search/units/", :payload => {:required => {:criteria => criteria}}) end # Publishes a repository using the specified distributor # # @param [String] id the id of the repository # @param [String] distributor_id the id of the distributor # @param [Hash] optional optional params # @return [RestClient::Response] - def publish(id, distributor_id, optional={}) - call(:post, "#{path(id)}actions/publish/", :payload=>{:required=>{:id=>distributor_id}, :optional=>optional}) + def publish(id, distributor_id, optional = {}) + call(:post, "#{path(id)}actions/publish/", + :payload => {:required => {:id => distributor_id}, :optional => optional}) end # Deletes the specified distributor from the repository # # @param [String] id the id of the repository @@ -185,11 +186,11 @@ # @param [String] id the id of the repository # @param [String] distributor_id the id of the distributor # @param [Hash] distributor_config attributes to change # @return [RestClient::Response] def update_distributor(id, distributor_id, distributor_config) - required = required_params(binding.send(:local_variables), binding, ["id", "distributor_id"]) + required = required_params(binding.send(:local_variables), binding, ['id', 'distributor_id']) call(:put, path("#{id}/distributors/#{distributor_id}/"), :payload => { :required => required}) end # Deletes the specified importer from the repository # @@ -205,20 +206,19 @@ # @param [String] id the id of the repository # @param [String] importer_id the id of the importer # @param [Hash] importer_config attributes to change # @return [RestClient::Response] def update_importer(id, importer_id, importer_config) - required = required_params(binding.send(:local_variables), binding, ["id", "importer_id"]) + required = required_params(binding.send(:local_variables), binding, ['id', 'importer_id']) call(:put, path("#{id}/importers/#{importer_id}/"), :payload => { :required => required}) end # Regenerate the applicability for consumers bound to a given set of repositories # # @param [Hash] options payload representing criteria # @return [RestClient::Response] def regenerate_applicability(options = {}) - call(:post, path("actions/content/regenerate_applicability/"), :payload => { :required => options}) + call(:post, path('actions/content/regenerate_applicability/'), :payload => { :required => options}) end - end end end