mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 00:11:04 +00:00 
			
		
		
		
	Refs: https://codeberg.org/forgejo/forgejo/pulls/2191 (cherry picked from commit1e89dd95b9) (cherry picked from commitfecc14a16c) (cherry picked from commitb4509aa4c7) (cherry picked from commit6fdf3b2ad1)
		
			
				
	
	
		
			32 lines
		
	
	
	
		
			864 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
	
		
			864 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2023 The Gitea Authors. All rights reserved.
 | 
						|
// SPDX-License-Identifier: MIT
 | 
						|
 | 
						|
package shared
 | 
						|
 | 
						|
import (
 | 
						|
	"errors"
 | 
						|
	"net/http"
 | 
						|
 | 
						|
	actions_model "code.gitea.io/gitea/models/actions"
 | 
						|
	"code.gitea.io/gitea/modules/context"
 | 
						|
	"code.gitea.io/gitea/modules/util"
 | 
						|
)
 | 
						|
 | 
						|
// RegistrationToken is a string used to register a runner with a server
 | 
						|
// swagger:response RegistrationToken
 | 
						|
type RegistrationToken struct {
 | 
						|
	Token string `json:"token"`
 | 
						|
}
 | 
						|
 | 
						|
func GetRegistrationToken(ctx *context.APIContext, ownerID, repoID int64) {
 | 
						|
	token, err := actions_model.GetLatestRunnerToken(ctx, ownerID, repoID)
 | 
						|
	if errors.Is(err, util.ErrNotExist) || (token != nil && !token.IsActive) {
 | 
						|
		token, err = actions_model.NewRunnerToken(ctx, ownerID, repoID)
 | 
						|
	}
 | 
						|
	if err != nil {
 | 
						|
		ctx.InternalServerError(err)
 | 
						|
		return
 | 
						|
	}
 | 
						|
 | 
						|
	ctx.JSON(http.StatusOK, RegistrationToken{Token: token.Token})
 | 
						|
}
 |