bench-forgejo/routers/repo/commit.go

226 lines
5.3 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
"path"
2014-03-30 21:41:28 +05:30
"github.com/go-martini/martini"
2014-03-27 21:37:22 +05:30
2014-03-24 15:55:15 +05:30
"github.com/gogits/gogs/models"
2014-03-27 22:47:09 +05:30
"github.com/gogits/gogs/modules/base"
2014-03-24 15:55:15 +05:30
"github.com/gogits/gogs/modules/middleware"
)
2014-06-23 08:41:12 +05:30
const (
COMMITS base.TplName = "repo/commits"
DIFF base.TplName = "repo/diff"
)
2014-03-24 15:55:15 +05:30
func Commits(ctx *middleware.Context, params martini.Params) {
2014-05-26 05:41:25 +05:30
ctx.Data["IsRepoToolbarCommits"] = true
2014-04-13 07:05:36 +05:30
userName := ctx.Repo.Owner.Name
repoName := ctx.Repo.Repository.Name
2014-03-27 21:37:22 +05:30
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.Commits(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.Commits(GetBranches)", nil)
2014-03-24 15:55:15 +05:30
return
}
2014-04-13 07:05:36 +05:30
commitsCount, err := ctx.Repo.Commit.CommitsCount()
2014-04-12 05:53:34 +05:30
if err != nil {
ctx.Handle(500, "repo.Commits(GetCommitsCount)", err)
return
}
// Calculate and validate page number.
page, _ := base.StrTo(ctx.Query("p")).Int()
if page < 1 {
page = 1
}
lastPage := page - 1
if lastPage < 0 {
lastPage = 0
}
nextPage := page + 1
if nextPage*50 > commitsCount {
nextPage = 0
}
2014-05-26 05:41:25 +05:30
// Both `git log branchName` and `git log commitId` work.
ctx.Data["Commits"], err = ctx.Repo.Commit.CommitsByRange(page)
2014-04-12 09:22:08 +05:30
if err != nil {
2014-05-13 05:52:35 +05:30
ctx.Handle(500, "repo.Commits(CommitsByRange)", err)
2014-04-12 09:22:08 +05:30
return
}
2014-03-27 21:37:22 +05:30
ctx.Data["Username"] = userName
ctx.Data["Reponame"] = repoName
2014-04-12 05:53:34 +05:30
ctx.Data["CommitCount"] = commitsCount
ctx.Data["LastPageNum"] = lastPage
ctx.Data["NextPageNum"] = nextPage
2014-06-23 08:41:12 +05:30
ctx.HTML(200, COMMITS)
}
func SearchCommits(ctx *middleware.Context, params martini.Params) {
ctx.Data["IsSearchPage"] = true
ctx.Data["IsRepoToolbarCommits"] = true
keyword := ctx.Query("q")
if len(keyword) == 0 {
ctx.Redirect(ctx.Repo.RepoLink + "/commits/" + ctx.Repo.BranchName)
return
}
userName := params["username"]
repoName := params["reponame"]
brs, err := ctx.Repo.GitRepo.GetBranches()
if err != nil {
ctx.Handle(500, "repo.SearchCommits(GetBranches)", err)
return
} else if len(brs) == 0 {
ctx.Handle(404, "repo.SearchCommits(GetBranches)", nil)
return
}
commits, err := ctx.Repo.Commit.SearchCommits(keyword)
if err != nil {
ctx.Handle(500, "repo.SearchCommits(SearchCommits)", err)
return
}
ctx.Data["Keyword"] = keyword
ctx.Data["Username"] = userName
ctx.Data["Reponame"] = repoName
ctx.Data["CommitCount"] = commits.Len()
ctx.Data["Commits"] = commits
ctx.HTML(200, COMMITS)
2014-03-24 15:55:15 +05:30
}
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-05-26 05:41:25 +05:30
ctx.Data["IsRepoToolbarCommits"] = true
2014-03-30 07:43:02 +05:30
userName := ctx.Repo.Owner.Name
repoName := ctx.Repo.Repository.Name
commitId := ctx.Repo.CommitId
2014-03-27 22:47:09 +05:30
2014-03-30 07:43:02 +05:30
commit := ctx.Repo.Commit
2014-03-26 09:23:01 +05:30
2014-03-27 22:47:09 +05:30
diff, err := models.GetDiff(models.RepoPath(userName, repoName), commitId)
2014-03-26 09:23:01 +05:30
if err != nil {
2014-06-23 08:41:12 +05:30
ctx.Handle(404, "repo.Diff(GetDiff)", err)
2014-03-26 09:23:01 +05:30
return
}
2014-03-27 22:47:09 +05:30
isImageFile := func(name string) bool {
2014-04-13 07:05:36 +05:30
blob, err := ctx.Repo.Commit.GetBlobByPath(name)
2014-03-27 22:47:09 +05:30
if err != nil {
return false
}
2014-05-25 17:46:11 +05:30
dataRc, err := blob.Data()
2014-03-27 22:47:09 +05:30
if err != nil {
return false
}
2014-05-25 17:46:11 +05:30
buf := make([]byte, 1024)
n, _ := dataRc.Read(buf)
if n > 0 {
buf = buf[:n]
}
dataRc.Close()
_, isImage := base.IsImageFile(buf)
2014-03-27 22:47:09 +05:30
return isImage
}
2014-04-28 05:13:14 +05:30
parents := make([]string, commit.ParentCount())
for i := 0; i < commit.ParentCount(); i++ {
sha, err := commit.ParentId(i)
parents[i] = sha.String()
if err != nil {
ctx.Handle(404, "repo.Diff", err)
2014-04-29 07:23:40 +05:30
return
2014-04-28 05:13:14 +05:30
}
}
ctx.Data["Username"] = userName
ctx.Data["Reponame"] = repoName
2014-03-27 22:47:09 +05:30
ctx.Data["IsImageFile"] = isImageFile
ctx.Data["Title"] = commit.Summary() + " · " + base.ShortSha(commitId)
2014-03-26 09:23:01 +05:30
ctx.Data["Commit"] = commit
ctx.Data["Diff"] = diff
2014-04-28 05:13:14 +05:30
ctx.Data["Parents"] = parents
2014-04-12 11:15:43 +05:30
ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0
2014-03-27 22:47:09 +05:30
ctx.Data["SourcePath"] = "/" + path.Join(userName, repoName, "src", commitId)
ctx.Data["RawPath"] = "/" + path.Join(userName, repoName, "raw", commitId)
2014-06-23 08:41:12 +05:30
ctx.HTML(200, DIFF)
2014-04-12 05:14:13 +05:30
}
2014-05-13 05:52:35 +05:30
func FileHistory(ctx *middleware.Context, params martini.Params) {
2014-05-26 05:41:25 +05:30
ctx.Data["IsRepoToolbarCommits"] = true
2014-05-13 05:52:35 +05:30
fileName := params["_1"]
if len(fileName) == 0 {
Commits(ctx, params)
return
}
userName := ctx.Repo.Owner.Name
repoName := ctx.Repo.Repository.Name
branchName := params["branchname"]
brs, err := ctx.Repo.GitRepo.GetBranches()
if err != nil {
ctx.Handle(500, "repo.FileHistory", err)
return
} else if len(brs) == 0 {
ctx.Handle(404, "repo.FileHistory", nil)
return
}
commitsCount, err := ctx.Repo.GitRepo.FileCommitsCount(branchName, fileName)
if err != nil {
ctx.Handle(500, "repo.FileHistory(GetCommitsCount)", err)
return
2014-06-23 08:41:12 +05:30
} else if commitsCount == 0 {
2014-05-13 05:52:35 +05:30
ctx.Handle(404, "repo.FileHistory", nil)
return
}
// Calculate and validate page number.
page, _ := base.StrTo(ctx.Query("p")).Int()
if page < 1 {
page = 1
}
lastPage := page - 1
if lastPage < 0 {
lastPage = 0
}
nextPage := page + 1
if nextPage*50 > commitsCount {
nextPage = 0
}
2014-05-26 05:41:25 +05:30
ctx.Data["Commits"], err = ctx.Repo.GitRepo.CommitsByFileAndRange(
branchName, fileName, page)
2014-05-13 05:52:35 +05:30
if err != nil {
ctx.Handle(500, "repo.FileHistory(CommitsByRange)", err)
return
}
ctx.Data["Username"] = userName
ctx.Data["Reponame"] = repoName
ctx.Data["FileName"] = fileName
ctx.Data["CommitCount"] = commitsCount
ctx.Data["LastPageNum"] = lastPage
ctx.Data["NextPageNum"] = nextPage
2014-06-23 08:41:12 +05:30
ctx.HTML(200, COMMITS)
2014-05-13 05:52:35 +05:30
}