mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-31 21:28:11 +09:00 
			
		
		
		
	This PR only does "renaming": * `Route` should be `Router` (and chi router is also called "router") * `Params` should be `PathParam` (to distingush it from URL query param, and to match `FormString`) * Use lower case for private functions to avoid exposing or abusing
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			Go
		
	
	
	
	
	
| // Copyright 2021 The Gitea Authors. All rights reserved.
 | |
| // SPDX-License-Identifier: MIT
 | |
| 
 | |
| package private
 | |
| 
 | |
| import (
 | |
| 	"fmt"
 | |
| 	"net/http"
 | |
| 
 | |
| 	repo_model "code.gitea.io/gitea/models/repo"
 | |
| 	"code.gitea.io/gitea/modules/git"
 | |
| 	"code.gitea.io/gitea/modules/gitrepo"
 | |
| 	"code.gitea.io/gitea/modules/private"
 | |
| 	gitea_context "code.gitea.io/gitea/services/context"
 | |
| )
 | |
| 
 | |
| // SetDefaultBranch updates the default branch
 | |
| func SetDefaultBranch(ctx *gitea_context.PrivateContext) {
 | |
| 	ownerName := ctx.PathParam(":owner")
 | |
| 	repoName := ctx.PathParam(":repo")
 | |
| 	branch := ctx.PathParam(":branch")
 | |
| 
 | |
| 	ctx.Repo.Repository.DefaultBranch = branch
 | |
| 	if err := gitrepo.SetDefaultBranch(ctx, ctx.Repo.Repository, ctx.Repo.Repository.DefaultBranch); err != nil {
 | |
| 		if !git.IsErrUnsupportedVersion(err) {
 | |
| 			ctx.JSON(http.StatusInternalServerError, private.Response{
 | |
| 				Err: fmt.Sprintf("Unable to set default branch on repository: %s/%s Error: %v", ownerName, repoName, err),
 | |
| 			})
 | |
| 			return
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if err := repo_model.UpdateDefaultBranch(ctx, ctx.Repo.Repository); err != nil {
 | |
| 		ctx.JSON(http.StatusInternalServerError, private.Response{
 | |
| 			Err: fmt.Sprintf("Unable to set default branch on repository: %s/%s Error: %v", ownerName, repoName, err),
 | |
| 		})
 | |
| 		return
 | |
| 	}
 | |
| 	ctx.PlainText(http.StatusOK, "success")
 | |
| }
 |