summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/packages/destroy.rb
blob: 81fa53fc116d6ceef9522dc685ca86a9d6eb5ef9 (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
# frozen_string_literal: true

module Mutations
  module Packages
    class Destroy < ::Mutations::BaseMutation
      graphql_name 'DestroyPackage'

      authorize :destroy_package

      argument :id,
               ::Types::GlobalIDType[::Packages::Package],
               required: true,
               description: 'ID of the Package.'

      def resolve(id:)
        package = authorized_find!(id: id)

        result = ::Packages::MarkPackageForDestructionService.new(container: package, current_user: current_user).execute

        errors = result.error? ? Array.wrap(result[:message]) : []

        {
          errors: errors
        }
      end

      private

      def find_object(id:)
        # TODO: remove this line when the compatibility layer is removed
        # See: https://gitlab.com/gitlab-org/gitlab/-/issues/257883
        id = ::Types::GlobalIDType[::Packages::Package].coerce_isolated_input(id)
        GitlabSchema.find_by_gid(id)
      end
    end
  end
end