2019-06-07 20:29:29 +00:00
|
|
|
// Copyright 2019 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2019-06-07 20:29:29 +00:00
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2019-11-15 02:52:59 +00:00
|
|
|
"bufio"
|
2022-01-19 23:26:57 +00:00
|
|
|
gocontext "context"
|
2021-03-29 20:44:28 +00:00
|
|
|
"encoding/csv"
|
|
|
|
"errors"
|
2019-10-04 19:58:54 +00:00
|
|
|
"fmt"
|
2019-11-15 02:52:59 +00:00
|
|
|
"html"
|
2021-10-24 22:42:32 +00:00
|
|
|
"io"
|
2021-04-05 15:30:52 +00:00
|
|
|
"net/http"
|
2021-11-16 18:18:25 +00:00
|
|
|
"net/url"
|
2021-03-29 20:44:28 +00:00
|
|
|
"path/filepath"
|
2019-06-07 20:29:29 +00:00
|
|
|
"strings"
|
|
|
|
|
2023-06-29 10:03:20 +00:00
|
|
|
"code.gitea.io/gitea/models/db"
|
2022-06-12 15:51:54 +00:00
|
|
|
git_model "code.gitea.io/gitea/models/git"
|
2022-06-13 09:37:59 +00:00
|
|
|
issues_model "code.gitea.io/gitea/models/issues"
|
2022-05-11 10:09:36 +00:00
|
|
|
access_model "code.gitea.io/gitea/models/perm/access"
|
2021-12-10 01:27:50 +00:00
|
|
|
repo_model "code.gitea.io/gitea/models/repo"
|
2021-11-09 19:57:58 +00:00
|
|
|
"code.gitea.io/gitea/models/unit"
|
2021-11-24 09:49:20 +00:00
|
|
|
user_model "code.gitea.io/gitea/models/user"
|
2019-06-07 20:29:29 +00:00
|
|
|
"code.gitea.io/gitea/modules/base"
|
2021-03-29 20:44:28 +00:00
|
|
|
"code.gitea.io/gitea/modules/charset"
|
|
|
|
csv_module "code.gitea.io/gitea/modules/csv"
|
2019-06-07 20:29:29 +00:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
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"
|
2019-06-07 20:29:29 +00:00
|
|
|
"code.gitea.io/gitea/modules/log"
|
2021-10-30 15:50:40 +00:00
|
|
|
"code.gitea.io/gitea/modules/markup"
|
2024-02-23 02:18:33 +00:00
|
|
|
"code.gitea.io/gitea/modules/optional"
|
2019-06-07 20:29:29 +00:00
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2023-01-30 14:39:07 +00:00
|
|
|
api "code.gitea.io/gitea/modules/structs"
|
2023-10-11 12:34:21 +00:00
|
|
|
"code.gitea.io/gitea/modules/typesniffer"
|
2021-07-25 02:59:27 +00:00
|
|
|
"code.gitea.io/gitea/modules/util"
|
2024-04-16 03:45:04 +00:00
|
|
|
"code.gitea.io/gitea/routers/common"
|
2024-02-27 07:12:22 +00:00
|
|
|
"code.gitea.io/gitea/services/context"
|
|
|
|
"code.gitea.io/gitea/services/context/upload"
|
2019-09-06 02:20:09 +00:00
|
|
|
"code.gitea.io/gitea/services/gitdiff"
|
2019-06-07 20:29:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2019-11-15 02:52:59 +00:00
|
|
|
tplCompare base.TplName = "repo/diff/compare"
|
|
|
|
tplBlobExcerpt base.TplName = "repo/diff/blob_excerpt"
|
2021-10-15 16:05:33 +00:00
|
|
|
tplDiffBox base.TplName = "repo/diff/box"
|
2019-06-07 20:29:29 +00:00
|
|
|
)
|
|
|
|
|
2021-03-29 20:44:28 +00:00
|
|
|
// setCompareContext sets context data.
|
2023-02-20 03:56:07 +00:00
|
|
|
func setCompareContext(ctx *context.Context, before, head *git.Commit, headOwner, headName string) {
|
|
|
|
ctx.Data["BeforeCommit"] = before
|
2021-03-29 20:44:28 +00:00
|
|
|
ctx.Data["HeadCommit"] = head
|
|
|
|
|
2021-06-05 12:32:19 +00:00
|
|
|
ctx.Data["GetBlobByPathForCommit"] = func(commit *git.Commit, path string) *git.Blob {
|
|
|
|
if commit == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
blob, err := commit.GetBlobByPath(path)
|
|
|
|
if err != nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return blob
|
|
|
|
}
|
|
|
|
|
2023-10-11 12:34:21 +00:00
|
|
|
ctx.Data["GetSniffedTypeForBlob"] = func(blob *git.Blob) typesniffer.SniffedType {
|
|
|
|
st := typesniffer.SniffedType{}
|
|
|
|
|
|
|
|
if blob == nil {
|
|
|
|
return st
|
|
|
|
}
|
|
|
|
|
|
|
|
st, err := blob.GuessContentType()
|
|
|
|
if err != nil {
|
|
|
|
log.Error("GuessContentType failed: %v", err)
|
|
|
|
return st
|
|
|
|
}
|
|
|
|
return st
|
|
|
|
}
|
|
|
|
|
2023-02-20 03:56:07 +00:00
|
|
|
setPathsCompareContext(ctx, before, head, headOwner, headName)
|
2021-06-05 12:32:19 +00:00
|
|
|
setImageCompareContext(ctx)
|
2021-03-29 20:44:28 +00:00
|
|
|
setCsvCompareContext(ctx)
|
|
|
|
}
|
|
|
|
|
2021-11-16 18:18:25 +00:00
|
|
|
// SourceCommitURL creates a relative URL for a commit in the given repository
|
|
|
|
func SourceCommitURL(owner, name string, commit *git.Commit) string {
|
|
|
|
return setting.AppSubURL + "/" + url.PathEscape(owner) + "/" + url.PathEscape(name) + "/src/commit/" + url.PathEscape(commit.ID.String())
|
|
|
|
}
|
2019-10-04 19:58:54 +00:00
|
|
|
|
2021-11-16 18:18:25 +00:00
|
|
|
// RawCommitURL creates a relative URL for the raw commit in the given repository
|
|
|
|
func RawCommitURL(owner, name string, commit *git.Commit) string {
|
|
|
|
return setting.AppSubURL + "/" + url.PathEscape(owner) + "/" + url.PathEscape(name) + "/raw/commit/" + url.PathEscape(commit.ID.String())
|
|
|
|
}
|
|
|
|
|
|
|
|
// setPathsCompareContext sets context data for source and raw paths
|
2021-12-20 04:41:31 +00:00
|
|
|
func setPathsCompareContext(ctx *context.Context, base, head *git.Commit, headOwner, headName string) {
|
2021-11-16 18:18:25 +00:00
|
|
|
ctx.Data["SourcePath"] = SourceCommitURL(headOwner, headName, head)
|
|
|
|
ctx.Data["RawPath"] = RawCommitURL(headOwner, headName, head)
|
2019-10-04 19:58:54 +00:00
|
|
|
if base != nil {
|
2022-02-25 06:46:15 +00:00
|
|
|
ctx.Data["BeforeSourcePath"] = SourceCommitURL(headOwner, headName, base)
|
|
|
|
ctx.Data["BeforeRawPath"] = RawCommitURL(headOwner, headName, base)
|
2019-10-04 19:58:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// setImageCompareContext sets context data that is required by image compare template
|
2021-06-05 12:32:19 +00:00
|
|
|
func setImageCompareContext(ctx *context.Context) {
|
2023-10-11 12:34:21 +00:00
|
|
|
ctx.Data["IsSniffedTypeAnImage"] = func(st typesniffer.SniffedType) bool {
|
2021-06-05 12:32:19 +00:00
|
|
|
return st.IsImage() && (setting.UI.SVG.Enabled || !st.IsSvgImage())
|
2019-10-04 19:58:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-29 20:44:28 +00:00
|
|
|
// setCsvCompareContext sets context data that is required by the CSV compare template
|
|
|
|
func setCsvCompareContext(ctx *context.Context) {
|
|
|
|
ctx.Data["IsCsvFile"] = func(diffFile *gitdiff.DiffFile) bool {
|
|
|
|
extension := strings.ToLower(filepath.Ext(diffFile.Name))
|
|
|
|
return extension == ".csv" || extension == ".tsv"
|
|
|
|
}
|
|
|
|
|
|
|
|
type CsvDiffResult struct {
|
|
|
|
Sections []*gitdiff.TableDiffSection
|
|
|
|
Error string
|
|
|
|
}
|
|
|
|
|
2022-09-17 02:45:32 +00:00
|
|
|
ctx.Data["CreateCsvDiff"] = func(diffFile *gitdiff.DiffFile, baseBlob, headBlob *git.Blob) CsvDiffResult {
|
|
|
|
if diffFile == nil {
|
2021-03-29 20:44:28 +00:00
|
|
|
return CsvDiffResult{nil, ""}
|
|
|
|
}
|
|
|
|
|
2024-02-14 21:48:45 +00:00
|
|
|
errTooLarge := errors.New(ctx.Locale.TrString("repo.error.csv.too_large"))
|
2021-03-29 20:44:28 +00:00
|
|
|
|
2022-09-17 02:45:32 +00:00
|
|
|
csvReaderFromCommit := func(ctx *markup.RenderContext, blob *git.Blob) (*csv.Reader, io.Closer, error) {
|
|
|
|
if blob == nil {
|
|
|
|
// It's ok for blob to be nil (file added or deleted)
|
|
|
|
return nil, nil, nil
|
2021-03-29 20:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if setting.UI.CSV.MaxFileSize != 0 && setting.UI.CSV.MaxFileSize < blob.Size() {
|
2021-10-24 22:42:32 +00:00
|
|
|
return nil, nil, errTooLarge
|
2021-03-29 20:44:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
reader, err := blob.DataAsync()
|
|
|
|
if err != nil {
|
2021-10-24 22:42:32 +00:00
|
|
|
return nil, nil, err
|
2021-03-29 20:44:28 +00:00
|
|
|
}
|
|
|
|
|
2024-01-27 18:02:51 +00:00
|
|
|
csvReader, err := csv_module.CreateReaderAndDetermineDelimiter(ctx, charset.ToUTF8WithFallbackReader(reader, charset.ConvertOpts{}))
|
2021-10-24 22:42:32 +00:00
|
|
|
return csvReader, reader, err
|
2021-03-29 20:44:28 +00:00
|
|
|
}
|
|
|
|
|
2022-09-17 02:45:32 +00:00
|
|
|
baseReader, baseBlobCloser, err := csvReaderFromCommit(&markup.RenderContext{Ctx: ctx, RelativePath: diffFile.OldName}, baseBlob)
|
2021-10-24 22:42:32 +00:00
|
|
|
if baseBlobCloser != nil {
|
|
|
|
defer baseBlobCloser.Close()
|
|
|
|
}
|
2022-05-02 16:46:50 +00:00
|
|
|
if err != nil {
|
2022-09-17 02:45:32 +00:00
|
|
|
if err == errTooLarge {
|
|
|
|
return CsvDiffResult{nil, err.Error()}
|
|
|
|
}
|
|
|
|
log.Error("error whilst creating csv.Reader from file %s in base commit %s in %s: %v", diffFile.Name, baseBlob.ID.String(), ctx.Repo.Repository.Name, err)
|
|
|
|
return CsvDiffResult{nil, "unable to load file"}
|
2022-05-02 16:46:50 +00:00
|
|
|
}
|
|
|
|
|
2022-09-17 02:45:32 +00:00
|
|
|
headReader, headBlobCloser, err := csvReaderFromCommit(&markup.RenderContext{Ctx: ctx, RelativePath: diffFile.Name}, headBlob)
|
2021-10-24 22:42:32 +00:00
|
|
|
if headBlobCloser != nil {
|
|
|
|
defer headBlobCloser.Close()
|
|
|
|
}
|
2022-05-02 16:46:50 +00:00
|
|
|
if err != nil {
|
2022-09-17 02:45:32 +00:00
|
|
|
if err == errTooLarge {
|
|
|
|
return CsvDiffResult{nil, err.Error()}
|
|
|
|
}
|
|
|
|
log.Error("error whilst creating csv.Reader from file %s in head commit %s in %s: %v", diffFile.Name, headBlob.ID.String(), ctx.Repo.Repository.Name, err)
|
|
|
|
return CsvDiffResult{nil, "unable to load file"}
|
2022-05-02 16:46:50 +00:00
|
|
|
}
|
2021-03-29 20:44:28 +00:00
|
|
|
|
|
|
|
sections, err := gitdiff.CreateCsvDiff(diffFile, baseReader, headReader)
|
|
|
|
if err != nil {
|
|
|
|
errMessage, err := csv_module.FormatError(err, ctx.Locale)
|
|
|
|
if err != nil {
|
2022-05-02 16:46:50 +00:00
|
|
|
log.Error("CreateCsvDiff FormatError failed: %v", err)
|
|
|
|
return CsvDiffResult{nil, "unknown csv diff error"}
|
2021-03-29 20:44:28 +00:00
|
|
|
}
|
|
|
|
return CsvDiffResult{nil, errMessage}
|
|
|
|
}
|
|
|
|
return CsvDiffResult{sections, ""}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-07 20:29:29 +00:00
|
|
|
// ParseCompareInfo parse compare info between two commit for preparing comparing references
|
2024-04-16 03:45:04 +00:00
|
|
|
func ParseCompareInfo(ctx *context.Context) *common.CompareInfo {
|
2019-06-07 20:29:29 +00:00
|
|
|
baseRepo := ctx.Repo.Repository
|
2024-04-16 03:45:04 +00:00
|
|
|
ci := &common.CompareInfo{}
|
2019-06-07 20:29:29 +00:00
|
|
|
|
2021-10-15 16:05:33 +00:00
|
|
|
fileOnly := ctx.FormBool("file-only")
|
|
|
|
|
2019-06-07 20:29:29 +00:00
|
|
|
// Get compared branches information
|
2020-05-12 05:52:46 +00:00
|
|
|
// A full compare url is of the form:
|
|
|
|
//
|
|
|
|
// 1. /{:baseOwner}/{:baseRepoName}/compare/{:baseBranch}...{:headBranch}
|
|
|
|
// 2. /{:baseOwner}/{:baseRepoName}/compare/{:baseBranch}...{:headOwner}:{:headBranch}
|
|
|
|
// 3. /{:baseOwner}/{:baseRepoName}/compare/{:baseBranch}...{:headOwner}/{:headRepoName}:{:headBranch}
|
2021-12-06 17:04:07 +00:00
|
|
|
// 4. /{:baseOwner}/{:baseRepoName}/compare/{:headBranch}
|
|
|
|
// 5. /{:baseOwner}/{:baseRepoName}/compare/{:headOwner}:{:headBranch}
|
|
|
|
// 6. /{:baseOwner}/{:baseRepoName}/compare/{:headOwner}/{:headRepoName}:{:headBranch}
|
2020-05-12 05:52:46 +00:00
|
|
|
//
|
|
|
|
// Here we obtain the infoPath "{:baseBranch}...[{:headOwner}/{:headRepoName}:]{:headBranch}" as ctx.Params("*")
|
|
|
|
// with the :baseRepo in ctx.Repo.
|
|
|
|
//
|
|
|
|
// Note: Generally :headRepoName is not provided here - we are only passed :headOwner.
|
|
|
|
//
|
|
|
|
// How do we determine the :headRepo?
|
|
|
|
//
|
|
|
|
// 1. If :headOwner is not set then the :headRepo = :baseRepo
|
|
|
|
// 2. If :headOwner is set - then look for the fork of :baseRepo owned by :headOwner
|
|
|
|
// 3. But... :baseRepo could be a fork of :headOwner's repo - so check that
|
|
|
|
// 4. Now, :baseRepo and :headRepos could be forks of the same repo - so check that
|
|
|
|
//
|
2019-06-07 20:29:29 +00:00
|
|
|
// format: <base branch>...[<head repo>:]<head branch>
|
|
|
|
// base<-head: master...head:feature
|
|
|
|
// same repo: master...feature
|
|
|
|
|
|
|
|
var (
|
|
|
|
isSameRepo bool
|
|
|
|
infoPath string
|
|
|
|
err error
|
|
|
|
)
|
2021-09-27 12:19:34 +00:00
|
|
|
|
2019-06-07 20:29:29 +00:00
|
|
|
infoPath = ctx.Params("*")
|
2021-12-17 22:20:27 +00:00
|
|
|
var infos []string
|
|
|
|
if infoPath == "" {
|
|
|
|
infos = []string{baseRepo.DefaultBranch, baseRepo.DefaultBranch}
|
|
|
|
} else {
|
|
|
|
infos = strings.SplitN(infoPath, "...", 2)
|
|
|
|
if len(infos) != 2 {
|
|
|
|
if infos = strings.SplitN(infoPath, "..", 2); len(infos) == 2 {
|
|
|
|
ci.DirectComparison = true
|
|
|
|
ctx.Data["PageIsComparePull"] = false
|
|
|
|
} else {
|
|
|
|
infos = []string{baseRepo.DefaultBranch, infoPath}
|
|
|
|
}
|
2021-12-06 17:04:07 +00:00
|
|
|
}
|
2021-09-27 12:19:34 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 05:52:46 +00:00
|
|
|
ctx.Data["BaseName"] = baseRepo.OwnerName
|
2021-09-27 12:19:34 +00:00
|
|
|
ci.BaseBranch = infos[0]
|
|
|
|
ctx.Data["BaseBranch"] = ci.BaseBranch
|
2019-06-07 20:29:29 +00:00
|
|
|
|
|
|
|
// If there is no head repository, it means compare between same repository.
|
|
|
|
headInfos := strings.Split(infos[1], ":")
|
|
|
|
if len(headInfos) == 1 {
|
|
|
|
isSameRepo = true
|
2021-09-27 12:19:34 +00:00
|
|
|
ci.HeadUser = ctx.Repo.Owner
|
|
|
|
ci.HeadBranch = headInfos[0]
|
2019-06-07 20:29:29 +00:00
|
|
|
} else if len(headInfos) == 2 {
|
2020-05-12 05:52:46 +00:00
|
|
|
headInfosSplit := strings.Split(headInfos[0], "/")
|
|
|
|
if len(headInfosSplit) == 1 {
|
2022-05-20 14:08:52 +00:00
|
|
|
ci.HeadUser, err = user_model.GetUserByName(ctx, headInfos[0])
|
2020-05-12 05:52:46 +00:00
|
|
|
if err != nil {
|
2021-11-24 09:49:20 +00:00
|
|
|
if user_model.IsErrUserNotExist(err) {
|
2020-05-12 05:52:46 +00:00
|
|
|
ctx.NotFound("GetUserByName", nil)
|
|
|
|
} else {
|
|
|
|
ctx.ServerError("GetUserByName", err)
|
|
|
|
}
|
2021-09-27 12:19:34 +00:00
|
|
|
return nil
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
2021-09-27 12:19:34 +00:00
|
|
|
ci.HeadBranch = headInfos[1]
|
|
|
|
isSameRepo = ci.HeadUser.ID == ctx.Repo.Owner.ID
|
2020-05-12 05:52:46 +00:00
|
|
|
if isSameRepo {
|
2021-09-27 12:19:34 +00:00
|
|
|
ci.HeadRepo = baseRepo
|
2020-05-12 05:52:46 +00:00
|
|
|
}
|
|
|
|
} else {
|
2022-12-03 02:48:26 +00:00
|
|
|
ci.HeadRepo, err = repo_model.GetRepositoryByOwnerAndName(ctx, headInfosSplit[0], headInfosSplit[1])
|
2020-05-12 05:52:46 +00:00
|
|
|
if err != nil {
|
2021-12-10 01:27:50 +00:00
|
|
|
if repo_model.IsErrRepoNotExist(err) {
|
2020-05-12 05:52:46 +00:00
|
|
|
ctx.NotFound("GetRepositoryByOwnerAndName", nil)
|
|
|
|
} else {
|
|
|
|
ctx.ServerError("GetRepositoryByOwnerAndName", err)
|
|
|
|
}
|
2021-09-27 12:19:34 +00:00
|
|
|
return nil
|
2020-05-12 05:52:46 +00:00
|
|
|
}
|
2023-02-18 12:11:03 +00:00
|
|
|
if err := ci.HeadRepo.LoadOwner(ctx); err != nil {
|
2021-11-24 09:49:20 +00:00
|
|
|
if user_model.IsErrUserNotExist(err) {
|
2020-05-12 05:52:46 +00:00
|
|
|
ctx.NotFound("GetUserByName", nil)
|
|
|
|
} else {
|
|
|
|
ctx.ServerError("GetUserByName", err)
|
|
|
|
}
|
2021-09-27 12:19:34 +00:00
|
|
|
return nil
|
2020-05-12 05:52:46 +00:00
|
|
|
}
|
2021-09-27 12:19:34 +00:00
|
|
|
ci.HeadBranch = headInfos[1]
|
|
|
|
ci.HeadUser = ci.HeadRepo.Owner
|
|
|
|
isSameRepo = ci.HeadRepo.ID == ctx.Repo.Repository.ID
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ctx.NotFound("CompareAndPullRequest", nil)
|
2021-09-27 12:19:34 +00:00
|
|
|
return nil
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
2021-09-27 12:19:34 +00:00
|
|
|
ctx.Data["HeadUser"] = ci.HeadUser
|
|
|
|
ctx.Data["HeadBranch"] = ci.HeadBranch
|
2019-06-07 20:29:29 +00:00
|
|
|
ctx.Repo.PullRequest.SameRepo = isSameRepo
|
|
|
|
|
|
|
|
// Check if base branch is valid.
|
2021-09-27 12:19:34 +00:00
|
|
|
baseIsCommit := ctx.Repo.GitRepo.IsCommitExist(ci.BaseBranch)
|
|
|
|
baseIsBranch := ctx.Repo.GitRepo.IsBranchExist(ci.BaseBranch)
|
|
|
|
baseIsTag := ctx.Repo.GitRepo.IsTagExist(ci.BaseBranch)
|
2024-02-24 06:55:19 +00:00
|
|
|
|
2019-06-07 20:29:29 +00:00
|
|
|
if !baseIsCommit && !baseIsBranch && !baseIsTag {
|
|
|
|
// Check if baseBranch is short sha commit hash
|
2021-09-27 12:19:34 +00:00
|
|
|
if baseCommit, _ := ctx.Repo.GitRepo.GetCommit(ci.BaseBranch); baseCommit != nil {
|
|
|
|
ci.BaseBranch = baseCommit.ID.String()
|
|
|
|
ctx.Data["BaseBranch"] = ci.BaseBranch
|
2019-06-07 20:29:29 +00:00
|
|
|
baseIsCommit = true
|
2024-02-24 06:55:19 +00:00
|
|
|
} else if ci.BaseBranch == ctx.Repo.GetObjectFormat().EmptyObjectID().String() {
|
2022-03-23 13:40:12 +00:00
|
|
|
if isSameRepo {
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/compare/" + util.PathEscapeSegments(ci.HeadBranch))
|
|
|
|
} else {
|
|
|
|
ctx.Redirect(ctx.Repo.RepoLink + "/compare/" + util.PathEscapeSegments(ci.HeadRepo.FullName()) + ":" + util.PathEscapeSegments(ci.HeadBranch))
|
|
|
|
}
|
|
|
|
return nil
|
2019-06-07 20:29:29 +00:00
|
|
|
} else {
|
|
|
|
ctx.NotFound("IsRefExist", nil)
|
2021-09-27 12:19:34 +00:00
|
|
|
return nil
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["BaseIsCommit"] = baseIsCommit
|
|
|
|
ctx.Data["BaseIsBranch"] = baseIsBranch
|
|
|
|
ctx.Data["BaseIsTag"] = baseIsTag
|
2020-11-17 05:02:41 +00:00
|
|
|
ctx.Data["IsPull"] = true
|
2019-06-07 20:29:29 +00:00
|
|
|
|
2020-05-12 05:52:46 +00:00
|
|
|
// Now we have the repository that represents the base
|
|
|
|
|
|
|
|
// The current base and head repositories and branches may not
|
|
|
|
// actually be the intended branches that the user wants to
|
|
|
|
// create a pull-request from - but also determining the head
|
|
|
|
// repo is difficult.
|
|
|
|
|
|
|
|
// We will want therefore to offer a few repositories to set as
|
|
|
|
// our base and head
|
|
|
|
|
|
|
|
// 1. First if the baseRepo is a fork get the "RootRepo" it was
|
|
|
|
// forked from
|
2021-12-10 01:27:50 +00:00
|
|
|
var rootRepo *repo_model.Repository
|
2020-05-12 05:52:46 +00:00
|
|
|
if baseRepo.IsFork {
|
2022-12-03 02:48:26 +00:00
|
|
|
err = baseRepo.GetBaseRepo(ctx)
|
2020-05-12 05:52:46 +00:00
|
|
|
if err != nil {
|
2021-12-10 01:27:50 +00:00
|
|
|
if !repo_model.IsErrRepoNotExist(err) {
|
2020-05-12 05:52:46 +00:00
|
|
|
ctx.ServerError("Unable to find root repo", err)
|
2021-09-27 12:19:34 +00:00
|
|
|
return nil
|
2020-05-12 05:52:46 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
rootRepo = baseRepo.BaseRepo
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 2. Now if the current user is not the owner of the baseRepo,
|
|
|
|
// check if they have a fork of the base repo and offer that as
|
|
|
|
// "OwnForkRepo"
|
2021-12-10 01:27:50 +00:00
|
|
|
var ownForkRepo *repo_model.Repository
|
2022-03-22 07:03:22 +00:00
|
|
|
if ctx.Doer != nil && baseRepo.OwnerID != ctx.Doer.ID {
|
2023-09-14 17:09:32 +00:00
|
|
|
repo := repo_model.GetForkedRepo(ctx, ctx.Doer.ID, baseRepo.ID)
|
2021-11-22 15:21:55 +00:00
|
|
|
if repo != nil {
|
2020-05-12 05:52:46 +00:00
|
|
|
ownForkRepo = repo
|
|
|
|
ctx.Data["OwnForkRepo"] = ownForkRepo
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-27 12:19:34 +00:00
|
|
|
has := ci.HeadRepo != nil
|
2020-05-12 05:52:46 +00:00
|
|
|
// 3. If the base is a forked from "RootRepo" and the owner of
|
|
|
|
// the "RootRepo" is the :headUser - set headRepo to that
|
2021-09-27 12:19:34 +00:00
|
|
|
if !has && rootRepo != nil && rootRepo.OwnerID == ci.HeadUser.ID {
|
|
|
|
ci.HeadRepo = rootRepo
|
2020-05-12 05:52:46 +00:00
|
|
|
has = true
|
|
|
|
}
|
|
|
|
|
2022-03-22 07:03:22 +00:00
|
|
|
// 4. If the ctx.Doer has their own fork of the baseRepo and the headUser is the ctx.Doer
|
2020-05-12 05:52:46 +00:00
|
|
|
// set the headRepo to the ownFork
|
2021-09-27 12:19:34 +00:00
|
|
|
if !has && ownForkRepo != nil && ownForkRepo.OwnerID == ci.HeadUser.ID {
|
|
|
|
ci.HeadRepo = ownForkRepo
|
2020-05-12 05:52:46 +00:00
|
|
|
has = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// 5. If the headOwner has a fork of the baseRepo - use that
|
|
|
|
if !has {
|
2023-09-14 17:09:32 +00:00
|
|
|
ci.HeadRepo = repo_model.GetForkedRepo(ctx, ci.HeadUser.ID, baseRepo.ID)
|
2021-11-22 15:21:55 +00:00
|
|
|
has = ci.HeadRepo != nil
|
2020-05-12 05:52:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 6. If the baseRepo is a fork and the headUser has a fork of that use that
|
|
|
|
if !has && baseRepo.IsFork {
|
2023-09-14 17:09:32 +00:00
|
|
|
ci.HeadRepo = repo_model.GetForkedRepo(ctx, ci.HeadUser.ID, baseRepo.ForkID)
|
2021-11-22 15:21:55 +00:00
|
|
|
has = ci.HeadRepo != nil
|
2020-05-12 05:52:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// 7. Otherwise if we're not the same repo and haven't found a repo give up
|
|
|
|
if !isSameRepo && !has {
|
2019-06-07 20:29:29 +00:00
|
|
|
ctx.Data["PageIsComparePull"] = false
|
|
|
|
}
|
|
|
|
|
2020-05-12 05:52:46 +00:00
|
|
|
// 8. Finally open the git repo
|
2019-06-07 20:29:29 +00:00
|
|
|
if isSameRepo {
|
2021-09-27 12:19:34 +00:00
|
|
|
ci.HeadRepo = ctx.Repo.Repository
|
|
|
|
ci.HeadGitRepo = ctx.Repo.GitRepo
|
2020-05-12 05:52:46 +00:00
|
|
|
} else if has {
|
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
|
|
|
ci.HeadGitRepo, err = gitrepo.OpenRepository(ctx, ci.HeadRepo)
|
2019-06-07 20:29:29 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("OpenRepository", err)
|
2021-09-27 12:19:34 +00:00
|
|
|
return nil
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
2021-09-27 12:19:34 +00:00
|
|
|
defer ci.HeadGitRepo.Close()
|
2023-10-04 13:59:03 +00:00
|
|
|
} else {
|
|
|
|
ctx.NotFound("ParseCompareInfo", nil)
|
|
|
|
return nil
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
|
|
|
|
2021-09-27 12:19:34 +00:00
|
|
|
ctx.Data["HeadRepo"] = ci.HeadRepo
|
2022-04-28 15:45:33 +00:00
|
|
|
ctx.Data["BaseCompareRepo"] = ctx.Repo.Repository
|
2020-05-12 05:52:46 +00:00
|
|
|
|
2022-03-22 07:03:22 +00:00
|
|
|
// Now we need to assert that the ctx.Doer has permission to read
|
2020-05-12 05:52:46 +00:00
|
|
|
// the baseRepo's code and pulls
|
|
|
|
// (NOT headRepo's)
|
2022-05-11 10:09:36 +00:00
|
|
|
permBase, err := access_model.GetUserRepoPermission(ctx, baseRepo, ctx.Doer)
|
2019-06-07 20:29:29 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetUserRepoPermission", err)
|
2021-09-27 12:19:34 +00:00
|
|
|
return nil
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
2021-11-09 19:57:58 +00:00
|
|
|
if !permBase.CanRead(unit.TypeCode) {
|
2019-06-07 20:29:29 +00:00
|
|
|
if log.IsTrace() {
|
|
|
|
log.Trace("Permission Denied: User: %-v cannot read code in Repo: %-v\nUser in baseRepo has Permissions: %-+v",
|
2022-03-22 07:03:22 +00:00
|
|
|
ctx.Doer,
|
2019-06-07 20:29:29 +00:00
|
|
|
baseRepo,
|
|
|
|
permBase)
|
|
|
|
}
|
|
|
|
ctx.NotFound("ParseCompareInfo", nil)
|
2021-09-27 12:19:34 +00:00
|
|
|
return nil
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 05:52:46 +00:00
|
|
|
// If we're not merging from the same repo:
|
2020-01-16 19:59:07 +00:00
|
|
|
if !isSameRepo {
|
2022-03-22 07:03:22 +00:00
|
|
|
// Assert ctx.Doer has permission to read headRepo's codes
|
2022-05-11 10:09:36 +00:00
|
|
|
permHead, err := access_model.GetUserRepoPermission(ctx, ci.HeadRepo, ctx.Doer)
|
2020-01-16 19:59:07 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetUserRepoPermission", err)
|
2021-09-27 12:19:34 +00:00
|
|
|
return nil
|
2020-01-16 19:59:07 +00:00
|
|
|
}
|
2021-11-09 19:57:58 +00:00
|
|
|
if !permHead.CanRead(unit.TypeCode) {
|
2020-01-16 19:59:07 +00:00
|
|
|
if log.IsTrace() {
|
|
|
|
log.Trace("Permission Denied: User: %-v cannot read code in Repo: %-v\nUser in headRepo has Permissions: %-+v",
|
2022-03-22 07:03:22 +00:00
|
|
|
ctx.Doer,
|
2021-09-27 12:19:34 +00:00
|
|
|
ci.HeadRepo,
|
2020-01-16 19:59:07 +00:00
|
|
|
permHead)
|
|
|
|
}
|
|
|
|
ctx.NotFound("ParseCompareInfo", nil)
|
2021-09-27 12:19:34 +00:00
|
|
|
return nil
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
2022-04-28 15:45:33 +00:00
|
|
|
ctx.Data["CanWriteToHeadRepo"] = permHead.CanWrite(unit.TypeCode)
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
|
|
|
|
2020-05-12 05:52:46 +00:00
|
|
|
// If we have a rootRepo and it's different from:
|
|
|
|
// 1. the computed base
|
|
|
|
// 2. the computed head
|
|
|
|
// then get the branches of it
|
|
|
|
if rootRepo != nil &&
|
2021-09-27 12:19:34 +00:00
|
|
|
rootRepo.ID != ci.HeadRepo.ID &&
|
2020-05-12 05:52:46 +00:00
|
|
|
rootRepo.ID != baseRepo.ID {
|
2022-08-25 02:31:57 +00:00
|
|
|
canRead := access_model.CheckRepoUnitUser(ctx, rootRepo, ctx.Doer, unit.TypeCode)
|
2023-08-29 09:07:15 +00:00
|
|
|
if canRead {
|
2020-05-12 05:52:46 +00:00
|
|
|
ctx.Data["RootRepo"] = rootRepo
|
2021-10-15 16:05:33 +00:00
|
|
|
if !fileOnly {
|
2022-01-19 23:26:57 +00:00
|
|
|
branches, tags, err := getBranchesAndTagsForRepo(ctx, rootRepo)
|
2021-10-15 16:05:33 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetBranchesForRepo", err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
ctx.Data["RootRepoBranches"] = branches
|
|
|
|
ctx.Data["RootRepoTags"] = tags
|
|
|
|
}
|
2020-05-12 05:52:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If we have a ownForkRepo and it's different from:
|
|
|
|
// 1. The computed base
|
2021-05-07 21:10:05 +00:00
|
|
|
// 2. The computed head
|
2020-05-12 05:52:46 +00:00
|
|
|
// 3. The rootRepo (if we have one)
|
|
|
|
// then get the branches from it.
|
|
|
|
if ownForkRepo != nil &&
|
2021-09-27 12:19:34 +00:00
|
|
|
ownForkRepo.ID != ci.HeadRepo.ID &&
|
2020-05-12 05:52:46 +00:00
|
|
|
ownForkRepo.ID != baseRepo.ID &&
|
|
|
|
(rootRepo == nil || ownForkRepo.ID != rootRepo.ID) {
|
2022-08-25 02:31:57 +00:00
|
|
|
canRead := access_model.CheckRepoUnitUser(ctx, ownForkRepo, ctx.Doer, unit.TypeCode)
|
2021-10-15 16:05:33 +00:00
|
|
|
if canRead {
|
2020-05-12 05:52:46 +00:00
|
|
|
ctx.Data["OwnForkRepo"] = ownForkRepo
|
2021-10-15 16:05:33 +00:00
|
|
|
if !fileOnly {
|
2022-01-19 23:26:57 +00:00
|
|
|
branches, tags, err := getBranchesAndTagsForRepo(ctx, ownForkRepo)
|
2021-10-15 16:05:33 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetBranchesForRepo", err)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
ctx.Data["OwnForkRepoBranches"] = branches
|
|
|
|
ctx.Data["OwnForkRepoTags"] = tags
|
|
|
|
}
|
2020-05-12 05:52:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-07 20:29:29 +00:00
|
|
|
// Check if head branch is valid.
|
2021-09-27 12:19:34 +00:00
|
|
|
headIsCommit := ci.HeadGitRepo.IsCommitExist(ci.HeadBranch)
|
|
|
|
headIsBranch := ci.HeadGitRepo.IsBranchExist(ci.HeadBranch)
|
|
|
|
headIsTag := ci.HeadGitRepo.IsTagExist(ci.HeadBranch)
|
2019-06-07 20:29:29 +00:00
|
|
|
if !headIsCommit && !headIsBranch && !headIsTag {
|
|
|
|
// Check if headBranch is short sha commit hash
|
2021-09-27 12:19:34 +00:00
|
|
|
if headCommit, _ := ci.HeadGitRepo.GetCommit(ci.HeadBranch); headCommit != nil {
|
|
|
|
ci.HeadBranch = headCommit.ID.String()
|
|
|
|
ctx.Data["HeadBranch"] = ci.HeadBranch
|
2019-06-07 20:29:29 +00:00
|
|
|
headIsCommit = true
|
|
|
|
} else {
|
|
|
|
ctx.NotFound("IsRefExist", nil)
|
2021-09-27 12:19:34 +00:00
|
|
|
return nil
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["HeadIsCommit"] = headIsCommit
|
|
|
|
ctx.Data["HeadIsBranch"] = headIsBranch
|
|
|
|
ctx.Data["HeadIsTag"] = headIsTag
|
|
|
|
|
|
|
|
// Treat as pull request if both references are branches
|
|
|
|
if ctx.Data["PageIsComparePull"] == nil {
|
|
|
|
ctx.Data["PageIsComparePull"] = headIsBranch && baseIsBranch
|
|
|
|
}
|
|
|
|
|
|
|
|
if ctx.Data["PageIsComparePull"] == true && !permBase.CanReadIssuesOrPulls(true) {
|
|
|
|
if log.IsTrace() {
|
|
|
|
log.Trace("Permission Denied: User: %-v cannot create/read pull requests in Repo: %-v\nUser in baseRepo has Permissions: %-+v",
|
2022-03-22 07:03:22 +00:00
|
|
|
ctx.Doer,
|
2019-06-07 20:29:29 +00:00
|
|
|
baseRepo,
|
|
|
|
permBase)
|
|
|
|
}
|
|
|
|
ctx.NotFound("ParseCompareInfo", nil)
|
2021-09-27 12:19:34 +00:00
|
|
|
return nil
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
|
|
|
|
2021-09-27 12:19:34 +00:00
|
|
|
baseBranchRef := ci.BaseBranch
|
2020-06-11 23:49:47 +00:00
|
|
|
if baseIsBranch {
|
2021-09-27 12:19:34 +00:00
|
|
|
baseBranchRef = git.BranchPrefix + ci.BaseBranch
|
2020-06-11 23:49:47 +00:00
|
|
|
} else if baseIsTag {
|
2021-09-27 12:19:34 +00:00
|
|
|
baseBranchRef = git.TagPrefix + ci.BaseBranch
|
2020-06-11 23:49:47 +00:00
|
|
|
}
|
2021-09-27 12:19:34 +00:00
|
|
|
headBranchRef := ci.HeadBranch
|
2020-06-11 23:49:47 +00:00
|
|
|
if headIsBranch {
|
2021-09-27 12:19:34 +00:00
|
|
|
headBranchRef = git.BranchPrefix + ci.HeadBranch
|
2020-06-11 23:49:47 +00:00
|
|
|
} else if headIsTag {
|
2021-09-27 12:19:34 +00:00
|
|
|
headBranchRef = git.TagPrefix + ci.HeadBranch
|
2020-06-11 23:49:47 +00:00
|
|
|
}
|
|
|
|
|
2021-10-15 16:05:33 +00:00
|
|
|
ci.CompareInfo, err = ci.HeadGitRepo.GetCompareInfo(baseRepo.RepoPath(), baseBranchRef, headBranchRef, ci.DirectComparison, fileOnly)
|
2019-06-07 20:29:29 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetCompareInfo", err)
|
2021-09-27 12:19:34 +00:00
|
|
|
return nil
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
2023-04-16 07:27:23 +00:00
|
|
|
if ci.DirectComparison {
|
|
|
|
ctx.Data["BeforeCommitID"] = ci.CompareInfo.BaseCommitID
|
|
|
|
} else {
|
|
|
|
ctx.Data["BeforeCommitID"] = ci.CompareInfo.MergeBase
|
|
|
|
}
|
2019-06-07 20:29:29 +00:00
|
|
|
|
2021-09-27 12:19:34 +00:00
|
|
|
return ci
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// PrepareCompareDiff renders compare diff page
|
|
|
|
func PrepareCompareDiff(
|
|
|
|
ctx *context.Context,
|
2024-04-16 03:45:04 +00:00
|
|
|
ci *common.CompareInfo,
|
Refactor git command package to improve security and maintainability (#22678)
This PR follows #21535 (and replace #22592)
## Review without space diff
https://github.com/go-gitea/gitea/pull/22678/files?diff=split&w=1
## Purpose of this PR
1. Make git module command completely safe (risky user inputs won't be
passed as argument option anymore)
2. Avoid low-level mistakes like
https://github.com/go-gitea/gitea/pull/22098#discussion_r1045234918
3. Remove deprecated and dirty `CmdArgCheck` function, hide the `CmdArg`
type
4. Simplify code when using git command
## The main idea of this PR
* Move the `git.CmdArg` to the `internal` package, then no other package
except `git` could use it. Then developers could never do
`AddArguments(git.CmdArg(userInput))` any more.
* Introduce `git.ToTrustedCmdArgs`, it's for user-provided and already
trusted arguments. It's only used in a few cases, for example: use git
arguments from config file, help unit test with some arguments.
* Introduce `AddOptionValues` and `AddOptionFormat`, they make code more
clear and simple:
* Before: `AddArguments("-m").AddDynamicArguments(message)`
* After: `AddOptionValues("-m", message)`
* -
* Before: `AddArguments(git.CmdArg(fmt.Sprintf("--author='%s <%s>'",
sig.Name, sig.Email)))`
* After: `AddOptionFormat("--author='%s <%s>'", sig.Name, sig.Email)`
## FAQ
### Why these changes were not done in #21535 ?
#21535 is mainly a search&replace, it did its best to not change too
much logic.
Making the framework better needs a lot of changes, so this separate PR
is needed as the second step.
### The naming of `AddOptionXxx`
According to git's manual, the `--xxx` part is called `option`.
### How can it guarantee that `internal.CmdArg` won't be not misused?
Go's specification guarantees that. Trying to access other package's
internal package causes compilation error.
And, `golangci-lint` also denies the git/internal package. Only the
`git/command.go` can use it carefully.
### There is still a `ToTrustedCmdArgs`, will it still allow developers
to make mistakes and pass untrusted arguments?
Generally speaking, no. Because when using `ToTrustedCmdArgs`, the code
will be very complex (see the changes for examples). Then developers and
reviewers can know that something might be unreasonable.
### Why there was a `CmdArgCheck` and why it's removed?
At the moment of #21535, to reduce unnecessary changes, `CmdArgCheck`
was introduced as a hacky patch. Now, almost all code could be written
as `cmd := NewCommand(); cmd.AddXxx(...)`, then there is no need for
`CmdArgCheck` anymore.
### Why many codes for `signArg == ""` is deleted?
Because in the old code, `signArg` could never be empty string, it's
either `-S[key-id]` or `--no-gpg-sign`. So the `signArg == ""` is just
dead code.
---------
Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
2023-02-04 02:30:43 +00:00
|
|
|
whitespaceBehavior git.TrustedCmdArgs,
|
2022-01-20 17:46:10 +00:00
|
|
|
) bool {
|
2019-06-07 20:29:29 +00:00
|
|
|
var (
|
|
|
|
repo = ctx.Repo.Repository
|
|
|
|
err error
|
|
|
|
title string
|
|
|
|
)
|
|
|
|
|
|
|
|
// Get diff information.
|
2021-09-27 12:19:34 +00:00
|
|
|
ctx.Data["CommitRepoLink"] = ci.HeadRepo.Link()
|
2019-06-07 20:29:29 +00:00
|
|
|
|
2021-09-27 12:19:34 +00:00
|
|
|
headCommitID := ci.CompareInfo.HeadCommitID
|
2019-06-07 20:29:29 +00:00
|
|
|
|
|
|
|
ctx.Data["AfterCommitID"] = headCommitID
|
|
|
|
|
2021-09-27 12:19:34 +00:00
|
|
|
if (headCommitID == ci.CompareInfo.MergeBase && !ci.DirectComparison) ||
|
|
|
|
headCommitID == ci.CompareInfo.BaseCommitID {
|
2019-06-07 20:29:29 +00:00
|
|
|
ctx.Data["IsNothingToCompare"] = true
|
2022-12-10 02:46:31 +00:00
|
|
|
if unit, err := repo.GetUnit(ctx, unit.TypePullRequests); err == nil {
|
2021-03-04 03:41:23 +00:00
|
|
|
config := unit.PullRequestsConfig()
|
2021-03-29 06:58:48 +00:00
|
|
|
|
2021-03-04 03:41:23 +00:00
|
|
|
if !config.AutodetectManualMerge {
|
2021-09-27 12:19:34 +00:00
|
|
|
allowEmptyPr := !(ci.BaseBranch == ci.HeadBranch && ctx.Repo.Repository.Name == ci.HeadRepo.Name)
|
2021-03-29 06:58:48 +00:00
|
|
|
ctx.Data["AllowEmptyPr"] = allowEmptyPr
|
|
|
|
|
|
|
|
return !allowEmptyPr
|
2021-03-04 03:41:23 +00:00
|
|
|
}
|
2021-03-29 06:58:48 +00:00
|
|
|
|
|
|
|
ctx.Data["AllowEmptyPr"] = false
|
2021-03-04 03:41:23 +00:00
|
|
|
}
|
2019-06-07 20:29:29 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2021-09-27 12:19:34 +00:00
|
|
|
beforeCommitID := ci.CompareInfo.MergeBase
|
|
|
|
if ci.DirectComparison {
|
|
|
|
beforeCommitID = ci.CompareInfo.BaseCommitID
|
|
|
|
}
|
|
|
|
|
2021-11-21 16:51:08 +00:00
|
|
|
maxLines, maxFiles := setting.Git.MaxGitDiffLines, setting.Git.MaxGitDiffFiles
|
|
|
|
files := ctx.FormStrings("files")
|
|
|
|
if len(files) == 2 || len(files) == 1 {
|
|
|
|
maxLines, maxFiles = -1, -1
|
|
|
|
}
|
|
|
|
|
2023-10-03 10:30:41 +00:00
|
|
|
diff, err := gitdiff.GetDiff(ctx, ci.HeadGitRepo,
|
2021-11-21 16:51:08 +00:00
|
|
|
&gitdiff.DiffOptions{
|
|
|
|
BeforeCommitID: beforeCommitID,
|
|
|
|
AfterCommitID: headCommitID,
|
|
|
|
SkipTo: ctx.FormString("skip-to"),
|
|
|
|
MaxLines: maxLines,
|
|
|
|
MaxLineCharacters: setting.Git.MaxGitDiffLineCharacters,
|
|
|
|
MaxFiles: maxFiles,
|
|
|
|
WhitespaceBehavior: whitespaceBehavior,
|
|
|
|
DirectComparison: ci.DirectComparison,
|
|
|
|
}, ctx.FormStrings("files")...)
|
2019-06-07 20:29:29 +00:00
|
|
|
if err != nil {
|
2021-02-13 04:35:43 +00:00
|
|
|
ctx.ServerError("GetDiffRangeWithWhitespaceBehavior", err)
|
2019-06-07 20:29:29 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
ctx.Data["Diff"] = diff
|
2020-05-26 05:58:07 +00:00
|
|
|
ctx.Data["DiffNotAvailable"] = diff.NumFiles == 0
|
2019-06-07 20:29:29 +00:00
|
|
|
|
2021-09-27 12:19:34 +00:00
|
|
|
headCommit, err := ci.HeadGitRepo.GetCommit(headCommitID)
|
2019-06-07 20:29:29 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetCommit", err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2019-09-16 09:03:22 +00:00
|
|
|
baseGitRepo := ctx.Repo.GitRepo
|
|
|
|
|
2023-02-20 03:56:07 +00:00
|
|
|
beforeCommit, err := baseGitRepo.GetCommit(beforeCommitID)
|
2019-09-16 09:03:22 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetCommit", err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2024-07-28 15:11:40 +00:00
|
|
|
commits := processGitCommits(ctx, ci.CompareInfo.Commits)
|
2021-08-09 18:08:51 +00:00
|
|
|
ctx.Data["Commits"] = commits
|
|
|
|
ctx.Data["CommitCount"] = len(commits)
|
|
|
|
|
|
|
|
if len(commits) == 1 {
|
|
|
|
c := commits[0]
|
2019-06-07 20:29:29 +00:00
|
|
|
title = strings.TrimSpace(c.UserCommit.Summary())
|
|
|
|
|
|
|
|
body := strings.Split(strings.TrimSpace(c.UserCommit.Message()), "\n")
|
|
|
|
if len(body) > 1 {
|
|
|
|
ctx.Data["content"] = strings.Join(body[1:], "\n")
|
|
|
|
}
|
|
|
|
} else {
|
2021-09-27 12:19:34 +00:00
|
|
|
title = ci.HeadBranch
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
2021-07-25 02:59:27 +00:00
|
|
|
if len(title) > 255 {
|
|
|
|
var trailer string
|
|
|
|
title, trailer = util.SplitStringAtByteN(title, 255)
|
|
|
|
if len(trailer) > 0 {
|
|
|
|
if ctx.Data["content"] != nil {
|
|
|
|
ctx.Data["content"] = fmt.Sprintf("%s\n\n%s", trailer, ctx.Data["content"])
|
|
|
|
} else {
|
|
|
|
ctx.Data["content"] = trailer + "\n"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-06-07 20:29:29 +00:00
|
|
|
ctx.Data["title"] = title
|
2021-09-27 12:19:34 +00:00
|
|
|
ctx.Data["Username"] = ci.HeadUser.Name
|
|
|
|
ctx.Data["Reponame"] = ci.HeadRepo.Name
|
2019-06-07 20:29:29 +00:00
|
|
|
|
2024-04-05 03:27:20 +00:00
|
|
|
setCompareContext(ctx, beforeCommit, headCommit, ci.HeadUser.Name, ci.HeadRepo.Name)
|
2019-09-16 09:03:22 +00:00
|
|
|
|
2019-06-07 20:29:29 +00:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-01-19 23:26:57 +00:00
|
|
|
func getBranchesAndTagsForRepo(ctx gocontext.Context, repo *repo_model.Repository) (branches, tags []string, err error) {
|
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.OpenRepository(ctx, repo)
|
2019-10-30 05:58:18 +00:00
|
|
|
if err != nil {
|
2021-10-15 16:05:33 +00:00
|
|
|
return nil, nil, err
|
2019-10-30 05:58:18 +00:00
|
|
|
}
|
2020-05-12 05:52:46 +00:00
|
|
|
defer gitRepo.Close()
|
2019-11-13 07:01:19 +00:00
|
|
|
|
2023-06-29 10:03:20 +00:00
|
|
|
branches, err = git_model.FindBranchNames(ctx, git_model.FindBranchOptions{
|
2024-03-22 12:53:52 +00:00
|
|
|
RepoID: repo.ID,
|
|
|
|
ListOptions: db.ListOptionsAll,
|
2024-02-23 02:18:33 +00:00
|
|
|
IsDeletedBranch: optional.Some(false),
|
2023-06-29 10:03:20 +00:00
|
|
|
})
|
2019-10-30 05:58:18 +00:00
|
|
|
if err != nil {
|
2021-10-15 16:05:33 +00:00
|
|
|
return nil, nil, err
|
2019-10-30 05:58:18 +00:00
|
|
|
}
|
2021-10-15 16:05:33 +00:00
|
|
|
tags, err = gitRepo.GetTags(0, 0)
|
2021-05-07 21:10:05 +00:00
|
|
|
if err != nil {
|
2021-10-15 16:05:33 +00:00
|
|
|
return nil, nil, err
|
2021-05-07 21:10:05 +00:00
|
|
|
}
|
2021-10-15 16:05:33 +00:00
|
|
|
return branches, tags, nil
|
2019-10-30 05:58:18 +00:00
|
|
|
}
|
|
|
|
|
2019-06-07 20:29:29 +00:00
|
|
|
// CompareDiff show different from one commit to another commit
|
|
|
|
func CompareDiff(ctx *context.Context) {
|
2021-09-27 12:19:34 +00:00
|
|
|
ci := ParseCompareInfo(ctx)
|
2021-08-31 04:16:23 +00:00
|
|
|
defer func() {
|
2021-09-30 19:31:02 +00:00
|
|
|
if ci != nil && ci.HeadGitRepo != nil {
|
2021-09-27 12:19:34 +00:00
|
|
|
ci.HeadGitRepo.Close()
|
2021-08-31 04:16:23 +00:00
|
|
|
}
|
|
|
|
}()
|
2019-06-07 20:29:29 +00:00
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
2019-11-13 07:01:19 +00:00
|
|
|
|
2021-12-16 19:01:14 +00:00
|
|
|
ctx.Data["PullRequestWorkInProgressPrefixes"] = setting.Repository.PullRequest.WorkInProgressPrefixes
|
2021-09-27 12:19:34 +00:00
|
|
|
ctx.Data["DirectComparison"] = ci.DirectComparison
|
|
|
|
ctx.Data["OtherCompareSeparator"] = ".."
|
|
|
|
ctx.Data["CompareSeparator"] = "..."
|
|
|
|
if ci.DirectComparison {
|
|
|
|
ctx.Data["CompareSeparator"] = ".."
|
|
|
|
ctx.Data["OtherCompareSeparator"] = "..."
|
|
|
|
}
|
|
|
|
|
|
|
|
nothingToCompare := PrepareCompareDiff(ctx, ci,
|
2021-02-13 04:35:43 +00:00
|
|
|
gitdiff.GetWhitespaceFlag(ctx.Data["WhitespaceBehavior"].(string)))
|
2019-06-07 20:29:29 +00:00
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-03-16 17:01:10 +00:00
|
|
|
baseTags, err := repo_model.GetTagNamesByRepoID(ctx, ctx.Repo.Repository.ID)
|
2021-05-07 21:10:05 +00:00
|
|
|
if err != nil {
|
2023-03-16 17:01:10 +00:00
|
|
|
ctx.ServerError("GetTagNamesByRepoID", err)
|
2021-05-07 21:10:05 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["Tags"] = baseTags
|
2019-08-11 15:23:49 +00:00
|
|
|
|
2021-10-15 16:05:33 +00:00
|
|
|
fileOnly := ctx.FormBool("file-only")
|
|
|
|
if fileOnly {
|
|
|
|
ctx.HTML(http.StatusOK, tplDiffBox)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-06-29 10:03:20 +00:00
|
|
|
headBranches, err := git_model.FindBranchNames(ctx, git_model.FindBranchOptions{
|
2024-03-22 12:53:52 +00:00
|
|
|
RepoID: ci.HeadRepo.ID,
|
|
|
|
ListOptions: db.ListOptionsAll,
|
2024-02-23 02:18:33 +00:00
|
|
|
IsDeletedBranch: optional.Some(false),
|
2023-06-29 10:03:20 +00:00
|
|
|
})
|
2021-05-07 21:10:05 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("GetBranches", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["HeadBranches"] = headBranches
|
|
|
|
|
2023-07-21 11:20:04 +00:00
|
|
|
// For compare repo branches
|
|
|
|
PrepareBranchList(ctx)
|
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-03-16 17:01:10 +00:00
|
|
|
headTags, err := repo_model.GetTagNamesByRepoID(ctx, ci.HeadRepo.ID)
|
2021-05-07 21:10:05 +00:00
|
|
|
if err != nil {
|
2023-03-16 17:01:10 +00:00
|
|
|
ctx.ServerError("GetTagNamesByRepoID", err)
|
2021-05-07 21:10:05 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Data["HeadTags"] = headTags
|
|
|
|
|
|
|
|
if ctx.Data["PageIsComparePull"] == true {
|
2022-11-19 08:12:33 +00:00
|
|
|
pr, err := issues_model.GetUnmergedPullRequest(ctx, ci.HeadRepo.ID, ctx.Repo.Repository.ID, ci.HeadBranch, ci.BaseBranch, issues_model.PullRequestFlowGithub)
|
2019-06-07 20:29:29 +00:00
|
|
|
if err != nil {
|
2022-06-13 09:37:59 +00:00
|
|
|
if !issues_model.IsErrPullRequestNotExist(err) {
|
2019-06-07 20:29:29 +00:00
|
|
|
ctx.ServerError("GetUnmergedPullRequest", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
ctx.Data["HasPullRequest"] = true
|
2022-11-19 08:12:33 +00:00
|
|
|
if err := pr.LoadIssue(ctx); err != nil {
|
2021-12-24 12:14:42 +00:00
|
|
|
ctx.ServerError("LoadIssue", err)
|
|
|
|
return
|
|
|
|
}
|
2019-06-07 20:29:29 +00:00
|
|
|
ctx.Data["PullRequest"] = pr
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplCompareDiff)
|
2019-06-07 20:29:29 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if !nothingToCompare {
|
|
|
|
// Setup information for new form.
|
2020-01-19 06:43:38 +00:00
|
|
|
RetrieveRepoMetas(ctx, ctx.Repo.Repository, true)
|
2019-06-07 20:29:29 +00:00
|
|
|
if ctx.Written() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
beforeCommitID := ctx.Data["BeforeCommitID"].(string)
|
|
|
|
afterCommitID := ctx.Data["AfterCommitID"].(string)
|
|
|
|
|
2021-09-27 12:19:34 +00:00
|
|
|
separator := "..."
|
|
|
|
if ci.DirectComparison {
|
|
|
|
separator = ".."
|
|
|
|
}
|
|
|
|
ctx.Data["Title"] = "Comparing " + base.ShortSha(beforeCommitID) + separator + base.ShortSha(afterCommitID)
|
2019-06-07 20:29:29 +00:00
|
|
|
|
|
|
|
ctx.Data["IsDiffCompare"] = true
|
2023-09-14 14:20:16 +00:00
|
|
|
_, templateErrs := setTemplateIfExists(ctx, pullRequestTemplateKey, pullRequestTemplateCandidates)
|
2022-09-02 07:58:49 +00:00
|
|
|
|
|
|
|
if len(templateErrs) > 0 {
|
|
|
|
ctx.Flash.Warning(renderErrorOfTemplates(ctx, templateErrs), true)
|
|
|
|
}
|
2022-07-24 03:45:33 +00:00
|
|
|
|
2023-01-30 14:39:07 +00:00
|
|
|
if content, ok := ctx.Data["content"].(string); ok && content != "" {
|
|
|
|
// If a template content is set, prepend the "content". In this case that's only
|
|
|
|
// applicable if you have one commit to compare and that commit has a message.
|
|
|
|
// In that case the commit message will be prepend to the template body.
|
|
|
|
if templateContent, ok := ctx.Data[pullRequestTemplateKey].(string); ok && templateContent != "" {
|
2024-05-09 13:49:37 +00:00
|
|
|
// Reuse the same key as that's prioritized over the "content" key.
|
2022-07-24 03:45:33 +00:00
|
|
|
// Add two new lines between the content to ensure there's always at least
|
|
|
|
// one empty line between them.
|
|
|
|
ctx.Data[pullRequestTemplateKey] = content + "\n\n" + templateContent
|
|
|
|
}
|
2023-01-30 14:39:07 +00:00
|
|
|
|
|
|
|
// When using form fields, also add content to field with id "body".
|
|
|
|
if fields, ok := ctx.Data["Fields"].([]*api.IssueFormField); ok {
|
|
|
|
for _, field := range fields {
|
|
|
|
if field.ID == "body" {
|
|
|
|
if fieldValue, ok := field.Attributes["value"].(string); ok && fieldValue != "" {
|
|
|
|
field.Attributes["value"] = content + "\n\n" + fieldValue
|
|
|
|
} else {
|
|
|
|
field.Attributes["value"] = content
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-07-24 03:45:33 +00:00
|
|
|
}
|
|
|
|
|
2024-01-12 15:25:15 +00:00
|
|
|
ctx.Data["IsProjectsEnabled"] = ctx.Repo.CanWrite(unit.TypeProjects)
|
2020-10-05 05:49:33 +00:00
|
|
|
ctx.Data["IsAttachmentEnabled"] = setting.Attachment.Enabled
|
|
|
|
upload.AddUploadContext(ctx, "comment")
|
2019-06-07 20:29:29 +00:00
|
|
|
|
2021-11-09 19:57:58 +00:00
|
|
|
ctx.Data["HasIssuesOrPullsWritePermission"] = ctx.Repo.CanWrite(unit.TypePullRequests)
|
2020-04-04 05:39:48 +00:00
|
|
|
|
2023-02-13 06:09:52 +00:00
|
|
|
if unit, err := ctx.Repo.Repository.GetUnit(ctx, unit.TypePullRequests); err == nil {
|
|
|
|
config := unit.PullRequestsConfig()
|
|
|
|
ctx.Data["AllowMaintainerEdit"] = config.DefaultAllowMaintainerEdit
|
|
|
|
} else {
|
|
|
|
ctx.Data["AllowMaintainerEdit"] = false
|
|
|
|
}
|
|
|
|
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplCompare)
|
2019-06-07 20:29:29 +00:00
|
|
|
}
|
2019-11-15 02:52:59 +00:00
|
|
|
|
|
|
|
// ExcerptBlob render blob excerpt contents
|
|
|
|
func ExcerptBlob(ctx *context.Context) {
|
|
|
|
commitID := ctx.Params("sha")
|
2021-07-29 01:42:15 +00:00
|
|
|
lastLeft := ctx.FormInt("last_left")
|
|
|
|
lastRight := ctx.FormInt("last_right")
|
|
|
|
idxLeft := ctx.FormInt("left")
|
|
|
|
idxRight := ctx.FormInt("right")
|
|
|
|
leftHunkSize := ctx.FormInt("left_hunk_size")
|
|
|
|
rightHunkSize := ctx.FormInt("right_hunk_size")
|
2021-08-11 00:31:13 +00:00
|
|
|
anchor := ctx.FormString("anchor")
|
|
|
|
direction := ctx.FormString("direction")
|
|
|
|
filePath := ctx.FormString("path")
|
2019-11-15 02:52:59 +00:00
|
|
|
gitRepo := ctx.Repo.GitRepo
|
2022-02-05 18:26:12 +00:00
|
|
|
if ctx.FormBool("wiki") {
|
|
|
|
var err error
|
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)
|
2022-02-05 18:26:12 +00:00
|
|
|
if err != nil {
|
|
|
|
ctx.ServerError("OpenRepository", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
defer gitRepo.Close()
|
|
|
|
}
|
2020-08-20 14:53:06 +00:00
|
|
|
chunkSize := gitdiff.BlobExcerptChunkSize
|
2019-11-15 02:52:59 +00:00
|
|
|
commit, err := gitRepo.GetCommit(commitID)
|
|
|
|
if err != nil {
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "GetCommit")
|
2019-11-15 02:52:59 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
section := &gitdiff.DiffSection{
|
2020-07-12 18:25:05 +00:00
|
|
|
FileName: filePath,
|
|
|
|
Name: filePath,
|
2019-11-15 02:52:59 +00:00
|
|
|
}
|
|
|
|
if direction == "up" && (idxLeft-lastLeft) > chunkSize {
|
|
|
|
idxLeft -= chunkSize
|
|
|
|
idxRight -= chunkSize
|
|
|
|
leftHunkSize += chunkSize
|
|
|
|
rightHunkSize += chunkSize
|
|
|
|
section.Lines, err = getExcerptLines(commit, filePath, idxLeft-1, idxRight-1, chunkSize)
|
|
|
|
} else if direction == "down" && (idxLeft-lastLeft) > chunkSize {
|
|
|
|
section.Lines, err = getExcerptLines(commit, filePath, lastLeft, lastRight, chunkSize)
|
|
|
|
lastLeft += chunkSize
|
|
|
|
lastRight += chunkSize
|
|
|
|
} else {
|
2021-06-24 15:47:46 +00:00
|
|
|
offset := -1
|
|
|
|
if direction == "down" {
|
|
|
|
offset = 0
|
|
|
|
}
|
|
|
|
section.Lines, err = getExcerptLines(commit, filePath, lastLeft, lastRight, idxRight-lastRight+offset)
|
2019-11-15 02:52:59 +00:00
|
|
|
leftHunkSize = 0
|
|
|
|
rightHunkSize = 0
|
|
|
|
idxLeft = lastLeft
|
|
|
|
idxRight = lastRight
|
|
|
|
}
|
|
|
|
if err != nil {
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.Error(http.StatusInternalServerError, "getExcerptLines")
|
2019-11-15 02:52:59 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if idxRight > lastRight {
|
|
|
|
lineText := " "
|
|
|
|
if rightHunkSize > 0 || leftHunkSize > 0 {
|
|
|
|
lineText = fmt.Sprintf("@@ -%d,%d +%d,%d @@\n", idxLeft, leftHunkSize, idxRight, rightHunkSize)
|
|
|
|
}
|
|
|
|
lineText = html.EscapeString(lineText)
|
|
|
|
lineSection := &gitdiff.DiffLine{
|
|
|
|
Type: gitdiff.DiffLineSection,
|
|
|
|
Content: lineText,
|
|
|
|
SectionInfo: &gitdiff.DiffLineSectionInfo{
|
|
|
|
Path: filePath,
|
|
|
|
LastLeftIdx: lastLeft,
|
|
|
|
LastRightIdx: lastRight,
|
|
|
|
LeftIdx: idxLeft,
|
|
|
|
RightIdx: idxRight,
|
|
|
|
LeftHunkSize: leftHunkSize,
|
|
|
|
RightHunkSize: rightHunkSize,
|
2022-01-20 17:46:10 +00:00
|
|
|
},
|
|
|
|
}
|
2019-11-15 02:52:59 +00:00
|
|
|
if direction == "up" {
|
|
|
|
section.Lines = append([]*gitdiff.DiffLine{lineSection}, section.Lines...)
|
|
|
|
} else if direction == "down" {
|
|
|
|
section.Lines = append(section.Lines, lineSection)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ctx.Data["section"] = section
|
2024-05-20 15:12:50 +00:00
|
|
|
ctx.Data["FileNameHash"] = git.HashFilePathForWebUI(filePath)
|
2019-11-15 02:52:59 +00:00
|
|
|
ctx.Data["AfterCommitID"] = commitID
|
|
|
|
ctx.Data["Anchor"] = anchor
|
2021-04-05 15:30:52 +00:00
|
|
|
ctx.HTML(http.StatusOK, tplBlobExcerpt)
|
2019-11-15 02:52:59 +00:00
|
|
|
}
|
|
|
|
|
2021-12-20 04:41:31 +00:00
|
|
|
func getExcerptLines(commit *git.Commit, filePath string, idxLeft, idxRight, chunkSize int) ([]*gitdiff.DiffLine, error) {
|
2019-11-15 02:52:59 +00:00
|
|
|
blob, err := commit.Tree.GetBlobByPath(filePath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
reader, err := blob.DataAsync()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
defer reader.Close()
|
|
|
|
scanner := bufio.NewScanner(reader)
|
|
|
|
var diffLines []*gitdiff.DiffLine
|
|
|
|
for line := 0; line < idxRight+chunkSize; line++ {
|
|
|
|
if ok := scanner.Scan(); !ok {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if line < idxRight {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
lineText := scanner.Text()
|
|
|
|
diffLine := &gitdiff.DiffLine{
|
|
|
|
LeftIdx: idxLeft + (line - idxRight) + 1,
|
|
|
|
RightIdx: line + 1,
|
|
|
|
Type: gitdiff.DiffLinePlain,
|
|
|
|
Content: " " + lineText,
|
|
|
|
}
|
|
|
|
diffLines = append(diffLines, diffLine)
|
|
|
|
}
|
2024-03-22 11:17:30 +00:00
|
|
|
if err = scanner.Err(); err != nil {
|
|
|
|
return nil, fmt.Errorf("getExcerptLines scan: %w", err)
|
2024-03-19 02:20:36 +00:00
|
|
|
}
|
2019-11-15 02:52:59 +00:00
|
|
|
return diffLines, nil
|
|
|
|
}
|