gitea/routers/repo/commit.go

226 lines
5.3 KiB
Go
Raw Normal View History

2014-03-24 11:25:15 +01: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 (
2014-03-27 17:07:22 +01:00
"path"
2014-03-30 18:11:28 +02:00
"github.com/go-martini/martini"
2014-03-27 17:07:22 +01:00
2014-03-24 11:25:15 +01:00
"github.com/gogits/gogs/models"
2014-03-27 18:17:09 +01:00
"github.com/gogits/gogs/modules/base"
2014-03-24 11:25:15 +01:00
"github.com/gogits/gogs/modules/middleware"
)
2014-06-23 05:11:12 +02:00
const (
COMMITS base.TplName = "repo/commits"
DIFF base.TplName = "repo/diff"
)
2014-03-24 11:25:15 +01:00
func Commits(ctx *middleware.Context, params martini.Params) {
2014-05-26 02:11:25 +02:00
ctx.Data["IsRepoToolbarCommits"] = true
2014-04-13 03:35:36 +02:00
userName := ctx.Repo.Owner.Name
repoName := ctx.Repo.Repository.Name
2014-03-27 17:07:22 +01:00
2014-04-13 03:35:36 +02:00
brs, err := ctx.Repo.GitRepo.GetBranches()
2014-03-24 11:25:15 +01:00
if err != nil {
2014-06-23 05:11:12 +02:00
ctx.Handle(500, "repo.Commits(GetBranches)", err)
2014-03-24 11:25:15 +01:00
return
} else if len(brs) == 0 {
2014-06-23 05:11:12 +02:00
ctx.Handle(404, "repo.Commits(GetBranches)", nil)
2014-03-24 11:25:15 +01:00
return
}
2014-04-13 03:35:36 +02:00
commitsCount, err := ctx.Repo.Commit.CommitsCount()
2014-04-12 02:23:34 +02:00
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 02:11:25 +02:00
// Both `git log branchName` and `git log commitId` work.
ctx.Data["Commits"], err = ctx.Repo.Commit.CommitsByRange(page)
2014-04-12 05:52:08 +02:00
if err != nil {
2014-05-13 02:22:35 +02:00
ctx.Handle(500, "repo.Commits(CommitsByRange)", err)
2014-04-12 05:52:08 +02:00
return
}
2014-03-27 17:07:22 +01:00
ctx.Data["Username"] = userName
ctx.Data["Reponame"] = repoName
2014-04-12 02:23:34 +02:00
ctx.Data["CommitCount"] = commitsCount
ctx.Data["LastPageNum"] = lastPage
ctx.Data["NextPageNum"] = nextPage
2014-06-23 05:11:12 +02:00
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 11:25:15 +01:00
}
2014-03-24 14:27:19 +01:00
2014-03-26 04:53:01 +01:00
func Diff(ctx *middleware.Context, params martini.Params) {
2014-05-26 02:11:25 +02:00
ctx.Data["IsRepoToolbarCommits"] = true
2014-03-30 04:13:02 +02:00
userName := ctx.Repo.Owner.Name
repoName := ctx.Repo.Repository.Name
commitId := ctx.Repo.CommitId
2014-03-27 18:17:09 +01:00
2014-03-30 04:13:02 +02:00
commit := ctx.Repo.Commit
2014-03-26 04:53:01 +01:00
2014-03-27 18:17:09 +01:00
diff, err := models.GetDiff(models.RepoPath(userName, repoName), commitId)
2014-03-26 04:53:01 +01:00
if err != nil {
2014-06-23 05:11:12 +02:00
ctx.Handle(404, "repo.Diff(GetDiff)", err)
2014-03-26 04:53:01 +01:00
return
}
2014-03-27 18:17:09 +01:00
isImageFile := func(name string) bool {
2014-04-13 03:35:36 +02:00
blob, err := ctx.Repo.Commit.GetBlobByPath(name)
2014-03-27 18:17:09 +01:00
if err != nil {
return false
}
2014-05-25 14:16:11 +02:00
dataRc, err := blob.Data()
2014-03-27 18:17:09 +01:00
if err != nil {
return false
}
2014-05-25 14:16:11 +02:00
buf := make([]byte, 1024)
n, _ := dataRc.Read(buf)
if n > 0 {
buf = buf[:n]
}
dataRc.Close()
_, isImage := base.IsImageFile(buf)
2014-03-27 18:17:09 +01:00
return isImage
}
2014-04-28 01:43:14 +02:00
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 03:53:40 +02:00
return
2014-04-28 01:43:14 +02:00
}
}
ctx.Data["Username"] = userName
ctx.Data["Reponame"] = repoName
2014-03-27 18:17:09 +01:00
ctx.Data["IsImageFile"] = isImageFile
ctx.Data["Title"] = commit.Summary() + " · " + base.ShortSha(commitId)
2014-03-26 04:53:01 +01:00
ctx.Data["Commit"] = commit
ctx.Data["Diff"] = diff
2014-04-28 01:43:14 +02:00
ctx.Data["Parents"] = parents
2014-04-12 07:45:43 +02:00
ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0
2014-03-27 18:17:09 +01:00
ctx.Data["SourcePath"] = "/" + path.Join(userName, repoName, "src", commitId)
ctx.Data["RawPath"] = "/" + path.Join(userName, repoName, "raw", commitId)
2014-06-23 05:11:12 +02:00
ctx.HTML(200, DIFF)
2014-04-12 01:44:13 +02:00
}
2014-05-13 02:22:35 +02:00
func FileHistory(ctx *middleware.Context, params martini.Params) {
2014-05-26 02:11:25 +02:00
ctx.Data["IsRepoToolbarCommits"] = true
2014-05-13 02:22:35 +02:00
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 05:11:12 +02:00
} else if commitsCount == 0 {
2014-05-13 02:22:35 +02:00
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 02:11:25 +02:00
ctx.Data["Commits"], err = ctx.Repo.GitRepo.CommitsByFileAndRange(
branchName, fileName, page)
2014-05-13 02:22:35 +02:00
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 05:11:12 +02:00
ctx.HTML(200, COMMITS)
2014-05-13 02:22:35 +02:00
}