summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/container_repositories/destroy_tags.rb
blob: 12d65f604b8b4faba3f023d6ceaaa10940a63792 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# frozen_string_literal: true

module Mutations
  module ContainerRepositories
    class DestroyTags < ::Mutations::ContainerRepositories::DestroyBase
      LIMIT = 20

      TOO_MANY_TAGS_ERROR_MESSAGE = "Number of tags is greater than #{LIMIT}"

      graphql_name 'DestroyContainerRepositoryTags'

      authorize :destroy_container_image

      argument :id,
               ::Types::GlobalIDType[::ContainerRepository],
               required: true,
               description: 'ID of the container repository.'

      argument :tag_names,
               [GraphQL::STRING_TYPE],
               required: true,
               description: "Container repository tag(s) to delete. Total number can't be greater than #{LIMIT}",
               prepare: ->(tag_names, _) do
                 raise Gitlab::Graphql::Errors::ArgumentError, TOO_MANY_TAGS_ERROR_MESSAGE if tag_names.size > LIMIT

                 tag_names
               end

      field :deleted_tag_names,
            [GraphQL::STRING_TYPE],
            description: 'Deleted container repository tags.',
            null: false

      def resolve(id:, tag_names:)
        container_repository = authorized_find!(id: id)

        result = ::Projects::ContainerRepository::DeleteTagsService
          .new(container_repository.project, current_user, tags: tag_names)
          .execute(container_repository)

        track_event(:delete_tag_bulk, :tag) if result[:status] == :success

        {
          errors: Array(result[:message]),
          deleted_tag_names: result[:deleted] || []
        }
      end
    end
  end
end