forgejo-federation/modules/git/repo_branch.go

135 lines
3.3 KiB
Go
Raw Normal View History

2016-11-04 03:46:01 +05:30
// Copyright 2015 The Gogs Authors. All rights reserved.
// Copyright 2018 The Gitea Authors. All rights reserved.
2016-11-04 03:46:01 +05:30
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
package git
import (
"fmt"
"strings"
"gopkg.in/src-d/go-git.v4"
"gopkg.in/src-d/go-git.v4/plumbing"
2016-11-04 03:46:01 +05:30
)
2016-12-22 15:00:52 +05:30
// BranchPrefix base dir of the branch information file store on git
const BranchPrefix = "refs/heads/"
2016-11-04 03:46:01 +05:30
// IsReferenceExist returns true if given reference exists in the repository.
func IsReferenceExist(repoPath, name string) bool {
_, err := NewCommand("show-ref", "--verify", name).RunInDir(repoPath)
return err == nil
}
// IsBranchExist returns true if given branch exists in the repository.
func IsBranchExist(repoPath, name string) bool {
2016-12-22 15:00:52 +05:30
return IsReferenceExist(repoPath, BranchPrefix+name)
2016-11-04 03:46:01 +05:30
}
2016-12-22 15:00:52 +05:30
// IsBranchExist returns true if given branch exists in current repository.
2016-11-04 03:46:01 +05:30
func (repo *Repository) IsBranchExist(name string) bool {
return IsBranchExist(repo.Path, name)
}
// Branch represents a Git branch.
type Branch struct {
Name string
Path string
}
// GetHEADBranch returns corresponding branch of HEAD.
func (repo *Repository) GetHEADBranch() (*Branch, error) {
stdout, err := NewCommand("symbolic-ref", "HEAD").RunInDir(repo.Path)
if err != nil {
return nil, err
}
stdout = strings.TrimSpace(stdout)
2016-12-22 15:00:52 +05:30
if !strings.HasPrefix(stdout, BranchPrefix) {
2016-11-04 03:46:01 +05:30
return nil, fmt.Errorf("invalid HEAD branch: %v", stdout)
}
return &Branch{
2016-12-22 15:00:52 +05:30
Name: stdout[len(BranchPrefix):],
2016-11-04 03:46:01 +05:30
Path: stdout,
}, nil
}
// SetDefaultBranch sets default branch of repository.
func (repo *Repository) SetDefaultBranch(name string) error {
2016-12-22 15:00:52 +05:30
_, err := NewCommand("symbolic-ref", "HEAD", BranchPrefix+name).RunInDir(repo.Path)
2016-11-04 03:46:01 +05:30
return err
}
// GetBranches returns all branches of the repository.
func (repo *Repository) GetBranches() ([]string, error) {
r, err := git.PlainOpen(repo.Path)
2016-11-04 03:46:01 +05:30
if err != nil {
return nil, err
}
branchIter, err := r.Branches()
if err != nil {
return nil, err
2016-11-04 03:46:01 +05:30
}
branches := make([]string, 0)
if err = branchIter.ForEach(func(branch *plumbing.Reference) error {
branches = append(branches, branch.Name().Short())
return nil
}); err != nil {
return nil, err
}
2016-11-04 03:46:01 +05:30
return branches, nil
}
2016-12-22 15:00:52 +05:30
// DeleteBranchOptions Option(s) for delete branch
2016-11-04 03:46:01 +05:30
type DeleteBranchOptions struct {
Force bool
}
// DeleteBranch delete a branch by name on repository.
func (repo *Repository) DeleteBranch(name string, opts DeleteBranchOptions) error {
cmd := NewCommand("branch")
2016-11-04 03:46:01 +05:30
if opts.Force {
cmd.AddArguments("-D")
} else {
cmd.AddArguments("-d")
2016-11-04 03:46:01 +05:30
}
cmd.AddArguments(name)
_, err := cmd.RunInDir(repo.Path)
return err
}
// CreateBranch create a new branch
func (repo *Repository) CreateBranch(branch, newBranch string) error {
cmd := NewCommand("branch")
cmd.AddArguments(branch, newBranch)
_, err := cmd.RunInDir(repo.Path)
return err
}
2016-11-04 03:46:01 +05:30
// AddRemote adds a new remote to repository.
func (repo *Repository) AddRemote(name, url string, fetch bool) error {
cmd := NewCommand("remote", "add")
if fetch {
cmd.AddArguments("-f")
}
cmd.AddArguments(name, url)
_, err := cmd.RunInDir(repo.Path)
return err
}
// RemoveRemote removes a remote from repository.
func (repo *Repository) RemoveRemote(name string) error {
_, err := NewCommand("remote", "remove", name).RunInDir(repo.Path)
return err
}