2014-03-24 04:25:15 -06:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2018-11-28 04:26:14 -07:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 11:20:29 -07:00
|
|
|
// SPDX-License-Identifier: MIT
|
2014-03-24 04:25:15 -06:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2021-06-07 08:52:59 -06:00
|
|
|
"errors"
|
2020-06-11 17:49:47 -06:00
|
|
|
"fmt"
|
2021-04-05 09:30:52 -06:00
|
|
|
"net/http"
|
2023-03-13 23:11:38 -06:00
|
|
|
"net/url"
|
2017-10-25 18:49:16 -06:00
|
|
|
"strings"
|
|
|
|
|
2017-10-15 13:59:24 -06:00
|
|
|
"code.gitea.io/gitea/models"
|
2022-06-12 09:51:54 -06:00
|
|
|
git_model "code.gitea.io/gitea/models/git"
|
2021-12-09 18:27:50 -07:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-09 12:57:58 -07:00
|
|
|
"code.gitea.io/gitea/models/unit"
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-03-27 03:33:00 -06:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2017-10-25 18:49:16 -06:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2020-01-13 20:38:04 -07:00
|
|
|
repo_module "code.gitea.io/gitea/modules/repository"
|
2021-06-26 05:28:55 -06:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-03-26 13:59:48 -06:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2021-01-26 08:36:53 -07:00
|
|
|
"code.gitea.io/gitea/modules/web"
|
2020-03-27 22:13:18 -06:00
|
|
|
"code.gitea.io/gitea/routers/utils"
|
2021-04-06 13:44:05 -06:00
|
|
|
"code.gitea.io/gitea/services/forms"
|
2021-02-28 12:57:45 -07:00
|
|
|
release_service "code.gitea.io/gitea/services/release"
|
2020-09-11 08:14:48 -06:00
|
|
|
repo_service "code.gitea.io/gitea/services/repository"
|
2014-03-24 04:25:15 -06:00
|
|
|
)
|
|
|
|
|
2014-06-22 21:11:12 -06:00
|
|
|
const (
|
2017-10-25 18:49:16 -06:00
|
|
|
tplBranch base.TplName = "repo/branch/list"
|
2014-06-22 21:11:12 -06:00
|
|
|
)
|
|
|
|
|
2016-11-22 01:32:00 -07:00
|
|
|
// Branches render repository branch page
|
2016-03-11 09:56:52 -07:00
|
|
|
func Branches(ctx *context.Context) {
|
2014-05-25 18:11:25 -06:00
|
|
|
ctx.Data["Title"] = "Branches"
|
|
|
|
ctx.Data["IsRepoToolbarBranches"] = true
|
2019-07-11 14:21:16 -06:00
|
|
|
ctx.Data["AllowsPulls"] = ctx.Repo.Repository.AllowsPulls()
|
2021-11-09 12:57:58 -07:00
|
|
|
ctx.Data["IsWriter"] = ctx.Repo.CanWrite(unit.TypeCode)
|
2017-10-25 18:49:16 -06:00
|
|
|
ctx.Data["IsMirror"] = ctx.Repo.Repository.IsMirror
|
2021-11-22 08:21:55 -07:00
|
|
|
ctx.Data["CanPull"] = ctx.Repo.CanWrite(unit.TypeCode) ||
|
2022-03-22 01:03:22 -06:00
|
|
|
(ctx.IsSigned && repo_model.HasForkedRepo(ctx.Doer.ID, ctx.Repo.Repository.ID))
|
2017-10-25 18:49:16 -06:00
|
|
|
ctx.Data["PageIsViewCode"] = true
|
|
|
|
ctx.Data["PageIsBranches"] = true
|
|
|
|
|
2021-07-28 19:42:15 -06:00
|
|
|
page := ctx.FormInt("page")
|
2021-01-18 21:07:38 -07:00
|
|
|
if page <= 1 {
|
|
|
|
page = 1
|
|
|
|
}
|
2023-03-13 23:11:38 -06:00
|
|
|
pageSize := setting.Git.BranchesRangeSize
|
2021-01-18 21:07:38 -07:00
|
|
|
|
2023-06-29 04:03:20 -06:00
|
|
|
defaultBranch, branches, branchesCount, err := repo_service.LoadBranches(ctx, ctx.Repo.Repository, ctx.Repo.GitRepo, util.OptionalBoolNone, page, pageSize)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("LoadBranches", err)
|
2021-01-18 21:07:38 -07:00
|
|
|
return
|
|
|
|
}
|
2023-06-29 04:03:20 -06:00
|
|
|
|
2023-07-02 21:32:21 -06:00
|
|
|
commitIDs := []string{defaultBranch.DBBranch.CommitID}
|
|
|
|
for _, branch := range branches {
|
|
|
|
commitIDs = append(commitIDs, branch.DBBranch.CommitID)
|
|
|
|
}
|
|
|
|
|
|
|
|
commitStatuses, err := git_model.GetLatestCommitStatusForRepoCommitIDs(ctx, ctx.Repo.Repository.ID, commitIDs)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("LoadBranches", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
commitStatus := make(map[string]*git_model.CommitStatus)
|
|
|
|
for commitID, cs := range commitStatuses {
|
|
|
|
commitStatus[commitID] = git_model.CalcCommitStatus(cs)
|
|
|
|
}
|
|
|
|
|
2021-01-18 21:07:38 -07:00
|
|
|
ctx.Data["Branches"] = branches
|
2023-07-02 21:32:21 -06:00
|
|
|
ctx.Data["CommitStatus"] = commitStatus
|
|
|
|
ctx.Data["CommitStatuses"] = commitStatuses
|
2023-06-29 04:03:20 -06:00
|
|
|
ctx.Data["DefaultBranchBranch"] = defaultBranch
|
|
|
|
pager := context.NewPagination(int(branchesCount), pageSize, page, 5)
|
2021-01-18 21:07:38 -07:00
|
|
|
pager.SetDefaultParams(ctx)
|
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2021-04-05 09:30:52 -06:00
|
|
|
ctx.HTML(http.StatusOK, tplBranch)
|
2017-10-25 18:49:16 -06:00
|
|
|
}
|
2014-05-25 18:11:25 -06:00
|
|
|
|
2017-10-25 18:49:16 -06:00
|
|
|
// DeleteBranchPost responses for delete merged branch
|
|
|
|
func DeleteBranchPost(ctx *context.Context) {
|
|
|
|
defer redirect(ctx)
|
2021-08-10 18:31:13 -06:00
|
|
|
branchName := ctx.FormString("name")
|
2014-03-24 04:25:15 -06:00
|
|
|
|
2023-02-28 15:17:51 -07:00
|
|
|
if err := repo_service.DeleteBranch(ctx, ctx.Doer, ctx.Repo.Repository, ctx.Repo.GitRepo, branchName); err != nil {
|
2021-06-07 08:52:59 -06:00
|
|
|
switch {
|
|
|
|
case git.IsErrBranchNotExist(err):
|
|
|
|
log.Debug("DeleteBranch: Can't delete non existing branch '%s'", branchName)
|
|
|
|
ctx.Flash.Error(ctx.Tr("repo.branch.deletion_failed", branchName))
|
|
|
|
case errors.Is(err, repo_service.ErrBranchIsDefault):
|
|
|
|
log.Debug("DeleteBranch: Can't delete default branch '%s'", branchName)
|
|
|
|
ctx.Flash.Error(ctx.Tr("repo.branch.default_deletion_failed", branchName))
|
2023-01-16 01:00:22 -07:00
|
|
|
case errors.Is(err, git_model.ErrBranchIsProtected):
|
2021-06-07 08:52:59 -06:00
|
|
|
log.Debug("DeleteBranch: Can't delete protected branch '%s'", branchName)
|
|
|
|
ctx.Flash.Error(ctx.Tr("repo.branch.protected_deletion_failed", branchName))
|
|
|
|
default:
|
|
|
|
log.Error("DeleteBranch: %v", err)
|
|
|
|
ctx.Flash.Error(ctx.Tr("repo.branch.deletion_failed", branchName))
|
|
|
|
}
|
2017-10-25 18:49:16 -06:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.branch.deletion_success", branchName))
|
|
|
|
}
|
|
|
|
|
|
|
|
// RestoreBranchPost responses for delete merged branch
|
|
|
|
func RestoreBranchPost(ctx *context.Context) {
|
|
|
|
defer redirect(ctx)
|
|
|
|
|
2021-07-28 19:42:15 -06:00
|
|
|
branchID := ctx.FormInt64("branch_id")
|
2021-08-10 18:31:13 -06:00
|
|
|
branchName := ctx.FormString("name")
|
2017-10-25 18:49:16 -06:00
|
|
|
|
2023-01-08 20:50:54 -07:00
|
|
|
deletedBranch, err := git_model.GetDeletedBranchByID(ctx, ctx.Repo.Repository.ID, branchID)
|
2017-10-25 18:49:16 -06:00
|
|
|
if err != nil {
|
2019-04-02 01:48:31 -06:00
|
|
|
log.Error("GetDeletedBranchByID: %v", err)
|
2017-10-25 18:49:16 -06:00
|
|
|
ctx.Flash.Error(ctx.Tr("repo.branch.restore_failed", branchName))
|
|
|
|
return
|
2022-11-25 13:58:20 -07:00
|
|
|
} else if deletedBranch == nil {
|
|
|
|
log.Debug("RestoreBranch: Can't restore branch[%d] '%s', as it does not exist", branchID, branchName)
|
|
|
|
ctx.Flash.Error(ctx.Tr("repo.branch.restore_failed", branchName))
|
|
|
|
return
|
2017-10-25 18:49:16 -06:00
|
|
|
}
|
|
|
|
|
2021-11-30 13:06:32 -07:00
|
|
|
if err := git.Push(ctx, ctx.Repo.Repository.RepoPath(), git.PushOptions{
|
2020-06-11 17:49:47 -06:00
|
|
|
Remote: ctx.Repo.Repository.RepoPath(),
|
2023-06-29 04:03:20 -06:00
|
|
|
Branch: fmt.Sprintf("%s:%s%s", deletedBranch.CommitID, git.BranchPrefix, deletedBranch.Name),
|
2022-05-08 10:46:32 -06:00
|
|
|
Env: repo_module.PushingEnvironment(ctx.Doer, ctx.Repo.Repository),
|
2020-06-11 17:49:47 -06:00
|
|
|
}); err != nil {
|
2017-10-25 18:49:16 -06:00
|
|
|
if strings.Contains(err.Error(), "already exists") {
|
2021-02-03 12:06:13 -07:00
|
|
|
log.Debug("RestoreBranch: Can't restore branch '%s', since one with same name already exist", deletedBranch.Name)
|
2017-10-25 18:49:16 -06:00
|
|
|
ctx.Flash.Error(ctx.Tr("repo.branch.already_exists", deletedBranch.Name))
|
|
|
|
return
|
|
|
|
}
|
2021-02-03 12:06:13 -07:00
|
|
|
log.Error("RestoreBranch: CreateBranch: %v", err)
|
2017-10-25 18:49:16 -06:00
|
|
|
ctx.Flash.Error(ctx.Tr("repo.branch.restore_failed", deletedBranch.Name))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-26 06:17:31 -07:00
|
|
|
// Don't return error below this
|
2020-09-11 08:14:48 -06:00
|
|
|
if err := repo_service.PushUpdate(
|
2020-10-30 15:59:02 -06:00
|
|
|
&repo_module.PushUpdateOptions{
|
2023-05-25 19:04:48 -06:00
|
|
|
RefFullName: git.RefNameFromBranch(deletedBranch.Name),
|
2019-12-26 06:17:31 -07:00
|
|
|
OldCommitID: git.EmptySHA,
|
2023-06-29 04:03:20 -06:00
|
|
|
NewCommitID: deletedBranch.CommitID,
|
2022-03-22 01:03:22 -06:00
|
|
|
PusherID: ctx.Doer.ID,
|
|
|
|
PusherName: ctx.Doer.Name,
|
2019-12-26 06:17:31 -07:00
|
|
|
RepoUserName: ctx.Repo.Owner.Name,
|
|
|
|
RepoName: ctx.Repo.Repository.Name,
|
|
|
|
}); err != nil {
|
2021-02-03 12:06:13 -07:00
|
|
|
log.Error("RestoreBranch: Update: %v", err)
|
2019-12-26 06:17:31 -07:00
|
|
|
}
|
|
|
|
|
2017-10-25 18:49:16 -06:00
|
|
|
ctx.Flash.Success(ctx.Tr("repo.branch.restore_success", deletedBranch.Name))
|
|
|
|
}
|
|
|
|
|
|
|
|
func redirect(ctx *context.Context) {
|
2023-07-04 12:36:08 -06:00
|
|
|
ctx.JSON(http.StatusOK, map[string]any{
|
2023-03-13 23:11:38 -06:00
|
|
|
"redirect": ctx.Repo.RepoLink + "/branches?page=" + url.QueryEscape(ctx.FormString("page")),
|
2017-10-25 18:49:16 -06:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-10-15 13:59:24 -06:00
|
|
|
// CreateBranch creates new branch in repository
|
2021-01-26 08:36:53 -07:00
|
|
|
func CreateBranch(ctx *context.Context) {
|
2021-04-06 13:44:05 -06:00
|
|
|
form := web.GetForm(ctx).(*forms.NewBranchForm)
|
2017-10-15 13:59:24 -06:00
|
|
|
if !ctx.Repo.CanCreateBranch() {
|
2018-01-10 14:34:17 -07:00
|
|
|
ctx.NotFound("CreateBranch", nil)
|
2017-10-15 13:59:24 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.HasError() {
|
|
|
|
ctx.Flash.Error(ctx.GetErrMsg())
|
2017-10-29 20:04:25 -06:00
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/src/" + ctx.Repo.BranchNameSubURL())
|
2017-10-15 13:59:24 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var err error
|
2021-02-28 12:57:45 -07:00
|
|
|
|
|
|
|
if form.CreateTag {
|
2021-11-17 16:50:17 -07:00
|
|
|
target := ctx.Repo.CommitID
|
|
|
|
if ctx.Repo.IsViewBranch {
|
|
|
|
target = ctx.Repo.BranchName
|
2021-02-28 12:57:45 -07:00
|
|
|
}
|
2022-03-22 01:03:22 -06:00
|
|
|
err = release_service.CreateNewTag(ctx, ctx.Doer, ctx.Repo.Repository, target, form.NewBranchName, "")
|
2021-02-28 12:57:45 -07:00
|
|
|
} else if ctx.Repo.IsViewBranch {
|
2022-03-22 01:03:22 -06:00
|
|
|
err = repo_service.CreateNewBranch(ctx, ctx.Doer, ctx.Repo.Repository, ctx.Repo.BranchName, form.NewBranchName)
|
2017-10-15 13:59:24 -06:00
|
|
|
} else {
|
2022-03-22 01:03:22 -06:00
|
|
|
err = repo_service.CreateNewBranchFromCommit(ctx, ctx.Doer, ctx.Repo.Repository, ctx.Repo.CommitID, form.NewBranchName)
|
2017-10-15 13:59:24 -06:00
|
|
|
}
|
|
|
|
if err != nil {
|
2022-06-16 14:03:03 -06:00
|
|
|
if models.IsErrProtectedTagName(err) {
|
|
|
|
ctx.Flash.Error(ctx.Tr("repo.release.tag_name_protected"))
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/src/" + ctx.Repo.BranchNameSubURL())
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-10-15 13:59:24 -06:00
|
|
|
if models.IsErrTagAlreadyExists(err) {
|
|
|
|
e := err.(models.ErrTagAlreadyExists)
|
|
|
|
ctx.Flash.Error(ctx.Tr("repo.branch.tag_collision", e.TagName))
|
2017-10-29 20:04:25 -06:00
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/src/" + ctx.Repo.BranchNameSubURL())
|
2017-10-15 13:59:24 -06:00
|
|
|
return
|
|
|
|
}
|
2023-06-29 04:03:20 -06:00
|
|
|
if git_model.IsErrBranchAlreadyExists(err) || git.IsErrPushOutOfDate(err) {
|
2020-03-27 22:13:18 -06:00
|
|
|
ctx.Flash.Error(ctx.Tr("repo.branch.branch_already_exists", form.NewBranchName))
|
2017-10-29 20:04:25 -06:00
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/src/" + ctx.Repo.BranchNameSubURL())
|
2017-10-15 13:59:24 -06:00
|
|
|
return
|
|
|
|
}
|
2023-06-29 04:03:20 -06:00
|
|
|
if git_model.IsErrBranchNameConflict(err) {
|
|
|
|
e := err.(git_model.ErrBranchNameConflict)
|
2017-10-15 13:59:24 -06:00
|
|
|
ctx.Flash.Error(ctx.Tr("repo.branch.branch_name_conflict", form.NewBranchName, e.BranchName))
|
2017-10-29 20:04:25 -06:00
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/src/" + ctx.Repo.BranchNameSubURL())
|
2017-10-15 13:59:24 -06:00
|
|
|
return
|
|
|
|
}
|
2020-03-27 22:13:18 -06:00
|
|
|
if git.IsErrPushRejected(err) {
|
|
|
|
e := err.(*git.ErrPushRejected)
|
|
|
|
if len(e.Message) == 0 {
|
|
|
|
ctx.Flash.Error(ctx.Tr("repo.editor.push_rejected_no_message"))
|
|
|
|
} else {
|
2023-07-04 12:36:08 -06:00
|
|
|
flashError, err := ctx.RenderToString(tplAlertDetails, map[string]any{
|
2020-10-20 17:50:10 -06:00
|
|
|
"Message": ctx.Tr("repo.editor.push_rejected"),
|
|
|
|
"Summary": ctx.Tr("repo.editor.push_rejected_summary"),
|
|
|
|
"Details": utils.SanitizeFlashErrorString(e.Message),
|
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("UpdatePullRequest.HTMLString", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Flash.Error(flashError)
|
2020-03-27 22:13:18 -06:00
|
|
|
}
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/src/" + ctx.Repo.BranchNameSubURL())
|
|
|
|
return
|
|
|
|
}
|
2017-10-15 13:59:24 -06:00
|
|
|
|
2018-01-10 14:34:17 -07:00
|
|
|
ctx.ServerError("CreateNewBranch", err)
|
2017-10-15 13:59:24 -06:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-02-28 12:57:45 -07:00
|
|
|
if form.CreateTag {
|
|
|
|
ctx.Flash.Success(ctx.Tr("repo.tag.create_success", form.NewBranchName))
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/src/tag/" + util.PathEscapeSegments(form.NewBranchName))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-10-15 13:59:24 -06:00
|
|
|
ctx.Flash.Success(ctx.Tr("repo.branch.create_success", form.NewBranchName))
|
2022-09-15 07:25:16 -06:00
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/src/branch/" + util.PathEscapeSegments(form.NewBranchName) + "/" + util.PathEscapeSegments(form.CurrentPath))
|
2017-10-15 13:59:24 -06:00
|
|
|
}
|