Sha256: 59ac74bac15ef80d2f6eea3ef2d446fe6f81ed500f64918c654c9349fb0a5c1f

Contents?: true

Size: 1.12 KB

Versions: 38

Compression:

Stored size: 1.12 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|
          (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

38 entries across 38 versions & 1 rubygems

Version Path
katello-4.0.3 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.0.2.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.0.2 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.0.1.2 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.0.1.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.0.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.0.0 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.0.0.rc3.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.0.0.rc3 app/lib/katello/util/pulpcore_content_filters.rb
katello-3.18.2 app/lib/katello/util/pulpcore_content_filters.rb
katello-3.17.3 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.0.0.rc2 app/lib/katello/util/pulpcore_content_filters.rb
katello-3.18.1.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-3.17.2 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.0.0.rc1 app/lib/katello/util/pulpcore_content_filters.rb
katello-3.18.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-3.18.0 app/lib/katello/util/pulpcore_content_filters.rb
katello-3.17.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-3.16.2 app/lib/katello/util/pulpcore_content_filters.rb
katello-3.18.0.rc2.1 app/lib/katello/util/pulpcore_content_filters.rb