2021-09-16 13:34:54 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-09-16 13:34:54 +00:00
|
|
|
|
|
|
|
package private
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
|
2021-12-10 01:27:50 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-09-16 13:34:54 +00:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2024-03-08 07:30:10 +00:00
|
|
|
"code.gitea.io/gitea/modules/gitrepo"
|
2021-09-16 13:34:54 +00:00
|
|
|
"code.gitea.io/gitea/modules/private"
|
2024-02-27 07:12:22 +00:00
|
|
|
gitea_context "code.gitea.io/gitea/services/context"
|
2021-09-16 13:34:54 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// SetDefaultBranch updates the default branch
|
|
|
|
func SetDefaultBranch(ctx *gitea_context.PrivateContext) {
|
|
|
|
ownerName := ctx.Params(":owner")
|
|
|
|
repoName := ctx.Params(":repo")
|
|
|
|
branch := ctx.Params(":branch")
|
|
|
|
|
2022-01-19 23:26:57 +00:00
|
|
|
ctx.Repo.Repository.DefaultBranch = branch
|
2024-03-08 07:30:10 +00:00
|
|
|
if err := gitrepo.SetDefaultBranch(ctx, ctx.Repo.Repository, ctx.Repo.Repository.DefaultBranch); err != nil {
|
2021-09-16 13:34:54 +00:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-09-14 17:09:32 +00:00
|
|
|
if err := repo_model.UpdateDefaultBranch(ctx, ctx.Repo.Repository); err != nil {
|
2021-09-16 13:34:54 +00:00
|
|
|
ctx.JSON(http.StatusInternalServerError, private.Response{
|
|
|
|
Err: fmt.Sprintf("Unable to set default branch on repository: %s/%s Error: %v", ownerName, repoName, err),
|
|
|
|
})
|
|
|
|
return
|
|
|
|
}
|
2021-12-15 06:59:57 +00:00
|
|
|
ctx.PlainText(http.StatusOK, "success")
|
2021-09-16 13:34:54 +00:00
|
|
|
}
|