From 89dc23f359b46e400f567e1e51a23620d483cf08 Mon Sep 17 00:00:00 2001 From: Vladimir Panteleev Date: Mon, 20 May 2019 14:05:26 +0000 Subject: [PATCH] Refactor git-notes data fetching to a separate function --- modules/git/notes.go | 42 ++++++++++++++++++++++++++++++++++++++++++ routers/repo/commit.go | 17 +++-------------- 2 files changed, 45 insertions(+), 14 deletions(-) create mode 100644 modules/git/notes.go diff --git a/modules/git/notes.go b/modules/git/notes.go new file mode 100644 index 0000000000..65242f4581 --- /dev/null +++ b/modules/git/notes.go @@ -0,0 +1,42 @@ +// Copyright 2019 The Gitea Authors. All rights reserved. +// Use of this source code is governed by a MIT-style +// license that can be found in the LICENSE file. + +package git + +import ( + "io/ioutil" +) + +// Note stores information about a note created using git-notes. +type Note struct { + Message []byte +} + +// GetNote retrieves the git-notes data for a given commit. +func GetNote(repo *Repository, commitID string, note *Note) error { + notes, err := repo.GetCommit("refs/notes/commits") + if err != nil { + return err + } + + entry, err := notes.GetTreeEntryByPath(commitID) + if err != nil { + return err + } + + blob := entry.Blob() + dataRc, err := blob.DataAsync() + if err != nil { + return err + } + + defer dataRc.Close() + d, err := ioutil.ReadAll(dataRc) + if err != nil { + return err + } + + note.Message = d + return nil +} diff --git a/routers/repo/commit.go b/routers/repo/commit.go index c9b09743f0..b7208d74e9 100644 --- a/routers/repo/commit.go +++ b/routers/repo/commit.go @@ -6,7 +6,6 @@ package repo import ( - "io/ioutil" "path" "strings" @@ -249,20 +248,10 @@ func Diff(ctx *context.Context) { 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") + note := git.Note{} + err = git.GetNote(ctx.Repo.GitRepo, commitID, ¬e) 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)) - } - } - } + ctx.Data["Note"] = string(templates.ToUTF8WithFallback(note.Message)) } if commit.ParentCount() > 0 {