summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/ci/runners_registration_token/reset.rb
blob: c9fe7ea47f0d0e87972ae8b6bd53556be07c2a69 (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
51
52
53
54
55
56
57
58
59
60
# frozen_string_literal: true

module Mutations
  module Ci
    module RunnersRegistrationToken
      class Reset < BaseMutation
        graphql_name 'RunnersRegistrationTokenReset'

        authorize :update_runners_registration_token

        ScopeID = ::GraphQL::Types::ID

        argument :type, ::Types::Ci::RunnerTypeEnum,
                 required: true,
                 description: 'Scope of the object to reset the token for.'

        argument :id, ScopeID,
          required: false,
          description: 'ID of the project or group to reset the token for. Omit if resetting instance runner token.'

        field :token,
          GraphQL::Types::String,
          null: true,
          description: 'Runner token after mutation.'

        def resolve(type:, id: nil)
          scope = authorized_find!(type: type, id: id)
          new_token = reset_token(scope)

          {
            token: new_token,
            errors: errors_on_object(scope)
          }
        end

        private

        def find_object(type:, id: nil)
          case type
          when 'instance_type'
            raise Gitlab::Graphql::Errors::ArgumentError, "id must not be specified for '#{type}' scope" if id.present?

            ApplicationSetting.current
          when 'group_type'
            GitlabSchema.object_from_id(id, expected_type: ::Group)
          when 'project_type'
            GitlabSchema.object_from_id(id, expected_type: ::Project)
          end
        end

        def reset_token(scope)
          return unless scope

          result = ::Ci::Runners::ResetRegistrationTokenService.new(scope, current_user).execute
          result.payload[:new_registration_token] if result.success?
        end
      end
    end
  end
end