2020-12-17 14:00:47 +00:00
// Copyright 2015 The Gogs Authors. All rights reserved.
// 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.
2021-08-24 11:47:09 -05:00
//go:build gogit
2020-12-17 14:00:47 +00:00
// +build gogit
package git
import (
2021-12-08 19:08:16 +00:00
"context"
2020-12-17 14:00:47 +00:00
"strings"
"github.com/go-git/go-git/v5/plumbing"
)
2021-06-20 23:39:12 +01:00
// IsObjectExist returns true if given reference exists in the repository.
func ( repo * Repository ) IsObjectExist ( name string ) bool {
if name == "" {
return false
}
_ , err := repo . gogitRepo . ResolveRevision ( plumbing . Revision ( name ) )
return err == nil
}
// IsReferenceExist returns true if given reference exists in the repository.
func ( repo * Repository ) IsReferenceExist ( name string ) bool {
if name == "" {
return false
}
reference , err := repo . gogitRepo . Reference ( plumbing . ReferenceName ( name ) , true )
if err != nil {
return false
}
return reference . Type ( ) != plumbing . InvalidReference
}
2020-12-17 14:00:47 +00:00
// IsBranchExist returns true if given branch exists in current repository.
func ( repo * Repository ) IsBranchExist ( name string ) bool {
if name == "" {
return false
}
reference , err := repo . gogitRepo . Reference ( plumbing . ReferenceName ( BranchPrefix + name ) , true )
if err != nil {
return false
}
return reference . Type ( ) != plumbing . InvalidReference
}
2021-02-03 20:06:13 +01:00
// GetBranches returns branches from the repository, skipping skip initial branches and
// returning at most limit branches, or all branches if limit is 0.
2021-12-08 19:08:16 +00:00
func ( repo * Repository ) GetBranchNames ( skip , limit int ) ( [ ] string , int , error ) {
2020-12-17 14:00:47 +00:00
var branchNames [ ] string
branches , err := repo . gogitRepo . Branches ( )
if err != nil {
2021-02-03 20:06:13 +01:00
return nil , 0 , err
2020-12-17 14:00:47 +00:00
}
2021-02-03 20:06:13 +01:00
i := 0
count := 0
2020-12-17 14:00:47 +00:00
_ = branches . ForEach ( func ( branch * plumbing . Reference ) error {
2021-02-03 20:06:13 +01:00
count ++
if i < skip {
i ++
return nil
} else if limit != 0 && count > skip + limit {
return nil
}
2020-12-17 14:00:47 +00:00
branchNames = append ( branchNames , strings . TrimPrefix ( branch . Name ( ) . String ( ) , BranchPrefix ) )
return nil
} )
// TODO: Sort?
2021-02-03 20:06:13 +01:00
return branchNames , count , nil
2020-12-17 14:00:47 +00:00
}
2021-12-08 19:08:16 +00:00
// WalkReferences walks all the references from the repository
func WalkReferences ( ctx context . Context , repoPath string , walkfn func ( string ) error ) ( int , error ) {
repo , err := OpenRepositoryCtx ( ctx , repoPath )
if err != nil {
return 0 , err
}
defer repo . Close ( )
i := 0
iter , err := repo . gogitRepo . References ( )
if err != nil {
return i , err
}
defer iter . Close ( )
err = iter . ForEach ( func ( ref * plumbing . Reference ) error {
err := walkfn ( string ( ref . Name ( ) ) )
i ++
return err
} )
return i , err
}