Sha256: c15a849816ce681d2c70e99878a91061d037ea250f6d20ddd9dad2fdd637b15d
Contents?: true
Size: 1.26 KB
Versions: 4
Compression:
Stored size: 1.26 KB
Contents
module Katello module Pulp3 class DockerManifest < PulpContentUnit include LazyAccessor def self.content_api PulpDockerClient::ContentManifestsApi.new(Katello::Pulp3::Repository::Docker.api_client(SmartProxy.pulp_master!)) end def self.ids_for_repository(repo_id) repo = Katello::Pulp3::Repository::Docker.new(Katello::Repository.find(repo_id), SmartProxy.pulp_master) repo_content_list = repo.content_list repo_content_list.map { |content| content.try(:pulp_href) } end def self.content_unit_list(page_opts) page_opts[:media_type] = "application/vnd.docker.distribution.manifest.v1+json" data_v1 = self.content_api.list(page_opts) page_opts[:media_type] = "application/vnd.docker.distribution.manifest.v2+json" data_v2 = self.content_api.list(page_opts) filtered = {} filtered["count"] = data_v1.count + data_v2.count filtered["results"] = data_v1.results + data_v2.results filtered end def update_model(model) custom_json = {} custom_json['schema_version'], = backend_data['schema_version'] custom_json['digest'], = backend_data['digest'] model.update_attributes!(custom_json) end end end end
Version data entries
4 entries across 4 versions & 1 rubygems