2014-03-24 10:25:15 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
2019-04-20 04:15:19 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2014-03-24 10:25:15 +00:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
2014-07-26 06:28:04 +00:00
|
|
|
import (
|
2021-04-01 05:17:14 +00:00
|
|
|
"errors"
|
2022-04-25 18:45:18 +00:00
|
|
|
"fmt"
|
2024-01-15 08:49:24 +00:00
|
|
|
"html/template"
|
2021-04-05 15:30:52 +00:00
|
|
|
"net/http"
|
2024-01-15 08:49:24 +00:00
|
|
|
"path"
|
2017-02-11 04:00:01 +00:00
|
|
|
"strings"
|
2014-07-26 06:28:04 +00:00
|
|
|
|
2021-12-10 08:14:24 +00:00
|
|
|
asymkey_model "code.gitea.io/gitea/models/asymkey"
|
2021-09-24 11:32:56 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-12 15:51:54 +00:00
|
|
|
git_model "code.gitea.io/gitea/models/git"
|
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2024-07-28 15:11:40 +00:00
|
|
|
unit_model "code.gitea.io/gitea/models/unit"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
2019-08-15 12:07:28 +00:00
|
|
|
"code.gitea.io/gitea/modules/charset"
|
2019-03-27 09:33:00 +00:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2019-11-16 00:47:57 +00:00
|
|
|
"code.gitea.io/gitea/modules/gitgraph"
|
Simplify how git repositories are opened (#28937)
## Purpose
This is a refactor toward building an abstraction over managing git
repositories.
Afterwards, it does not matter anymore if they are stored on the local
disk or somewhere remote.
## What this PR changes
We used `git.OpenRepository` everywhere previously.
Now, we should split them into two distinct functions:
Firstly, there are temporary repositories which do not change:
```go
git.OpenRepository(ctx, diskPath)
```
Gitea managed repositories having a record in the database in the
`repository` table are moved into the new package `gitrepo`:
```go
gitrepo.OpenRepository(ctx, repo_model.Repo)
```
Why is `repo_model.Repository` the second parameter instead of file
path?
Because then we can easily adapt our repository storage strategy.
The repositories can be stored locally, however, they could just as well
be stored on a remote server.
## Further changes in other PRs
- A Git Command wrapper on package `gitrepo` could be created. i.e.
`NewCommand(ctx, repo_model.Repository, commands...)`. `git.RunOpts{Dir:
repo.RepoPath()}`, the directory should be empty before invoking this
method and it can be filled in the function only. #28940
- Remove the `RepoPath()`/`WikiPath()` functions to reduce the
possibility of mistakes.
---------
Co-authored-by: delvh <dev.lh@web.de>
2024-01-27 20:09:51 +00:00
|
|
|
"code.gitea.io/gitea/modules/gitrepo"
|
2017-09-14 06:51:32 +00:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2024-01-15 08:49:24 +00:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2016-11-10 16:24:48 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2024-01-15 08:49:24 +00:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2024-02-27 07:12:22 +00:00
|
|
|
"code.gitea.io/gitea/services/context"
|
2019-09-06 02:20:09 +00:00
|
|
|
"code.gitea.io/gitea/services/gitdiff"
|
2023-07-27 10:47:41 +00:00
|
|
|
git_service "code.gitea.io/gitea/services/repository"
|
2014-07-26 06:28:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2019-06-07 20:29:29 +00:00
|
|
|
tplCommits base.TplName = "repo/commits"
|
|
|
|
tplGraph base.TplName = "repo/graph"
|
2020-11-08 17:21:54 +00:00
|
|
|
tplGraphDiv base.TplName = "repo/graph/div"
|
2019-06-07 20:29:29 +00:00
|
|
|
tplCommitPage base.TplName = "repo/commit_page"
|
2014-07-26 06:28:04 +00:00
|
|
|
)
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
// RefCommits render commits page
|
2016-03-11 16:56:52 +00:00
|
|
|
func RefCommits(ctx *context.Context) {
|
2014-11-07 03:06:41 +00:00
|
|
|
switch {
|
2016-08-25 04:35:03 +00:00
|
|
|
case len(ctx.Repo.TreePath) == 0:
|
2014-11-07 03:06:41 +00:00
|
|
|
Commits(ctx)
|
2016-08-25 04:35:03 +00:00
|
|
|
case ctx.Repo.TreePath == "search":
|
2014-11-07 03:06:41 +00:00
|
|
|
SearchCommits(ctx)
|
|
|
|
default:
|
|
|
|
FileHistory(ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
// Commits render branch's commits
|
2016-03-11 16:56:52 +00:00
|
|
|
func Commits(ctx *context.Context) {
|
2015-08-20 12:18:49 +00:00
|
|
|
ctx.Data["PageIsCommits"] = true
|
2017-07-31 01:23:10 +00:00
|
|
|
if ctx.Repo.Commit == nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.NotFound("Commit not found", nil)
|
2017-07-31 01:23:10 +00:00
|
|
|
return
|
|
|
|
}
|
2017-10-26 00:49:16 +00:00
|
|
|
ctx.Data["PageIsViewCode"] = true
|
2014-07-26 06:28:04 +00:00
|
|
|
|
2017-10-26 01:37:33 +00:00
|
|
|
commitsCount, err := ctx.Repo.GetCommitsCount()
|
2014-07-26 06:28:04 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetCommitsCount", err)
|
2014-07-26 06:28:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-07-29 01:42:15 +00:00
|
|
|
page := ctx.FormInt("page")
|
2015-08-20 12:18:49 +00:00
|
|
|
if page <= 1 {
|
2014-07-26 06:28:04 +00:00
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
2021-07-29 01:42:15 +00:00
|
|
|
pageSize := ctx.FormInt("limit")
|
2020-01-24 19:00:29 +00:00
|
|
|
if pageSize <= 0 {
|
2021-06-26 11:28:55 +00:00
|
|
|
pageSize = setting.Git.CommitsRangeSize
|
2020-01-24 19:00:29 +00:00
|
|
|
}
|
|
|
|
|
2014-07-26 06:28:04 +00:00
|
|
|
// Both `git log branchName` and `git log commitId` work.
|
2023-04-29 12:34:14 +00:00
|
|
|
commits, err := ctx.Repo.Commit.CommitsByRange(page, pageSize, "")
|
2014-07-26 06:28:04 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("CommitsByRange", err)
|
2014-07-26 06:28:04 +00:00
|
|
|
return
|
|
|
|
}
|
2024-07-28 15:11:40 +00:00
|
|
|
ctx.Data["Commits"] = processGitCommits(ctx, commits)
|
2015-11-10 21:46:17 +00:00
|
|
|
|
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name
|
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name
|
2014-07-26 06:28:04 +00:00
|
|
|
ctx.Data["CommitCount"] = commitsCount
|
2019-04-20 04:15:19 +00:00
|
|
|
|
2022-09-08 15:56:14 +00:00
|
|
|
pager := context.NewPagination(int(commitsCount), pageSize, page, 5)
|
2019-04-20 04:15:19 +00:00
|
|
|
pager.SetDefaultParams(ctx)
|
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplCommits)
|
2014-07-26 06:28:04 +00:00
|
|
|
}
|
|
|
|
|
2016-12-28 23:44:32 +00:00
|
|
|
// Graph render commit graph - show commits from all branches.
|
|
|
|
func Graph(ctx *context.Context) {
|
2020-11-08 17:21:54 +00:00
|
|
|
ctx.Data["Title"] = ctx.Tr("repo.commit_graph")
|
2016-12-28 23:44:32 +00:00
|
|
|
ctx.Data["PageIsCommits"] = true
|
2017-10-26 00:49:16 +00:00
|
|
|
ctx.Data["PageIsViewCode"] = true
|
2021-07-29 01:42:15 +00:00
|
|
|
mode := strings.ToLower(ctx.FormTrim("mode"))
|
2020-08-06 08:04:08 +00:00
|
|
|
if mode != "monochrome" {
|
|
|
|
mode = "color"
|
|
|
|
}
|
|
|
|
ctx.Data["Mode"] = mode
|
2021-07-29 01:42:15 +00:00
|
|
|
hidePRRefs := ctx.FormBool("hide-pr-refs")
|
2020-11-08 17:21:54 +00:00
|
|
|
ctx.Data["HidePRRefs"] = hidePRRefs
|
2021-07-29 01:42:15 +00:00
|
|
|
branches := ctx.FormStrings("branch")
|
2020-11-08 17:21:54 +00:00
|
|
|
realBranches := make([]string, len(branches))
|
|
|
|
copy(realBranches, branches)
|
|
|
|
for i, branch := range realBranches {
|
|
|
|
if strings.HasPrefix(branch, "--") {
|
2021-12-02 07:28:08 +00:00
|
|
|
realBranches[i] = git.BranchPrefix + branch
|
2020-11-08 17:21:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["SelectedBranches"] = realBranches
|
2021-07-29 01:42:15 +00:00
|
|
|
files := ctx.FormStrings("file")
|
2016-12-28 23:44:32 +00:00
|
|
|
|
2017-10-26 01:37:33 +00:00
|
|
|
commitsCount, err := ctx.Repo.GetCommitsCount()
|
2016-12-28 23:44:32 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetCommitsCount", err)
|
2016-12-28 23:44:32 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-01-19 23:26:57 +00:00
|
|
|
graphCommitsCount, err := ctx.Repo.GetCommitGraphsCount(ctx, hidePRRefs, realBranches, files)
|
2019-11-07 18:09:51 +00:00
|
|
|
if err != nil {
|
2020-11-08 17:21:54 +00: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 23:26:57 +00:00
|
|
|
graphCommitsCount, err = ctx.Repo.GetCommitGraphsCount(ctx, hidePRRefs, realBranches, files)
|
2020-11-08 17:21:54 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetCommitGraphsCount", err)
|
|
|
|
return
|
|
|
|
}
|
2019-11-07 18:09:51 +00:00
|
|
|
}
|
|
|
|
|
2021-07-29 01:42:15 +00:00
|
|
|
page := ctx.FormInt("page")
|
2019-10-14 21:38:35 +00:00
|
|
|
|
2020-11-08 17:21:54 +00:00
|
|
|
graph, err := gitgraph.GetCommitGraph(ctx.Repo.GitRepo, page, 0, hidePRRefs, realBranches, files)
|
2016-12-28 23:44:32 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetCommitGraph", err)
|
2016-12-28 23:44:32 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
Add context cache as a request level cache (#22294)
To avoid duplicated load of the same data in an HTTP request, we can set
a context cache to do that. i.e. Some pages may load a user from a
database with the same id in different areas on the same page. But the
code is hidden in two different deep logic. How should we share the
user? As a result of this PR, now if both entry functions accept
`context.Context` as the first parameter and we just need to refactor
`GetUserByID` to reuse the user from the context cache. Then it will not
be loaded twice on an HTTP request.
But of course, sometimes we would like to reload an object from the
database, that's why `RemoveContextData` is also exposed.
The core context cache is here. It defines a new context
```go
type cacheContext struct {
ctx context.Context
data map[any]map[any]any
lock sync.RWMutex
}
var cacheContextKey = struct{}{}
func WithCacheContext(ctx context.Context) context.Context {
return context.WithValue(ctx, cacheContextKey, &cacheContext{
ctx: ctx,
data: make(map[any]map[any]any),
})
}
```
Then you can use the below 4 methods to read/write/del the data within
the same context.
```go
func GetContextData(ctx context.Context, tp, key any) any
func SetContextData(ctx context.Context, tp, key, value any)
func RemoveContextData(ctx context.Context, tp, key any)
func GetWithContextCache[T any](ctx context.Context, cacheGroupKey string, cacheTargetID any, f func() (T, error)) (T, error)
```
Then let's take a look at how `system.GetString` implement it.
```go
func GetSetting(ctx context.Context, key string) (string, error) {
return cache.GetWithContextCache(ctx, contextCacheKey, key, func() (string, error) {
return cache.GetString(genSettingCacheKey(key), func() (string, error) {
res, err := GetSettingNoCache(ctx, key)
if err != nil {
return "", err
}
return res.SettingValue, nil
})
})
}
```
First, it will check if context data include the setting object with the
key. If not, it will query from the global cache which may be memory or
a Redis cache. If not, it will get the object from the database. In the
end, if the object gets from the global cache or database, it will be
set into the context cache.
An object stored in the context cache will only be destroyed after the
context disappeared.
2023-02-15 13:37:34 +00:00
|
|
|
if err := graph.LoadAndProcessCommits(ctx, ctx.Repo.Repository, ctx.Repo.GitRepo); err != nil {
|
2020-11-08 17:21:54 +00:00
|
|
|
ctx.ServerError("LoadAndProcessCommits", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2016-12-28 23:44:32 +00:00
|
|
|
ctx.Data["Graph"] = graph
|
2020-11-08 17:21:54 +00:00
|
|
|
|
|
|
|
gitRefs, err := ctx.Repo.GitRepo.GetRefs()
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GitRepo.GetRefs", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["AllRefs"] = gitRefs
|
|
|
|
|
2016-12-28 23:44:32 +00:00
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name
|
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name
|
|
|
|
ctx.Data["CommitCount"] = commitsCount
|
2023-08-24 01:31:54 +00:00
|
|
|
|
2020-11-08 17:21:54 +00:00
|
|
|
paginator := context.NewPagination(int(graphCommitsCount), setting.UI.GraphMaxCommitNum, page, 5)
|
2020-08-06 08:04:08 +00:00
|
|
|
paginator.AddParam(ctx, "mode", "Mode")
|
2020-11-08 17:21:54 +00: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 08:04:08 +00:00
|
|
|
ctx.Data["Page"] = paginator
|
2021-07-29 01:42:15 +00:00
|
|
|
if ctx.FormBool("div-only") {
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplGraphDiv)
|
2020-11-08 17:21:54 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplGraph)
|
2016-12-28 23:44:32 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
// SearchCommits render commits filtered by keyword
|
2016-03-11 16:56:52 +00:00
|
|
|
func SearchCommits(ctx *context.Context) {
|
2015-08-20 12:18:49 +00:00
|
|
|
ctx.Data["PageIsCommits"] = true
|
2017-10-26 00:49:16 +00:00
|
|
|
ctx.Data["PageIsViewCode"] = true
|
2014-07-26 06:28:04 +00:00
|
|
|
|
2021-08-11 15:08:52 +00:00
|
|
|
query := ctx.FormTrim("q")
|
2019-04-12 02:28:44 +00:00
|
|
|
if len(query) == 0 {
|
2017-10-30 02:04:25 +00:00
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/commits/" + ctx.Repo.BranchNameSubURL())
|
2014-07-26 06:28:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-07-29 01:42:15 +00:00
|
|
|
all := ctx.FormBool("all")
|
2019-04-12 02:28:44 +00:00
|
|
|
opts := git.NewSearchCommitsOptions(query, all)
|
|
|
|
commits, err := ctx.Repo.Commit.SearchCommits(opts)
|
2014-07-26 06:28:04 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("SearchCommits", err)
|
2014-07-26 06:28:04 +00:00
|
|
|
return
|
|
|
|
}
|
2021-08-09 18:08:51 +00:00
|
|
|
ctx.Data["CommitCount"] = len(commits)
|
2024-07-28 15:11:40 +00:00
|
|
|
ctx.Data["Commits"] = processGitCommits(ctx, commits)
|
2014-07-26 06:28:04 +00:00
|
|
|
|
2019-04-12 02:28:44 +00:00
|
|
|
ctx.Data["Keyword"] = query
|
2017-02-05 14:43:28 +00:00
|
|
|
if all {
|
2024-03-14 23:24:59 +00:00
|
|
|
ctx.Data["All"] = true
|
2017-02-05 14:43:28 +00:00
|
|
|
}
|
2015-11-10 21:46:17 +00:00
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name
|
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplCommits)
|
2014-07-26 06:28:04 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
// FileHistory show a file's reversions
|
2016-03-11 16:56:52 +00:00
|
|
|
func FileHistory(ctx *context.Context) {
|
2016-08-25 04:35:03 +00:00
|
|
|
fileName := ctx.Repo.TreePath
|
2014-11-07 03:06:41 +00:00
|
|
|
if len(fileName) == 0 {
|
|
|
|
Commits(ctx)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-11-17 23:50:17 +00:00
|
|
|
commitsCount, err := ctx.Repo.GitRepo.FileCommitsCount(ctx.Repo.RefName, fileName)
|
2014-11-07 03:06:41 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("FileCommitsCount", err)
|
2014-11-07 03:06:41 +00:00
|
|
|
return
|
|
|
|
} else if commitsCount == 0 {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.NotFound("FileCommitsCount", nil)
|
2014-11-07 03:06:41 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-07-29 01:42:15 +00:00
|
|
|
page := ctx.FormInt("page")
|
2015-11-10 21:46:17 +00:00
|
|
|
if page <= 1 {
|
2014-11-07 03:06:41 +00:00
|
|
|
page = 1
|
|
|
|
}
|
|
|
|
|
2023-05-08 07:10:53 +00:00
|
|
|
commits, err := ctx.Repo.GitRepo.CommitsByFileAndRange(
|
|
|
|
git.CommitsByFileAndRangeOptions{
|
|
|
|
Revision: ctx.Repo.RefName,
|
|
|
|
File: fileName,
|
|
|
|
Page: page,
|
|
|
|
})
|
2014-11-07 03:06:41 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("CommitsByFileAndRange", err)
|
2014-11-07 03:06:41 +00:00
|
|
|
return
|
|
|
|
}
|
2024-07-20 23:59:12 +00:00
|
|
|
|
|
|
|
if len(commits) == 0 {
|
|
|
|
ctx.NotFound("CommitsByFileAndRange", nil)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-09-14 19:53:57 +00:00
|
|
|
oldestCommit := commits[len(commits)-1]
|
|
|
|
|
|
|
|
renamedFiles, err := git.GetCommitFileRenames(ctx, ctx.Repo.GitRepo.Path, oldestCommit.ID.String())
|
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetCommitFileRenames", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, renames := range renamedFiles {
|
|
|
|
if renames[1] == fileName {
|
|
|
|
ctx.Data["OldFilename"] = renames[0]
|
|
|
|
ctx.Data["OldFilenameHistory"] = fmt.Sprintf("%s/commits/commit/%s/%s", ctx.Repo.RepoLink, oldestCommit.ID.String(), renames[0])
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-07-28 15:11:40 +00:00
|
|
|
ctx.Data["Commits"] = processGitCommits(ctx, commits)
|
2015-11-10 21:46:17 +00:00
|
|
|
|
|
|
|
ctx.Data["Username"] = ctx.Repo.Owner.Name
|
|
|
|
ctx.Data["Reponame"] = ctx.Repo.Repository.Name
|
2014-11-07 03:06:41 +00:00
|
|
|
ctx.Data["FileName"] = fileName
|
|
|
|
ctx.Data["CommitCount"] = commitsCount
|
2019-04-20 04:15:19 +00:00
|
|
|
|
2021-06-26 11:28:55 +00:00
|
|
|
pager := context.NewPagination(int(commitsCount), setting.Git.CommitsRangeSize, page, 5)
|
2019-04-20 04:15:19 +00:00
|
|
|
pager.SetDefaultParams(ctx)
|
|
|
|
ctx.Data["Page"] = pager
|
|
|
|
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplCommits)
|
2014-11-07 03:06:41 +00:00
|
|
|
}
|
|
|
|
|
2023-07-27 10:47:41 +00:00
|
|
|
func LoadBranchesAndTags(ctx *context.Context) {
|
|
|
|
response, err := git_service.LoadBranchesAndTags(ctx, ctx.Repo, ctx.Params("sha"))
|
|
|
|
if err == nil {
|
|
|
|
ctx.JSON(http.StatusOK, response)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.NotFoundOrServerError(fmt.Sprintf("could not load branches and tags the commit %s belongs to", ctx.Params("sha")), git.IsErrNotExist, err)
|
|
|
|
}
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
// Diff show different from current commit to previous commit
|
2016-03-11 16:56:52 +00:00
|
|
|
func Diff(ctx *context.Context) {
|
2015-08-20 16:18:30 +00:00
|
|
|
ctx.Data["PageIsDiff"] = true
|
2014-07-26 06:28:04 +00:00
|
|
|
|
|
|
|
userName := ctx.Repo.Owner.Name
|
|
|
|
repoName := ctx.Repo.Repository.Name
|
2016-03-21 14:49:46 +00:00
|
|
|
commitID := ctx.Params(":sha")
|
2020-05-16 16:38:40 +00:00
|
|
|
var (
|
2021-08-31 04:16:23 +00:00
|
|
|
gitRepo *git.Repository
|
|
|
|
err error
|
2020-05-16 16:38:40 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if ctx.Data["PageIsWiki"] != nil {
|
Simplify how git repositories are opened (#28937)
## Purpose
This is a refactor toward building an abstraction over managing git
repositories.
Afterwards, it does not matter anymore if they are stored on the local
disk or somewhere remote.
## What this PR changes
We used `git.OpenRepository` everywhere previously.
Now, we should split them into two distinct functions:
Firstly, there are temporary repositories which do not change:
```go
git.OpenRepository(ctx, diskPath)
```
Gitea managed repositories having a record in the database in the
`repository` table are moved into the new package `gitrepo`:
```go
gitrepo.OpenRepository(ctx, repo_model.Repo)
```
Why is `repo_model.Repository` the second parameter instead of file
path?
Because then we can easily adapt our repository storage strategy.
The repositories can be stored locally, however, they could just as well
be stored on a remote server.
## Further changes in other PRs
- A Git Command wrapper on package `gitrepo` could be created. i.e.
`NewCommand(ctx, repo_model.Repository, commands...)`. `git.RunOpts{Dir:
repo.RepoPath()}`, the directory should be empty before invoking this
method and it can be filled in the function only. #28940
- Remove the `RepoPath()`/`WikiPath()` functions to reduce the
possibility of mistakes.
---------
Co-authored-by: delvh <dev.lh@web.de>
2024-01-27 20:09:51 +00:00
|
|
|
gitRepo, err = gitrepo.OpenWikiRepository(ctx, ctx.Repo.Repository)
|
2020-05-16 16:38:40 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("Repo.GitRepo.GetCommit", err)
|
|
|
|
return
|
|
|
|
}
|
2021-08-31 04:16:23 +00:00
|
|
|
defer gitRepo.Close()
|
2020-05-16 16:38:40 +00:00
|
|
|
} else {
|
|
|
|
gitRepo = ctx.Repo.GitRepo
|
|
|
|
}
|
2016-03-21 14:49:46 +00:00
|
|
|
|
2020-05-16 16:38:40 +00:00
|
|
|
commit, err := gitRepo.GetCommit(commitID)
|
2016-03-21 14:49:46 +00:00
|
|
|
if err != nil {
|
2016-08-15 22:27:19 +00:00
|
|
|
if git.IsErrNotExist(err) {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.NotFound("Repo.GitRepo.GetCommit", err)
|
2016-08-15 22:27:19 +00:00
|
|
|
} else {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("Repo.GitRepo.GetCommit", err)
|
2016-08-15 22:27:19 +00:00
|
|
|
}
|
2016-03-21 14:49:46 +00:00
|
|
|
return
|
|
|
|
}
|
2023-12-13 21:02:00 +00:00
|
|
|
if len(commitID) != commit.ID.Type().FullLength() {
|
2016-11-06 21:15:44 +00:00
|
|
|
commitID = commit.ID.String()
|
|
|
|
}
|
2017-09-14 06:51:32 +00:00
|
|
|
|
2021-11-21 16:51:08 +00: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
|
|
|
|
}
|
|
|
|
|
2023-10-03 10:30:41 +00:00
|
|
|
diff, err := gitdiff.GetDiff(ctx, gitRepo, &gitdiff.DiffOptions{
|
2021-11-21 16:51:08 +00:00
|
|
|
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 06:28:04 +00:00
|
|
|
if err != nil {
|
2021-11-21 16:51:08 +00:00
|
|
|
ctx.NotFound("GetDiff", err)
|
2014-07-26 06:28:04 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
parents := make([]string, commit.ParentCount())
|
|
|
|
for i := 0; i < commit.ParentCount(); i++ {
|
2015-12-10 01:46:05 +00:00
|
|
|
sha, err := commit.ParentID(i)
|
2014-07-26 06:28:04 +00:00
|
|
|
if err != nil {
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.NotFound("repo.Diff", err)
|
2014-07-26 06:28:04 +00:00
|
|
|
return
|
|
|
|
}
|
2020-02-27 23:10:27 +00:00
|
|
|
parents[i] = sha.String()
|
2014-07-26 06:28:04 +00:00
|
|
|
}
|
|
|
|
|
2016-03-21 14:49:46 +00:00
|
|
|
ctx.Data["CommitID"] = commitID
|
2019-11-15 02:52:59 +00:00
|
|
|
ctx.Data["AfterCommitID"] = commitID
|
2014-07-26 06:28:04 +00:00
|
|
|
ctx.Data["Username"] = userName
|
|
|
|
ctx.Data["Reponame"] = repoName
|
2019-10-04 19:58:54 +00:00
|
|
|
|
|
|
|
var parentCommit *git.Commit
|
2019-09-16 09:03:22 +00:00
|
|
|
if commit.ParentCount() > 0 {
|
2020-05-16 16:38:40 +00:00
|
|
|
parentCommit, err = gitRepo.GetCommit(parents[0])
|
2019-09-16 09:03:22 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.NotFound("GetParentCommit", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2021-11-16 18:18:25 +00:00
|
|
|
setCompareContext(ctx, parentCommit, commit, userName, repoName)
|
2015-08-31 07:24:28 +00:00
|
|
|
ctx.Data["Title"] = commit.Summary() + " · " + base.ShortSha(commitID)
|
2014-07-26 06:28:04 +00:00
|
|
|
ctx.Data["Commit"] = commit
|
2021-10-15 16:05:33 +00:00
|
|
|
ctx.Data["Diff"] = diff
|
|
|
|
|
2024-03-22 12:53:52 +00:00
|
|
|
statuses, _, err := git_model.GetLatestCommitStatus(ctx, ctx.Repo.Repository.ID, commitID, db.ListOptionsAll)
|
2021-10-15 16:05:33 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Error("GetLatestCommitStatus: %v", err)
|
|
|
|
}
|
2024-07-28 15:11:40 +00:00
|
|
|
if !ctx.Repo.CanRead(unit_model.TypeActions) {
|
|
|
|
git_model.CommitStatusesHideActionsURL(ctx, statuses)
|
|
|
|
}
|
2021-10-15 16:05:33 +00:00
|
|
|
|
2022-06-12 15:51:54 +00:00
|
|
|
ctx.Data["CommitStatus"] = git_model.CalcCommitStatus(statuses)
|
2021-10-15 16:05:33 +00:00
|
|
|
ctx.Data["CommitStatuses"] = statuses
|
|
|
|
|
Add context cache as a request level cache (#22294)
To avoid duplicated load of the same data in an HTTP request, we can set
a context cache to do that. i.e. Some pages may load a user from a
database with the same id in different areas on the same page. But the
code is hidden in two different deep logic. How should we share the
user? As a result of this PR, now if both entry functions accept
`context.Context` as the first parameter and we just need to refactor
`GetUserByID` to reuse the user from the context cache. Then it will not
be loaded twice on an HTTP request.
But of course, sometimes we would like to reload an object from the
database, that's why `RemoveContextData` is also exposed.
The core context cache is here. It defines a new context
```go
type cacheContext struct {
ctx context.Context
data map[any]map[any]any
lock sync.RWMutex
}
var cacheContextKey = struct{}{}
func WithCacheContext(ctx context.Context) context.Context {
return context.WithValue(ctx, cacheContextKey, &cacheContext{
ctx: ctx,
data: make(map[any]map[any]any),
})
}
```
Then you can use the below 4 methods to read/write/del the data within
the same context.
```go
func GetContextData(ctx context.Context, tp, key any) any
func SetContextData(ctx context.Context, tp, key, value any)
func RemoveContextData(ctx context.Context, tp, key any)
func GetWithContextCache[T any](ctx context.Context, cacheGroupKey string, cacheTargetID any, f func() (T, error)) (T, error)
```
Then let's take a look at how `system.GetString` implement it.
```go
func GetSetting(ctx context.Context, key string) (string, error) {
return cache.GetWithContextCache(ctx, contextCacheKey, key, func() (string, error) {
return cache.GetString(genSettingCacheKey(key), func() (string, error) {
res, err := GetSettingNoCache(ctx, key)
if err != nil {
return "", err
}
return res.SettingValue, nil
})
})
}
```
First, it will check if context data include the setting object with the
key. If not, it will query from the global cache which may be memory or
a Redis cache. If not, it will get the object from the database. In the
end, if the object gets from the global cache or database, it will be
set into the context cache.
An object stored in the context cache will only be destroyed after the
context disappeared.
2023-02-15 13:37:34 +00:00
|
|
|
verification := asymkey_model.ParseCommitWithSignature(ctx, commit)
|
2020-02-27 19:20:55 +00:00
|
|
|
ctx.Data["Verification"] = verification
|
Add context cache as a request level cache (#22294)
To avoid duplicated load of the same data in an HTTP request, we can set
a context cache to do that. i.e. Some pages may load a user from a
database with the same id in different areas on the same page. But the
code is hidden in two different deep logic. How should we share the
user? As a result of this PR, now if both entry functions accept
`context.Context` as the first parameter and we just need to refactor
`GetUserByID` to reuse the user from the context cache. Then it will not
be loaded twice on an HTTP request.
But of course, sometimes we would like to reload an object from the
database, that's why `RemoveContextData` is also exposed.
The core context cache is here. It defines a new context
```go
type cacheContext struct {
ctx context.Context
data map[any]map[any]any
lock sync.RWMutex
}
var cacheContextKey = struct{}{}
func WithCacheContext(ctx context.Context) context.Context {
return context.WithValue(ctx, cacheContextKey, &cacheContext{
ctx: ctx,
data: make(map[any]map[any]any),
})
}
```
Then you can use the below 4 methods to read/write/del the data within
the same context.
```go
func GetContextData(ctx context.Context, tp, key any) any
func SetContextData(ctx context.Context, tp, key, value any)
func RemoveContextData(ctx context.Context, tp, key any)
func GetWithContextCache[T any](ctx context.Context, cacheGroupKey string, cacheTargetID any, f func() (T, error)) (T, error)
```
Then let's take a look at how `system.GetString` implement it.
```go
func GetSetting(ctx context.Context, key string) (string, error) {
return cache.GetWithContextCache(ctx, contextCacheKey, key, func() (string, error) {
return cache.GetString(genSettingCacheKey(key), func() (string, error) {
res, err := GetSettingNoCache(ctx, key)
if err != nil {
return "", err
}
return res.SettingValue, nil
})
})
}
```
First, it will check if context data include the setting object with the
key. If not, it will query from the global cache which may be memory or
a Redis cache. If not, it will get the object from the database. In the
end, if the object gets from the global cache or database, it will be
set into the context cache.
An object stored in the context cache will only be destroyed after the
context disappeared.
2023-02-15 13:37:34 +00:00
|
|
|
ctx.Data["Author"] = user_model.ValidateCommitWithEmail(ctx, commit)
|
2014-07-26 06:28:04 +00:00
|
|
|
ctx.Data["Parents"] = parents
|
2020-05-26 05:58:07 +00:00
|
|
|
ctx.Data["DiffNotAvailable"] = diff.NumFiles == 0
|
2019-05-24 07:52:05 +00:00
|
|
|
|
2021-12-10 08:14:24 +00:00
|
|
|
if err := asymkey_model.CalculateTrustStatus(verification, ctx.Repo.Repository.GetTrustModel(), func(user *user_model.User) (bool, error) {
|
2023-09-29 12:12:54 +00:00
|
|
|
return repo_model.IsOwnerMemberCollaborator(ctx, ctx.Repo.Repository, user.ID)
|
2021-12-10 08:14:24 +00:00
|
|
|
}, nil); err != nil {
|
2020-02-27 19:20:55 +00:00
|
|
|
ctx.ServerError("CalculateTrustStatus", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-05-24 07:52:05 +00:00
|
|
|
note := &git.Note{}
|
2021-06-06 23:44:58 +00:00
|
|
|
err = git.GetNote(ctx, ctx.Repo.GitRepo, commitID, note)
|
2019-05-24 07:52:05 +00:00
|
|
|
if err == nil {
|
|
|
|
ctx.Data["NoteCommit"] = note.Commit
|
Add context cache as a request level cache (#22294)
To avoid duplicated load of the same data in an HTTP request, we can set
a context cache to do that. i.e. Some pages may load a user from a
database with the same id in different areas on the same page. But the
code is hidden in two different deep logic. How should we share the
user? As a result of this PR, now if both entry functions accept
`context.Context` as the first parameter and we just need to refactor
`GetUserByID` to reuse the user from the context cache. Then it will not
be loaded twice on an HTTP request.
But of course, sometimes we would like to reload an object from the
database, that's why `RemoveContextData` is also exposed.
The core context cache is here. It defines a new context
```go
type cacheContext struct {
ctx context.Context
data map[any]map[any]any
lock sync.RWMutex
}
var cacheContextKey = struct{}{}
func WithCacheContext(ctx context.Context) context.Context {
return context.WithValue(ctx, cacheContextKey, &cacheContext{
ctx: ctx,
data: make(map[any]map[any]any),
})
}
```
Then you can use the below 4 methods to read/write/del the data within
the same context.
```go
func GetContextData(ctx context.Context, tp, key any) any
func SetContextData(ctx context.Context, tp, key, value any)
func RemoveContextData(ctx context.Context, tp, key any)
func GetWithContextCache[T any](ctx context.Context, cacheGroupKey string, cacheTargetID any, f func() (T, error)) (T, error)
```
Then let's take a look at how `system.GetString` implement it.
```go
func GetSetting(ctx context.Context, key string) (string, error) {
return cache.GetWithContextCache(ctx, contextCacheKey, key, func() (string, error) {
return cache.GetString(genSettingCacheKey(key), func() (string, error) {
res, err := GetSettingNoCache(ctx, key)
if err != nil {
return "", err
}
return res.SettingValue, nil
})
})
}
```
First, it will check if context data include the setting object with the
key. If not, it will query from the global cache which may be memory or
a Redis cache. If not, it will get the object from the database. In the
end, if the object gets from the global cache or database, it will be
set into the context cache.
An object stored in the context cache will only be destroyed after the
context disappeared.
2023-02-15 13:37:34 +00:00
|
|
|
ctx.Data["NoteAuthor"] = user_model.ValidateCommitWithEmail(ctx, note.Commit)
|
2024-01-15 08:49:24 +00:00
|
|
|
ctx.Data["NoteRendered"], err = markup.RenderCommitMessage(&markup.RenderContext{
|
|
|
|
Links: markup.Links{
|
|
|
|
Base: ctx.Repo.RepoLink,
|
|
|
|
BranchPath: path.Join("commit", util.PathEscapeSegments(commitID)),
|
|
|
|
},
|
|
|
|
Metas: ctx.Repo.Repository.ComposeMetas(ctx),
|
|
|
|
GitRepo: ctx.Repo.GitRepo,
|
|
|
|
Ctx: ctx,
|
2024-01-27 18:02:51 +00:00
|
|
|
}, template.HTMLEscapeString(string(charset.ToUTF8WithFallback(note.Message, charset.ConvertOpts{}))))
|
2024-01-15 08:49:24 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("RenderCommitMessage", err)
|
|
|
|
return
|
|
|
|
}
|
2019-05-24 07:52:05 +00:00
|
|
|
}
|
|
|
|
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplCommitPage)
|
2014-07-26 06:28:04 +00:00
|
|
|
}
|
|
|
|
|
2016-11-24 07:04:31 +00:00
|
|
|
// RawDiff dumps diff results of repository in given commit ID to io.Writer
|
2016-03-21 14:49:46 +00:00
|
|
|
func RawDiff(ctx *context.Context) {
|
2022-04-25 18:45:18 +00:00
|
|
|
var gitRepo *git.Repository
|
2020-05-16 16:38:40 +00:00
|
|
|
if ctx.Data["PageIsWiki"] != nil {
|
Simplify how git repositories are opened (#28937)
## Purpose
This is a refactor toward building an abstraction over managing git
repositories.
Afterwards, it does not matter anymore if they are stored on the local
disk or somewhere remote.
## What this PR changes
We used `git.OpenRepository` everywhere previously.
Now, we should split them into two distinct functions:
Firstly, there are temporary repositories which do not change:
```go
git.OpenRepository(ctx, diskPath)
```
Gitea managed repositories having a record in the database in the
`repository` table are moved into the new package `gitrepo`:
```go
gitrepo.OpenRepository(ctx, repo_model.Repo)
```
Why is `repo_model.Repository` the second parameter instead of file
path?
Because then we can easily adapt our repository storage strategy.
The repositories can be stored locally, however, they could just as well
be stored on a remote server.
## Further changes in other PRs
- A Git Command wrapper on package `gitrepo` could be created. i.e.
`NewCommand(ctx, repo_model.Repository, commands...)`. `git.RunOpts{Dir:
repo.RepoPath()}`, the directory should be empty before invoking this
method and it can be filled in the function only. #28940
- Remove the `RepoPath()`/`WikiPath()` functions to reduce the
possibility of mistakes.
---------
Co-authored-by: delvh <dev.lh@web.de>
2024-01-27 20:09:51 +00:00
|
|
|
wikiRepo, err := gitrepo.OpenWikiRepository(ctx, ctx.Repo.Repository)
|
2022-04-25 18:45:18 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("OpenRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer wikiRepo.Close()
|
|
|
|
gitRepo = wikiRepo
|
2020-05-16 16:38:40 +00:00
|
|
|
} else {
|
2022-04-25 18:45:18 +00:00
|
|
|
gitRepo = ctx.Repo.GitRepo
|
|
|
|
if gitRepo == nil {
|
|
|
|
ctx.ServerError("GitRepo not open", fmt.Errorf("no open git repo for '%s'", ctx.Repo.Repository.FullName()))
|
|
|
|
return
|
|
|
|
}
|
2020-05-16 16:38:40 +00:00
|
|
|
}
|
2020-01-28 08:02:03 +00:00
|
|
|
if err := git.GetRawDiff(
|
2022-04-25 18:45:18 +00:00
|
|
|
gitRepo,
|
2016-07-30 15:02:22 +00:00
|
|
|
ctx.Params(":sha"),
|
2020-01-28 08:02:03 +00:00
|
|
|
git.RawDiffType(ctx.Params(":ext")),
|
2016-07-30 15:39:58 +00:00
|
|
|
ctx.Resp,
|
|
|
|
); err != nil {
|
2021-04-01 05:17:14 +00:00
|
|
|
if git.IsErrNotExist(err) {
|
|
|
|
ctx.NotFound("GetRawDiff",
|
|
|
|
errors.New("commit "+ctx.Params(":sha")+" does not exist."))
|
|
|
|
return
|
|
|
|
}
|
2018-01-10 21:34:17 +00:00
|
|
|
ctx.ServerError("GetRawDiff", err)
|
2016-07-30 15:02:22 +00:00
|
|
|
return
|
|
|
|
}
|
2016-03-21 14:49:46 +00:00
|
|
|
}
|
2024-07-28 15:11:40 +00:00
|
|
|
|
|
|
|
func processGitCommits(ctx *context.Context, gitCommits []*git.Commit) []*git_model.SignCommitWithStatuses {
|
|
|
|
commits := git_model.ConvertFromGitCommit(ctx, gitCommits, ctx.Repo.Repository)
|
|
|
|
if !ctx.Repo.CanRead(unit_model.TypeActions) {
|
|
|
|
for _, commit := range commits {
|
2024-08-04 07:30:36 +00:00
|
|
|
if commit.Status == nil {
|
|
|
|
continue
|
|
|
|
}
|
2024-07-28 15:11:40 +00:00
|
|
|
commit.Status.HideActionsURL(ctx)
|
|
|
|
git_model.CommitStatusesHideActionsURL(ctx, commit.Statuses)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return commits
|
|
|
|
}
|