debian-mirror-gitlab/app/graphql/mutations/ci/runners_registration_token/reset.rb
2022-05-07 20:08:51 +05:30

65 lines
1.7 KiB
Ruby

# 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(**args)
{
token: reset_token(**args),
errors: []
}
end
private
def find_object(type:, **args)
id = args[:id]
case type
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(type:, **args)
id = args[:id]
scope = nil
case type
when 'instance_type'
raise Gitlab::Graphql::Errors::ArgumentError, "id must not be specified for '#{type}' scope" if id.present?
scope = ApplicationSetting.current
authorize!(scope)
when 'group_type', 'project_type'
scope = authorized_find!(type: type, id: id)
end
::Ci::Runners::ResetRegistrationTokenService.new(scope, current_user).execute if scope
end
end
end
end
end