Sha256: 382abc5ddd9a75a8b86fd530cad6f00e48c18516706f908bcce78afa3e8a542c

Contents?: true

Size: 1.71 KB

Versions: 78

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
        organization = 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 params[:organization_id]
          search_hosts = search_hosts.search_for(bulk_params[:included][:search])
          if @hosts.any?
            ::Host.where("id in (?) OR id in (?)", @hosts, search_hosts)
          else
            @hosts = search_hosts
          end
        end

        @hosts = restrict_to.call(@hosts) if restrict_to
        @hosts = @hosts.where('id not in (?)', 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.find_by_id(params[:organization_id])
      end
    end
  end
end

Version data entries

78 entries across 78 versions & 1 rubygems

Version Path
katello-3.12.3 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.12.2 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.12.1 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.11.2 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.10.2 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.12.0 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.12.0.rc2 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.10.1.1 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.12.0.rc1 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.10.1 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.11.1 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.11.0 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.11.0.rc2 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.11.0.rc1 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.10.0 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.10.0.rc1.1 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.9.1 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.10.0.rc1 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.9.0 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb
katello-3.8.1 app/controllers/katello/concerns/api/v2/bulk_hosts_extensions.rb