Sha256: 221238eee26fd2e2e42f5aefb699f7c8dd02e6aef2e3cc0426ed238cd658d98d

Contents?: true

Size: 1.24 KB

Versions: 64

Compression:

Stored size: 1.24 KB

Contents

module Katello
  module Util
    module PulpcoreContentFilters
      def filter_distribution_trees_by_pulp_hrefs(distributiontree_results, _content_pulp_hrefs)
        distributiontree_results.collect { |result| result.pulp_href }.flatten.uniq
      end

      def filter_package_groups_by_pulp_href(package_groups, package_pulp_hrefs)
        rpms = Katello::Rpm.where(:pulp_id => package_pulp_hrefs)
        package_groups.reject do |package_group|
          #copy the package group as long as we have 1 package from the group
          package_group.package_names.empty? ||
          (package_group.package_names & rpms.pluck(:name)).empty?
        end
      end

      def filter_package_environments_by_pulp_hrefs(packageenvironment_results, package_pulp_hrefs)
        matching_package_env_groups = []

        packageenvironment_results.each do |result|
          if (result.packagegroups & package_pulp_hrefs).any?
            matching_package_env_groups << result.pulp_href
          end
        end

        matching_package_env_groups.flatten.uniq
      end

      def filter_metadatafiles_by_pulp_hrefs(metadatafiles_results, _package_pulp_hrefs)
        metadatafiles_results.collect { |result| result.pulp_href }.flatten.uniq
      end
    end
  end
end

Version data entries

64 entries across 64 versions & 1 rubygems

Version Path
katello-4.14.2 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.15.0 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.15.0.rc2 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.15.0.rc1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.14.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.14.0 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.14.0.rc3 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.14.0.rc2 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.14.0.rc1.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.14.0.rc1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.13.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.13.0 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.12.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.13.0.rc1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.12.0 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.12.0.rc3 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.12.0.rc2 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.12.0.rc1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.11.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.11.0 app/lib/katello/util/pulpcore_content_filters.rb