2019-03-02 22:35:43 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module API
|
|
|
|
module Entities
|
|
|
|
module ContainerRegistry
|
2019-10-12 21:52:04 +05:30
|
|
|
class Tag < Grape::Entity
|
2019-03-02 22:35:43 +05:30
|
|
|
expose :name
|
|
|
|
expose :path
|
|
|
|
expose :location
|
|
|
|
end
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
class Repository < Grape::Entity
|
2021-01-29 00:20:46 +05:30
|
|
|
include ::API::Helpers::RelatedResourcesHelpers
|
|
|
|
|
2023-01-13 00:05:48 +05:30
|
|
|
expose :id, documentation: { type: 'integer', example: 1 }
|
|
|
|
expose :name, documentation: { type: 'string', example: 'releases' }
|
|
|
|
expose :path, documentation: { type: 'string', example: 'group/project/releases' }
|
|
|
|
expose :project_id, documentation: { type: 'integer', example: 9 }
|
|
|
|
expose :location, documentation: { type: 'string', example: 'gitlab.example.com/group/project/releases' }
|
|
|
|
expose :created_at, documentation: { type: 'dateTime', example: '2019-01-10T13:39:08.229Z' }
|
|
|
|
expose :expiration_policy_started_at, as: :cleanup_policy_started_at, documentation: { type: 'dateTime', example: '2020-08-17T03:12:35.489Z' }
|
2020-06-23 00:09:42 +05:30
|
|
|
expose :tags_count, if: -> (_, options) { options[:tags_count] }
|
2019-10-12 21:52:04 +05:30
|
|
|
expose :tags, using: Tag, if: -> (_, options) { options[:tags] }
|
2021-01-29 00:20:46 +05:30
|
|
|
expose :delete_api_path, if: ->(object, options) { Ability.allowed?(options[:user], :admin_container_image, object) }
|
2022-05-07 20:08:51 +05:30
|
|
|
expose :size, if: -> (_, options) { options[:size] }
|
2021-01-29 00:20:46 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def delete_api_path
|
|
|
|
expose_url api_v4_projects_registry_repositories_path(repository_id: object.id, id: object.project_id)
|
|
|
|
end
|
2019-03-02 22:35:43 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
class TagDetails < Tag
|
|
|
|
expose :revision
|
|
|
|
expose :short_revision
|
|
|
|
expose :digest
|
|
|
|
expose :created_at
|
|
|
|
expose :total_size
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|