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