Sha256: fdfe1f00a14a479529075732b46c8bc4158ee927b7763d96fe914f6edecccd1e
Contents?: true
Size: 1.71 KB
Versions: 9
Compression:
Stored size: 1.71 KB
Contents
module Katello module Concerns module Api::V2::BulkHostsExtensions extend ActiveSupport::Concern def find_bulk_hosts(permission, bulk_params, restrict_to = nil) #works on a structure of param_group bulk_params and transforms it into a list of systems find_organization bulk_params[:included] ||= {} bulk_params[:excluded] ||= {} @hosts = [] unless bulk_params[:included][:ids].blank? @hosts = ::Host::Managed.authorized(permission).where(:id => bulk_params[:included][:ids]) @hosts = @hosts.where(:organization_id => @organization.id) if @organization end if bulk_params[:included][:search] search_hosts = ::Host::Managed.authorized(permission) search_hosts = search_hosts.where(:organization_id => @organization.id) if @organization search_hosts = search_hosts.search_for(bulk_params[:included][:search]) if @hosts.any? @hosts = ::Host.where(id: @hosts).or(::Host.where(id: search_hosts)) else @hosts = search_hosts end end @hosts = restrict_to.call(@hosts) if restrict_to @hosts = @hosts.where.not(id: bulk_params[:excluded][:ids]) unless bulk_params[:excluded][:ids].blank? if bulk_params[:included][:ids].blank? && bulk_params[:included][:search].nil? fail HttpErrors::BadRequest, _("No hosts have been specified.") elsif @hosts.empty? fail HttpErrors::Forbidden, _("Action unauthorized to be performed on selected hosts.") end @hosts end def find_organization @organization ||= Organization.find_by_id(params[:organization_id]) end end end end
Version data entries
9 entries across 9 versions & 1 rubygems