bench-forgejo/routers/repo/commit.go

75 lines
2 KiB
Go
Raw Normal View History

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 (
2014-03-27 21:37:22 +05:30
"container/list"
"fmt"
"path"
2014-03-24 15:55:15 +05:30
"github.com/codegangsta/martini"
2014-03-27 21:37:22 +05:30
2014-03-24 15:55:15 +05:30
"github.com/gogits/gogs/models"
"github.com/gogits/gogs/modules/middleware"
)
func Commits(ctx *middleware.Context, params martini.Params) {
2014-03-27 21:37:22 +05:30
userName := params["username"]
repoName := params["reponame"]
branchName := params["branchname"]
brs, err := models.GetBranches(userName, repoName)
2014-03-24 15:55:15 +05:30
if err != nil {
ctx.Handle(200, "repo.Commits", err)
return
} else if len(brs) == 0 {
ctx.Handle(404, "repo.Commits", nil)
return
}
2014-03-27 21:37:22 +05:30
var commits *list.List
if models.IsBranchExist(userName, repoName, branchName) {
commits, err = models.GetCommitsByBranch(userName, repoName, branchName)
} else {
commits, err = models.GetCommitsByCommitId(userName, repoName, branchName)
}
2014-03-24 15:55:15 +05:30
if err != nil {
2014-03-27 21:43:05 +05:30
ctx.Handle(404, "repo.Commits", err)
2014-03-24 15:55:15 +05:30
return
}
2014-03-27 21:37:22 +05:30
ctx.Data["Username"] = userName
ctx.Data["Reponame"] = repoName
2014-03-24 15:55:15 +05:30
ctx.Data["CommitCount"] = commits.Len()
ctx.Data["Commits"] = commits
2014-03-27 21:37:22 +05:30
ctx.Data["IsRepoToolbarCommits"] = true
2014-03-24 15:55:15 +05:30
ctx.HTML(200, "repo/commits")
}
2014-03-24 18:57:19 +05:30
2014-03-26 09:23:01 +05:30
func Diff(ctx *middleware.Context, params martini.Params) {
2014-03-27 21:37:22 +05:30
fmt.Println(params["branchname"])
2014-03-26 09:23:01 +05:30
commit, err := models.GetCommit(params["username"], params["reponame"], params["branchname"], params["commitid"])
if err != nil {
ctx.Handle(404, "repo.Diff", err)
return
}
diff, err := models.GetDiff(models.RepoPath(params["username"], params["reponame"]), params["commitid"])
if err != nil {
ctx.Handle(404, "repo.Diff", err)
return
}
2014-03-27 21:37:22 +05:30
shortSha := params["commitid"][:10]
2014-03-26 09:23:01 +05:30
ctx.Data["Title"] = commit.Message() + " · " + shortSha
ctx.Data["Commit"] = commit
ctx.Data["ShortSha"] = shortSha
ctx.Data["Diff"] = diff
2014-03-24 18:57:19 +05:30
ctx.Data["IsRepoToolbarCommits"] = true
2014-03-27 21:37:22 +05:30
ctx.Data["SourcePath"] = "/" + path.Join(params["username"], params["reponame"], "src", params["commitid"])
2014-03-26 09:23:01 +05:30
ctx.HTML(200, "repo/diff")
2014-03-24 18:57:19 +05:30
}