Sha256: 0c42a4a5b14d658a58ecf1fb05a574536410c102c9b4bdba04a1b7db0739ba10

Contents?: true

Size: 1.37 KB

Versions: 6

Compression:

Stored size: 1.37 KB

Contents

module Katello
  module Pulp3
    class GenericContentUnit < PulpContentUnit
      include LazyAccessor
      CONTENT_TYPE = "generic".freeze

      def self.fetch_content_list(page_opts, repository_type, content_type)
        content_unit_list page_opts, repository_type, content_type
      end

      def self.content_unit_list(page_opts, repository_type, content_type)
        self.content_api(repository_type, content_type).list page_opts
      end

      def self.content_api(repository_type, content_type)
        repository_type.content_types.find { |type| type.content_type == content_type }.pulp3_api.new(repository_type.pulp3_api_class.new(SmartProxy.pulp_primary!, repository_type).api_client)
      end

      def update_model(model, content_type)
        content_type = ::Katello::RepositoryTypeManager.find_content_type(content_type)

        custom_json = {}
        custom_json['pulp_id'] = backend_data['pulp_href']
        custom_json['name'] = content_type&.model_name&.call(backend_data)
        custom_json['version'] = content_type&.model_version&.call(backend_data)
        custom_json['filename'] = content_type&.model_filename&.call(backend_data)
        custom_json['additional_metadata'] = content_type&.model_additional_metadata&.call(backend_data)
        custom_json['content_type'] = content_type&.label
        model.update!(custom_json)
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
katello-4.3.0 app/services/katello/pulp3/generic_content_unit.rb
katello-4.3.0.rc4 app/services/katello/pulp3/generic_content_unit.rb
katello-4.3.0.rc3 app/services/katello/pulp3/generic_content_unit.rb
katello-4.3.0.rc2.1 app/services/katello/pulp3/generic_content_unit.rb
katello-4.3.0.rc2 app/services/katello/pulp3/generic_content_unit.rb
katello-4.3.0.rc1 app/services/katello/pulp3/generic_content_unit.rb