2020-12-17 17:00:47 +03:00
// 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.
2021-08-24 19:47:09 +03:00
//go:build gogit
2020-12-17 17:00:47 +03:00
// +build gogit
package git
import (
2021-06-07 02:44:58 +03:00
"context"
2021-09-22 08:38:34 +03:00
"io"
2020-12-17 17:00:47 +03:00
2021-08-11 04:01:40 +03:00
"code.gitea.io/gitea/modules/log"
2020-12-17 17:00:47 +03:00
"github.com/go-git/go-git/v5/plumbing/object"
)
// GetNote retrieves the git-notes data for a given commit.
2021-10-08 16:08:22 +03:00
// FIXME: Add LastCommitCache support
2021-06-07 02:44:58 +03:00
func GetNote ( ctx context . Context , repo * Repository , commitID string , note * Note ) error {
2021-08-11 04:01:40 +03:00
log . Trace ( "Searching for git note corresponding to the commit %q in the repository %q" , commitID , repo . Path )
2020-12-17 17:00:47 +03:00
notes , err := repo . GetCommit ( NotesRef )
if err != nil {
2021-08-11 04:01:40 +03:00
log . Error ( "Unable to get commit from ref %q. Error: %v" , NotesRef , err )
2020-12-17 17:00:47 +03:00
return err
}
remainingCommitID := commitID
path := ""
currentTree := notes . Tree . gogitTree
2021-08-11 04:01:40 +03:00
log . Trace ( "Found tree with ID %q while searching for git note corresponding to the commit %q" , currentTree . Entries [ 0 ] . Name , commitID )
2020-12-17 17:00:47 +03:00
var file * object . File
for len ( remainingCommitID ) > 2 {
file , err = currentTree . File ( remainingCommitID )
if err == nil {
path += remainingCommitID
break
}
if err == object . ErrFileNotFound {
currentTree , err = currentTree . Tree ( remainingCommitID [ 0 : 2 ] )
path += remainingCommitID [ 0 : 2 ] + "/"
remainingCommitID = remainingCommitID [ 2 : ]
}
if err != nil {
2021-08-09 18:24:34 +03:00
if err == object . ErrDirectoryNotFound {
return ErrNotExist { ID : remainingCommitID , RelPath : path }
}
2021-08-11 04:01:40 +03:00
log . Error ( "Unable to find git note corresponding to the commit %q. Error: %v" , commitID , err )
2020-12-17 17:00:47 +03:00
return err
}
}
blob := file . Blob
dataRc , err := blob . Reader ( )
if err != nil {
2021-08-11 04:01:40 +03:00
log . Error ( "Unable to read blob with ID %q. Error: %v" , blob . ID , err )
2020-12-17 17:00:47 +03:00
return err
}
defer dataRc . Close ( )
2021-09-22 08:38:34 +03:00
d , err := io . ReadAll ( dataRc )
2020-12-17 17:00:47 +03:00
if err != nil {
2021-08-11 04:01:40 +03:00
log . Error ( "Unable to read blob with ID %q. Error: %v" , blob . ID , err )
2020-12-17 17:00:47 +03:00
return err
}
note . Message = d
commitNodeIndex , commitGraphFile := repo . CommitNodeIndex ( )
if commitGraphFile != nil {
defer commitGraphFile . Close ( )
}
commitNode , err := commitNodeIndex . Get ( notes . ID )
if err != nil {
return err
}
2021-10-08 16:08:22 +03:00
lastCommits , err := GetLastCommitForPaths ( ctx , nil , commitNode , "" , [ ] string { path } )
2020-12-17 17:00:47 +03:00
if err != nil {
2021-08-11 04:01:40 +03:00
log . Error ( "Unable to get the commit for the path %q. Error: %v" , path , err )
2020-12-17 17:00:47 +03:00
return err
}
note . Commit = convertCommit ( lastCommits [ path ] )
return nil
}