Sha256: 9bdd6e00d8268d88a0a1256886e8f81bb59a62fbd33252c81cbf19efbf77c36d

Contents?: true

Size: 1.16 KB

Versions: 12

Compression:

Stored size: 1.16 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.empty? ||
          (package_group.package_names - rpms.pluck(:name)).any?
        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

12 entries across 12 versions & 1 rubygems

Version Path
katello-4.3.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.4.0.rc1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.2.2 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.3.0 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.3.0.rc4 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.3.0.rc3 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.3.0.rc2.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.3.0.rc2 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.3.0.rc1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.2.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.2.0.1 app/lib/katello/util/pulpcore_content_filters.rb
katello-4.2.0.1.rc3 app/lib/katello/util/pulpcore_content_filters.rb