Show git-notes

This commit is contained in:
Vladimir Panteleev 2019-05-18 15:00:37 +00:00
parent c385dcc26b
commit f7f000a097
No known key found for this signature in database
GPG key ID: 5004F0FAD051576D
3 changed files with 37 additions and 0 deletions

View file

@ -6,6 +6,7 @@
package repo
import (
"io/ioutil"
"path"
"strings"
@ -15,6 +16,7 @@ import (
"code.gitea.io/gitea/modules/git"
"code.gitea.io/gitea/modules/log"
"code.gitea.io/gitea/modules/setting"
"code.gitea.io/gitea/modules/templates"
)
const (
@ -246,6 +248,23 @@ func Diff(ctx *context.Context) {
ctx.Data["Parents"] = parents
ctx.Data["DiffNotAvailable"] = diff.NumFiles() == 0
ctx.Data["SourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", "commit", commitID)
notes, err := ctx.Repo.GitRepo.GetCommit("refs/notes/commits")
if err == nil {
entry, err := notes.GetTreeEntryByPath(commitID)
if err == nil {
blob := entry.Blob()
dataRc, err := blob.DataAsync()
if err == nil {
d, err := ioutil.ReadAll(dataRc)
dataRc.Close()
if err == nil {
ctx.Data["Note"] = string(templates.ToUTF8WithFallback(d))
}
}
}
}
if commit.ParentCount() > 0 {
ctx.Data["BeforeSourcePath"] = setting.AppSubURL + "/" + path.Join(userName, repoName, "src", "commit", parents[0])
}