gogs/routers/repo/branch.go

71 lines
1.5 KiB
Go
Raw Normal View History

2014-03-24 14:25:15 +04:00
// 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 (
"github.com/gogits/git-module"
2014-06-23 07:11:12 +04:00
"github.com/gogits/gogs/modules/base"
2016-03-11 19:56:52 +03:00
"github.com/gogits/gogs/modules/context"
"github.com/gogits/gogs/modules/log"
2014-03-24 14:25:15 +04:00
)
2014-06-23 07:11:12 +04:00
const (
BRANCH base.TplName = "repo/branch"
)
2016-03-11 19:56:52 +03:00
func Branches(ctx *context.Context) {
2014-05-26 04:11:25 +04:00
ctx.Data["Title"] = "Branches"
ctx.Data["IsRepoToolbarBranches"] = true
2014-04-13 05:35:36 +04:00
brs, err := ctx.Repo.GitRepo.GetBranches()
2014-03-24 14:25:15 +04:00
if err != nil {
2014-06-23 07:11:12 +04:00
ctx.Handle(500, "repo.Branches(GetBranches)", err)
2014-03-24 14:25:15 +04:00
return
} else if len(brs) == 0 {
2014-06-23 07:11:12 +04:00
ctx.Handle(404, "repo.Branches(GetBranches)", nil)
2014-03-24 14:25:15 +04:00
return
}
ctx.Data["Branches"] = brs
2014-06-23 07:11:12 +04:00
ctx.HTML(200, BRANCH)
2014-03-24 14:25:15 +04:00
}
func DeleteBranchPost(ctx *context.Context) {
branchName := ctx.Params(":name")
commitID := ctx.Query("commit")
defer func() {
redirectTo := ctx.Query("redirect_to")
if len(redirectTo) == 0 {
redirectTo = ctx.Repo.RepoLink
}
ctx.Redirect(redirectTo)
}()
if !ctx.Repo.GitRepo.IsBranchExist(branchName) {
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.pulls.delete_branch_has_new_commits"))
return
}
}
if err := ctx.Repo.GitRepo.DeleteBranch(branchName, git.DeleteBranchOptions{
Force: false,
}); err != nil {
log.Error(4, "DeleteBranch: %v", err)
return
}
}