2014-03-24 15:55:15 +05:30
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2019-04-20 09:45:19 +05:30
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2014-03-24 15:55:15 +05:30
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package repo
|
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
import (
|
2021-04-01 10:47:14 +05:30
|
|
|
"errors"
|
2021-04-05 21:00:52 +05:30
|
|
|
"net/http"
|
2014-07-26 11:58:04 +05:30
|
|
|
"path"
|
2017-02-11 09:30:01 +05:30
|
|
|
"strings"
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/gitea/modules/base"
|
2019-08-15 17:37:28 +05:30
|
|
|
"code.gitea.io/gitea/modules/charset"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-03-27 15:03:00 +05:30
|
|
|
"code.gitea.io/gitea/modules/git"
|
2019-11-16 06:17:57 +05:30
|
|
|
"code.gitea.io/gitea/modules/gitgraph"
|
2017-09-14 12:21:32 +05:30
|
|
|
"code.gitea.io/gitea/modules/log"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2019-09-06 07:50:09 +05:30
|
|
|
"code.gitea.io/gitea/services/gitdiff"
|
2014-07-26 11:58:04 +05:30
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2019-06-08 01:59:29 +05:30
|
|
|
tplCommits base.TplName = "repo/commits"
|
|
|
|
tplGraph base.TplName = "repo/graph"
|
2020-11-08 22:51:54 +05:30
|
|
|
tplGraphDiv base.TplName = "repo/graph/div"
|
2019-06-08 01:59:29 +05:30
|
|
|
tplCommitPage base.TplName = "repo/commit_page"
|
2014-07-26 11:58:04 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// RefCommits render commits page
|
2016-03-11 22:26:52 +05:30
|
|
|
func RefCommits(ctx *context.Context) {
|
2014-11-07 08:36:41 +05:30
|
|
|
switch {
|
2016-08-25 10:05:03 +05:30
|
|
|
case len(ctx.Repo.TreePath) == 0:
|
2014-11-07 08:36:41 +05:30
|
|
|
Commits(ctx)
|
2016-08-25 10:05:03 +05:30
|
|
|
case ctx.Repo.TreePath == "search":
|
2014-11-07 08:36:41 +05:30
|
|
|
SearchCommits(ctx)
|
|
|
|
default:
|
|
|
|
FileHistory(ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Commits render branch's commits
|
2016-03-11 22:26:52 +05:30
|
|
|
func Commits(ctx *context.Context) {
|
2015-08-20 17:48:49 +05:30
|
|
|
ctx.Data["PageIsCommits"] = true
|
2017-07-31 06:53:10 +05:30
|
|
|
if ctx.Repo.Commit == nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("Commit not found", nil)
|
2017-07-31 06:53:10 +05:30
|
|
|
return
|
|
|
|
}
|
2017-10-26 06:19:16 +05:30
|
|
|
ctx.Data["PageIsViewCode"] = true
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2017-10-26 07:07:33 +05:30
|
|
|
commitsCount, err := ctx.Repo.GetCommitsCount()
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetCommitsCount", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-07-29 07:12:15 +05:30
|
|
|
page := ctx.FormInt("page")
|
2015-08-20 17:48:49 +05:30
|
|
|
if page <= 1 {
|
2014-07-26 11:58:04 +05:30
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
2021-07-29 07:12:15 +05:30
|
|
|
pageSize := ctx.FormInt("limit")
|
2020-01-25 00:30:29 +05:30
|
|
|
if pageSize <= 0 {
|
2021-06-26 16:58:55 +05:30
|
|
|
pageSize = setting.Git.CommitsRangeSize
|
2020-01-25 00:30:29 +05:30
|
|
|
}
|
|
|
|
|
2014-07-26 11:58:04 +05:30
|
|
|
// Both `git log branchName` and `git log commitId` work.
|
2020-01-25 00:30:29 +05:30
|
|
|
commits, err := ctx.Repo.Commit.CommitsByRange(page, pageSize)
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("CommitsByRange", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
2021-08-09 23:38:51 +05:30
|
|
|
ctx.Data["Commits"] = models.ConvertFromGitCommit(commits, ctx.Repo.Repository)
|
2015-11-11 03:16:17 +05:30
|
|
|
|
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name
|
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name
|
2014-07-26 11:58:04 +05:30
|
|
|
ctx.Data["CommitCount"] = commitsCount
|
2015-11-11 03:16:17 +05:30
|
|
|
ctx.Data["Branch"] = ctx.Repo.BranchName
|
2019-04-20 09:45:19 +05:30
|
|
|
|
2021-06-26 16:58:55 +05:30
|
|
|
pager := context.NewPagination(int(commitsCount), setting.Git.CommitsRangeSize, page, 5)
|
2019-04-20 09:45:19 +05:30
|
|
|
pager.SetDefaultParams(ctx)
|
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.HTML(http.StatusOK, tplCommits)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
2016-12-29 05:14:32 +05:30
|
|
|
// Graph render commit graph - show commits from all branches.
|
|
|
|
func Graph(ctx *context.Context) {
|
2020-11-08 22:51:54 +05:30
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.commit_graph")
|
2016-12-29 05:14:32 +05:30
|
|
|
ctx.Data["PageIsCommits"] = true
|
2017-10-26 06:19:16 +05:30
|
|
|
ctx.Data["PageIsViewCode"] = true
|
2021-07-29 07:12:15 +05:30
|
|
|
mode := strings.ToLower(ctx.FormTrim("mode"))
|
2020-08-06 13:34:08 +05:30
|
|
|
if mode != "monochrome" {
|
|
|
|
mode = "color"
|
|
|
|
}
|
|
|
|
ctx.Data["Mode"] = mode
|
2021-07-29 07:12:15 +05:30
|
|
|
hidePRRefs := ctx.FormBool("hide-pr-refs")
|
2020-11-08 22:51:54 +05:30
|
|
|
ctx.Data["HidePRRefs"] = hidePRRefs
|
2021-07-29 07:12:15 +05:30
|
|
|
branches := ctx.FormStrings("branch")
|
2020-11-08 22:51:54 +05:30
|
|
|
realBranches := make([]string, len(branches))
|
|
|
|
copy(realBranches, branches)
|
|
|
|
for i, branch := range realBranches {
|
|
|
|
if strings.HasPrefix(branch, "--") {
|
|
|
|
realBranches[i] = "refs/heads/" + branch
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["SelectedBranches"] = realBranches
|
2021-07-29 07:12:15 +05:30
|
|
|
files := ctx.FormStrings("file")
|
2016-12-29 05:14:32 +05:30
|
|
|
|
2017-10-26 07:07:33 +05:30
|
|
|
commitsCount, err := ctx.Repo.GetCommitsCount()
|
2016-12-29 05:14:32 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetCommitsCount", err)
|
2016-12-29 05:14:32 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-11-08 22:51:54 +05:30
|
|
|
graphCommitsCount, err := ctx.Repo.GetCommitGraphsCount(hidePRRefs, realBranches, files)
|
2019-11-07 23:39:51 +05:30
|
|
|
if err != nil {
|
2020-11-08 22:51:54 +05:30
|
|
|
log.Warn("GetCommitGraphsCount error for generate graph exclude prs: %t branches: %s in %-v, Will Ignore branches and try again. Underlying Error: %v", hidePRRefs, branches, ctx.Repo.Repository, err)
|
|
|
|
realBranches = []string{}
|
|
|
|
branches = []string{}
|
|
|
|
graphCommitsCount, err = ctx.Repo.GetCommitGraphsCount(hidePRRefs, realBranches, files)
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetCommitGraphsCount", err)
|
|
|
|
return
|
|
|
|
}
|
2019-11-07 23:39:51 +05:30
|
|
|
}
|
|
|
|
|
2021-07-29 07:12:15 +05:30
|
|
|
page := ctx.FormInt("page")
|
2019-10-15 03:08:35 +05:30
|
|
|
|
2020-11-08 22:51:54 +05:30
|
|
|
graph, err := gitgraph.GetCommitGraph(ctx.Repo.GitRepo, page, 0, hidePRRefs, realBranches, files)
|
2016-12-29 05:14:32 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetCommitGraph", err)
|
2016-12-29 05:14:32 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-11-08 22:51:54 +05:30
|
|
|
if err := graph.LoadAndProcessCommits(ctx.Repo.Repository, ctx.Repo.GitRepo); err != nil {
|
|
|
|
ctx.ServerError("LoadAndProcessCommits", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-29 05:14:32 +05:30
|
|
|
ctx.Data["Graph"] = graph
|
2020-11-08 22:51:54 +05:30
|
|
|
|
|
|
|
gitRefs, err := ctx.Repo.GitRepo.GetRefs()
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GitRepo.GetRefs", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["AllRefs"] = gitRefs
|
|
|
|
|
2016-12-29 05:14:32 +05:30
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name
|
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name
|
|
|
|
ctx.Data["CommitCount"] = commitsCount
|
|
|
|
ctx.Data["Branch"] = ctx.Repo.BranchName
|
2020-11-08 22:51:54 +05:30
|
|
|
paginator := context.NewPagination(int(graphCommitsCount), setting.UI.GraphMaxCommitNum, page, 5)
|
2020-08-06 13:34:08 +05:30
|
|
|
paginator.AddParam(ctx, "mode", "Mode")
|
2020-11-08 22:51:54 +05:30
|
|
|
paginator.AddParam(ctx, "hide-pr-refs", "HidePRRefs")
|
|
|
|
for _, branch := range branches {
|
|
|
|
paginator.AddParamString("branch", branch)
|
|
|
|
}
|
|
|
|
for _, file := range files {
|
|
|
|
paginator.AddParamString("file", file)
|
|
|
|
}
|
2020-08-06 13:34:08 +05:30
|
|
|
ctx.Data["Page"] = paginator
|
2021-07-29 07:12:15 +05:30
|
|
|
if ctx.FormBool("div-only") {
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.HTML(http.StatusOK, tplGraphDiv)
|
2020-11-08 22:51:54 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.HTML(http.StatusOK, tplGraph)
|
2016-12-29 05:14:32 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// SearchCommits render commits filtered by keyword
|
2016-03-11 22:26:52 +05:30
|
|
|
func SearchCommits(ctx *context.Context) {
|
2015-08-20 17:48:49 +05:30
|
|
|
ctx.Data["PageIsCommits"] = true
|
2017-10-26 06:19:16 +05:30
|
|
|
ctx.Data["PageIsViewCode"] = true
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2021-08-11 20:38:52 +05:30
|
|
|
query := ctx.FormTrim("q")
|
2019-04-12 07:58:44 +05:30
|
|
|
if len(query) == 0 {
|
2017-10-30 07:34:25 +05:30
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/commits/" + ctx.Repo.BranchNameSubURL())
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-07-29 07:12:15 +05:30
|
|
|
all := ctx.FormBool("all")
|
2019-04-12 07:58:44 +05:30
|
|
|
opts := git.NewSearchCommitsOptions(query, all)
|
|
|
|
commits, err := ctx.Repo.Commit.SearchCommits(opts)
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("SearchCommits", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
2021-08-09 23:38:51 +05:30
|
|
|
ctx.Data["CommitCount"] = len(commits)
|
|
|
|
ctx.Data["Commits"] = models.ConvertFromGitCommit(commits, ctx.Repo.Repository)
|
2014-07-26 11:58:04 +05:30
|
|
|
|
2019-04-12 07:58:44 +05:30
|
|
|
ctx.Data["Keyword"] = query
|
2017-02-05 20:13:28 +05:30
|
|
|
if all {
|
|
|
|
ctx.Data["All"] = "checked"
|
|
|
|
}
|
2015-11-11 03:16:17 +05:30
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name
|
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name
|
|
|
|
ctx.Data["Branch"] = ctx.Repo.BranchName
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.HTML(http.StatusOK, tplCommits)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// FileHistory show a file's reversions
|
2016-03-11 22:26:52 +05:30
|
|
|
func FileHistory(ctx *context.Context) {
|
2014-11-07 08:36:41 +05:30
|
|
|
ctx.Data["IsRepoToolbarCommits"] = true
|
|
|
|
|
2016-08-25 10:05:03 +05:30
|
|
|
fileName := ctx.Repo.TreePath
|
2014-11-07 08:36:41 +05:30
|
|
|
if len(fileName) == 0 {
|
|
|
|
Commits(ctx)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
branchName := ctx.Repo.BranchName
|
|
|
|
commitsCount, err := ctx.Repo.GitRepo.FileCommitsCount(branchName, fileName)
|
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("FileCommitsCount", err)
|
2014-11-07 08:36:41 +05:30
|
|
|
return
|
|
|
|
} else if commitsCount == 0 {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("FileCommitsCount", nil)
|
2014-11-07 08:36:41 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-07-29 07:12:15 +05:30
|
|
|
page := ctx.FormInt("page")
|
2015-11-11 03:16:17 +05:30
|
|
|
if page <= 1 {
|
2014-11-07 08:36:41 +05:30
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
2015-11-11 03:16:17 +05:30
|
|
|
commits, err := ctx.Repo.GitRepo.CommitsByFileAndRange(branchName, fileName, page)
|
2014-11-07 08:36:41 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("CommitsByFileAndRange", err)
|
2014-11-07 08:36:41 +05:30
|
|
|
return
|
|
|
|
}
|
2021-08-09 23:38:51 +05:30
|
|
|
ctx.Data["Commits"] = models.ConvertFromGitCommit(commits, ctx.Repo.Repository)
|
2015-11-11 03:16:17 +05:30
|
|
|
|
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name
|
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name
|
2014-11-07 08:36:41 +05:30
|
|
|
ctx.Data["FileName"] = fileName
|
|
|
|
ctx.Data["CommitCount"] = commitsCount
|
2015-11-11 03:16:17 +05:30
|
|
|
ctx.Data["Branch"] = branchName
|
2019-04-20 09:45:19 +05:30
|
|
|
|
2021-06-26 16:58:55 +05:30
|
|
|
pager := context.NewPagination(int(commitsCount), setting.Git.CommitsRangeSize, page, 5)
|
2019-04-20 09:45:19 +05:30
|
|
|
pager.SetDefaultParams(ctx)
|
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.HTML(http.StatusOK, tplCommits)
|
2014-11-07 08:36:41 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// Diff show different from current commit to previous commit
|
2016-03-11 22:26:52 +05:30
|
|
|
func Diff(ctx *context.Context) {
|
2015-08-20 21:48:30 +05:30
|
|
|
ctx.Data["PageIsDiff"] = true
|
2016-08-16 20:01:54 +05:30
|
|
|
ctx.Data["RequireHighlightJS"] = true
|
2020-01-26 13:47:25 +05:30
|
|
|
ctx.Data["RequireSimpleMDE"] = true
|
|
|
|
ctx.Data["RequireTribute"] = true
|
2014-07-26 11:58:04 +05:30
|
|
|
|
|
|
|
userName := ctx.Repo.Owner.Name
|
|
|
|
repoName := ctx.Repo.Repository.Name
|
2016-03-21 20:19:46 +05:30
|
|
|
commitID := ctx.Params(":sha")
|
2020-05-16 22:08:40 +05:30
|
|
|
var (
|
|
|
|
gitRepo *git.Repository
|
|
|
|
err error
|
|
|
|
repoPath string
|
|
|
|
)
|
|
|
|
|
|
|
|
if ctx.Data["PageIsWiki"] != nil {
|
|
|
|
gitRepo, err = git.OpenRepository(ctx.Repo.Repository.WikiPath())
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("Repo.GitRepo.GetCommit", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
repoPath = ctx.Repo.Repository.WikiPath()
|
|
|
|
} else {
|
|
|
|
gitRepo = ctx.Repo.GitRepo
|
|
|
|
repoPath = models.RepoPath(userName, repoName)
|
|
|
|
}
|
2016-03-21 20:19:46 +05:30
|
|
|
|
2020-05-16 22:08:40 +05:30
|
|
|
commit, err := gitRepo.GetCommit(commitID)
|
2016-03-21 20:19:46 +05:30
|
|
|
if err != nil {
|
2016-08-16 03:57:19 +05:30
|
|
|
if git.IsErrNotExist(err) {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("Repo.GitRepo.GetCommit", err)
|
2016-08-16 03:57:19 +05:30
|
|
|
} else {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("Repo.GitRepo.GetCommit", err)
|
2016-08-16 03:57:19 +05:30
|
|
|
}
|
2016-03-21 20:19:46 +05:30
|
|
|
return
|
|
|
|
}
|
2016-11-07 02:45:44 +05:30
|
|
|
if len(commitID) != 40 {
|
|
|
|
commitID = commit.ID.String()
|
|
|
|
}
|
2017-09-14 12:21:32 +05:30
|
|
|
|
2020-12-18 09:03:32 +05:30
|
|
|
statuses, err := models.GetLatestCommitStatus(ctx.Repo.Repository.ID, commitID, models.ListOptions{})
|
2017-09-14 12:21:32 +05:30
|
|
|
if err != nil {
|
2019-04-02 13:18:31 +05:30
|
|
|
log.Error("GetLatestCommitStatus: %v", err)
|
2017-09-14 12:21:32 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["CommitStatus"] = models.CalcCommitStatus(statuses)
|
2020-12-20 08:43:12 +05:30
|
|
|
ctx.Data["CommitStatuses"] = statuses
|
2017-09-14 12:21:32 +05:30
|
|
|
|
2021-02-13 10:05:43 +05:30
|
|
|
diff, err := gitdiff.GetDiffCommitWithWhitespaceBehavior(repoPath,
|
2016-06-29 20:41:00 +05:30
|
|
|
commitID, setting.Git.MaxGitDiffLines,
|
2021-02-13 10:05:43 +05:30
|
|
|
setting.Git.MaxGitDiffLineCharacters, setting.Git.MaxGitDiffFiles,
|
|
|
|
gitdiff.GetWhitespaceFlag(ctx.Data["WhitespaceBehavior"].(string)))
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2021-02-13 10:05:43 +05:30
|
|
|
ctx.NotFound("GetDiffCommitWithWhitespaceBehavior", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
parents := make([]string, commit.ParentCount())
|
|
|
|
for i := 0; i < commit.ParentCount(); i++ {
|
2015-12-10 07:16:05 +05:30
|
|
|
sha, err := commit.ParentID(i)
|
2014-07-26 11:58:04 +05:30
|
|
|
if err != nil {
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.NotFound("repo.Diff", err)
|
2014-07-26 11:58:04 +05:30
|
|
|
return
|
|
|
|
}
|
2020-02-28 04:40:27 +05:30
|
|
|
parents[i] = sha.String()
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
2016-03-21 20:19:46 +05:30
|
|
|
ctx.Data["CommitID"] = commitID
|
2019-11-15 08:22:59 +05:30
|
|
|
ctx.Data["AfterCommitID"] = commitID
|
2014-07-26 11:58:04 +05:30
|
|
|
ctx.Data["Username"] = userName
|
|
|
|
ctx.Data["Reponame"] = repoName
|
2019-10-05 01:28:54 +05:30
|
|
|
|
|
|
|
var parentCommit *git.Commit
|
2019-09-16 14:33:22 +05:30
|
|
|
if commit.ParentCount() > 0 {
|
2020-05-16 22:08:40 +05:30
|
|
|
parentCommit, err = gitRepo.GetCommit(parents[0])
|
2019-09-16 14:33:22 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.NotFound("GetParentCommit", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2019-10-05 01:28:54 +05:30
|
|
|
headTarget := path.Join(userName, repoName)
|
2021-03-30 02:14:28 +05:30
|
|
|
setCompareContext(ctx, parentCommit, commit, headTarget)
|
2015-08-31 12:54:28 +05:30
|
|
|
ctx.Data["Title"] = commit.Summary() + " · " + base.ShortSha(commitID)
|
2014-07-26 11:58:04 +05:30
|
|
|
ctx.Data["Commit"] = commit
|
2020-02-28 00:50:55 +05:30
|
|
|
verification := models.ParseCommitWithSignature(commit)
|
|
|
|
ctx.Data["Verification"] = verification
|
2014-10-11 07:10:51 +05:30
|
|
|
ctx.Data["Author"] = models.ValidateCommitWithEmail(commit)
|
2014-07-26 11:58:04 +05:30
|
|
|
ctx.Data["Diff"] = diff
|
|
|
|
ctx.Data["Parents"] = parents
|
2020-05-26 11:28:07 +05:30
|
|
|
ctx.Data["DiffNotAvailable"] = diff.NumFiles == 0
|
2019-05-24 13:22:05 +05:30
|
|
|
|
2020-02-28 00:50:55 +05:30
|
|
|
if err := models.CalculateTrustStatus(verification, ctx.Repo.Repository, nil); err != nil {
|
|
|
|
ctx.ServerError("CalculateTrustStatus", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-05-24 13:22:05 +05:30
|
|
|
note := &git.Note{}
|
2021-06-07 05:14:58 +05:30
|
|
|
err = git.GetNote(ctx, ctx.Repo.GitRepo, commitID, note)
|
2019-05-24 13:22:05 +05:30
|
|
|
if err == nil {
|
2019-08-15 17:37:28 +05:30
|
|
|
ctx.Data["Note"] = string(charset.ToUTF8WithFallback(note.Message))
|
2019-05-24 13:22:05 +05:30
|
|
|
ctx.Data["NoteCommit"] = note.Commit
|
|
|
|
ctx.Data["NoteAuthor"] = models.ValidateCommitWithEmail(note.Commit)
|
|
|
|
}
|
|
|
|
|
2019-04-19 17:47:27 +05:30
|
|
|
ctx.Data["BranchName"], err = commit.GetBranchName()
|
2019-06-13 01:11:28 +05:30
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("commit.GetBranchName", err)
|
2020-05-24 01:19:48 +05:30
|
|
|
return
|
2019-06-13 01:11:28 +05:30
|
|
|
}
|
2020-06-12 01:12:55 +05:30
|
|
|
|
|
|
|
ctx.Data["TagName"], err = commit.GetTagName()
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("commit.GetTagName", err)
|
|
|
|
return
|
|
|
|
}
|
2021-04-05 21:00:52 +05:30
|
|
|
ctx.HTML(http.StatusOK, tplCommitPage)
|
2014-07-26 11:58:04 +05:30
|
|
|
}
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// RawDiff dumps diff results of repository in given commit ID to io.Writer
|
2016-03-21 20:19:46 +05:30
|
|
|
func RawDiff(ctx *context.Context) {
|
2020-05-16 22:08:40 +05:30
|
|
|
var repoPath string
|
|
|
|
if ctx.Data["PageIsWiki"] != nil {
|
|
|
|
repoPath = ctx.Repo.Repository.WikiPath()
|
|
|
|
} else {
|
|
|
|
repoPath = models.RepoPath(ctx.Repo.Owner.Name, ctx.Repo.Repository.Name)
|
|
|
|
}
|
2020-01-28 13:32:03 +05:30
|
|
|
if err := git.GetRawDiff(
|
2020-05-16 22:08:40 +05:30
|
|
|
repoPath,
|
2016-07-30 20:32:22 +05:30
|
|
|
ctx.Params(":sha"),
|
2020-01-28 13:32:03 +05:30
|
|
|
git.RawDiffType(ctx.Params(":ext")),
|
2016-07-30 21:09:58 +05:30
|
|
|
ctx.Resp,
|
|
|
|
); err != nil {
|
2021-04-01 10:47:14 +05:30
|
|
|
if git.IsErrNotExist(err) {
|
|
|
|
ctx.NotFound("GetRawDiff",
|
|
|
|
errors.New("commit "+ctx.Params(":sha")+" does not exist."))
|
|
|
|
return
|
|
|
|
}
|
2018-01-11 03:04:17 +05:30
|
|
|
ctx.ServerError("GetRawDiff", err)
|
2016-07-30 20:32:22 +05:30
|
|
|
return
|
|
|
|
}
|
2016-03-21 20:19:46 +05:30
|
|
|
}
|