* Move last commit cache back into modules/git Signed-off-by: Andrew Thornton <[email protected]> * Remove go-git from the interface for last commit cache Signed-off-by: Andrew Thornton <[email protected]> * move cacheref to last_commit_cache Signed-off-by: Andrew Thornton <[email protected]> * Remove go-git from routers/private/hook Signed-off-by: Andrew Thornton <[email protected]> * Move FindLFSFiles to pipeline Signed-off-by: Andrew Thornton <[email protected]> * Make no-go-git variants Signed-off-by: Andrew Thornton <[email protected]> * Submodule RefID Signed-off-by: Andrew Thornton <[email protected]> * fix issue with GetCommitsInfo Signed-off-by: Andrew Thornton <[email protected]> * fix GetLastCommitForPaths Signed-off-by: Andrew Thornton <[email protected]> * Improve efficiency Signed-off-by: Andrew Thornton <[email protected]> * More efficiency Signed-off-by: Andrew Thornton <[email protected]> * even faster Signed-off-by: Andrew Thornton <[email protected]> * Reduce duplication * As per @lunny Signed-off-by: Andrew Thornton <[email protected]> * attempt to fix drone Signed-off-by: Andrew Thornton <[email protected]> * fix test-tags Signed-off-by: Andrew Thornton <[email protected]> * default to use no-go-git variants and add gogit build tag Signed-off-by: Andrew Thornton <[email protected]> * placate lint Signed-off-by: Andrew Thornton <[email protected]> * as per @6543 Signed-off-by: Andrew Thornton <[email protected]> Co-authored-by: 6543 <[email protected]> Co-authored-by: techknowlogick <[email protected]>
53 lines
1.3 KiB
Go
53 lines
1.3 KiB
Go
// Copyright 2018 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.
|
|
|
|
// +build gogit
|
|
|
|
package git
|
|
|
|
import (
|
|
"strings"
|
|
|
|
"github.com/go-git/go-git/v5"
|
|
"github.com/go-git/go-git/v5/plumbing"
|
|
)
|
|
|
|
// GetRefsFiltered returns all references of the repository that matches patterm exactly or starting with.
|
|
func (repo *Repository) GetRefsFiltered(pattern string) ([]*Reference, error) {
|
|
r, err := git.PlainOpen(repo.Path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
refsIter, err := r.References()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
refs := make([]*Reference, 0)
|
|
if err = refsIter.ForEach(func(ref *plumbing.Reference) error {
|
|
if ref.Name() != plumbing.HEAD && !ref.Name().IsRemote() &&
|
|
(pattern == "" || strings.HasPrefix(ref.Name().String(), pattern)) {
|
|
refType := string(ObjectCommit)
|
|
if ref.Name().IsTag() {
|
|
// tags can be of type `commit` (lightweight) or `tag` (annotated)
|
|
if tagType, _ := repo.GetTagType(ref.Hash()); err == nil {
|
|
refType = tagType
|
|
}
|
|
}
|
|
r := &Reference{
|
|
Name: ref.Name().String(),
|
|
Object: ref.Hash(),
|
|
Type: refType,
|
|
repo: repo,
|
|
}
|
|
refs = append(refs, r)
|
|
}
|
|
return nil
|
|
}); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return refs, nil
|
|
}
|