summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/ci/runner/delete.rb
blob: 8d9a5f155057b40df7e668d44595529d60a48791 (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
# frozen_string_literal: true

module Mutations
  module Ci
    module Runner
      class Delete < BaseMutation
        graphql_name 'RunnerDelete'

        authorize :delete_runner

        RunnerID = ::Types::GlobalIDType[::Ci::Runner]

        argument :id, RunnerID,
                 required: true,
                 description: 'ID of the runner to delete.'

        def resolve(id:, **runner_attrs)
          runner = authorized_find!(id)

          error = authenticate_delete_runner!(runner)
          return { errors: [error] } if error

          runner.destroy!

          { errors: runner.errors.full_messages }
        end

        def authenticate_delete_runner!(runner)
          return if current_user.can_admin_all_resources?

          "Runner #{runner.to_global_id} associated with more than one project" if runner.projects.count > 1
        end

        def find_object(id)
          # TODO: remove this line when the compatibility layer is removed
          # See: https://gitlab.com/gitlab-org/gitlab/-/issues/257883
          id = RunnerID.coerce_isolated_input(id)

          GitlabSchema.find_by_gid(id)
        end
      end
    end
  end
end