2014-03-24 15:55:15 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2016-12-25 20:57:25 +05:30
|
|
|
"code.gitea.io/git"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/base"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
2016-12-25 21:49:25 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2014-03-24 15:55:15 +05:30
|
|
|
)
|
|
|
|
|
2014-06-23 08:41:12 +05:30
|
|
|
const (
|
2016-11-22 14:02:00 +05:30
|
|
|
tplBranch base.TplName = "repo/branch"
|
2014-06-23 08:41:12 +05:30
|
|
|
)
|
|
|
|
|
2016-11-22 14:02:00 +05:30
|
|
|
// Branches render repository branch page
|
2016-03-11 22:26:52 +05:30
|
|
|
func Branches(ctx *context.Context) {
|
2014-05-26 05:41:25 +05:30
|
|
|
ctx.Data["Title"] = "Branches"
|
|
|
|
ctx.Data["IsRepoToolbarBranches"] = true
|
|
|
|
|
2014-04-13 07:05:36 +05:30
|
|
|
brs, err := ctx.Repo.GitRepo.GetBranches()
|
2014-03-24 15:55:15 +05:30
|
|
|
if err != nil {
|
2014-06-23 08:41:12 +05:30
|
|
|
ctx.Handle(500, "repo.Branches(GetBranches)", err)
|
2014-03-24 15:55:15 +05:30
|
|
|
return
|
|
|
|
} else if len(brs) == 0 {
|
2014-06-23 08:41:12 +05:30
|
|
|
ctx.Handle(404, "repo.Branches(GetBranches)", nil)
|
2014-03-24 15:55:15 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["Branches"] = brs
|
2016-11-22 14:02:00 +05:30
|
|
|
ctx.HTML(200, tplBranch)
|
2014-03-24 15:55:15 +05:30
|
|
|
}
|
2016-12-25 20:57:25 +05:30
|
|
|
|
|
|
|
// DeleteBranchPost responses for delete merged branch
|
|
|
|
func DeleteBranchPost(ctx *context.Context) {
|
|
|
|
branchName := ctx.Params(":name")
|
2016-12-25 21:49:25 +05:30
|
|
|
commitID := ctx.Query("commit")
|
|
|
|
|
|
|
|
defer func() {
|
|
|
|
redirectTo := ctx.Query("redirect_to")
|
|
|
|
if len(redirectTo) == 0 {
|
|
|
|
redirectTo = ctx.Repo.RepoLink
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.JSON(200, map[string]interface{}{
|
|
|
|
"redirect": redirectTo,
|
|
|
|
})
|
|
|
|
}()
|
|
|
|
|
|
|
|
fullBranchName := ctx.Repo.Owner.Name + "/" + branchName
|
|
|
|
|
|
|
|
if !ctx.Repo.GitRepo.IsBranchExist(branchName) || branchName == "master" {
|
|
|
|
ctx.Flash.Error(ctx.Tr("repo.branch.deletion_failed", fullBranchName))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(commitID) > 0 {
|
|
|
|
branchCommitID, err := ctx.Repo.GitRepo.GetBranchCommitID(branchName)
|
|
|
|
if err != nil {
|
|
|
|
log.Error(4, "GetBranchCommitID: %v", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if branchCommitID != commitID {
|
|
|
|
ctx.Flash.Error(ctx.Tr("repo.branch.delete_branch_has_new_commits", fullBranchName))
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2016-12-25 20:57:25 +05:30
|
|
|
|
|
|
|
if err := ctx.Repo.GitRepo.DeleteBranch(branchName, git.DeleteBranchOptions{
|
|
|
|
Force: false,
|
|
|
|
}); err != nil {
|
2016-12-25 21:49:25 +05:30
|
|
|
log.Error(4, "DeleteBranch: %v", err)
|
|
|
|
ctx.Flash.Error(ctx.Tr("repo.branch.deletion_failed", fullBranchName))
|
2016-12-25 20:57:25 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-25 21:49:25 +05:30
|
|
|
ctx.Flash.Success(ctx.Tr("repo.branch.deletion_success", fullBranchName))
|
2016-12-25 20:57:25 +05:30
|
|
|
}
|