2016-11-03 23:16:01 +01:00
|
|
|
// Copyright 2015 The Gogs Authors. All rights reserved.
|
2018-11-27 22:52:20 +01:00
|
|
|
// Copyright 2018 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2016-11-03 23:16:01 +01:00
|
|
|
|
|
|
|
package git
|
|
|
|
|
|
|
|
import (
|
2021-11-30 21:06:32 +01:00
|
|
|
"context"
|
2022-07-16 02:10:02 +02:00
|
|
|
"errors"
|
2016-11-03 23:16:01 +01:00
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
2016-12-22 10:30:52 +01:00
|
|
|
// BranchPrefix base dir of the branch information file store on git
|
|
|
|
const BranchPrefix = "refs/heads/"
|
2016-11-03 23:16:01 +01:00
|
|
|
|
|
|
|
// IsReferenceExist returns true if given reference exists in the repository.
|
2021-11-30 21:06:32 +01:00
|
|
|
func IsReferenceExist(ctx context.Context, repoPath, name string) bool {
|
2022-10-23 16:44:45 +02:00
|
|
|
_, _, err := NewCommand(ctx, "show-ref", "--verify").AddDashesAndList(name).RunStdString(&RunOpts{Dir: repoPath})
|
2016-11-03 23:16:01 +01:00
|
|
|
return err == nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsBranchExist returns true if given branch exists in the repository.
|
2021-11-30 21:06:32 +01:00
|
|
|
func IsBranchExist(ctx context.Context, repoPath, name string) bool {
|
|
|
|
return IsReferenceExist(ctx, repoPath, BranchPrefix+name)
|
2016-11-03 23:16:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Branch represents a Git branch.
|
|
|
|
type Branch struct {
|
|
|
|
Name string
|
|
|
|
Path string
|
2019-04-19 14:17:27 +02:00
|
|
|
|
|
|
|
gitRepo *Repository
|
2016-11-03 23:16:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// GetHEADBranch returns corresponding branch of HEAD.
|
|
|
|
func (repo *Repository) GetHEADBranch() (*Branch, error) {
|
2020-02-26 07:32:22 +01:00
|
|
|
if repo == nil {
|
|
|
|
return nil, fmt.Errorf("nil repo")
|
|
|
|
}
|
2022-04-01 04:55:30 +02:00
|
|
|
stdout, _, err := NewCommand(repo.Ctx, "symbolic-ref", "HEAD").RunStdString(&RunOpts{Dir: repo.Path})
|
2016-11-03 23:16:01 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
stdout = strings.TrimSpace(stdout)
|
|
|
|
|
2016-12-22 10:30:52 +01:00
|
|
|
if !strings.HasPrefix(stdout, BranchPrefix) {
|
2016-11-03 23:16:01 +01:00
|
|
|
return nil, fmt.Errorf("invalid HEAD branch: %v", stdout)
|
|
|
|
}
|
|
|
|
|
|
|
|
return &Branch{
|
2019-04-19 14:17:27 +02:00
|
|
|
Name: stdout[len(BranchPrefix):],
|
|
|
|
Path: stdout,
|
|
|
|
gitRepo: repo,
|
2016-11-03 23:16:01 +01:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetDefaultBranch sets default branch of repository.
|
|
|
|
func (repo *Repository) SetDefaultBranch(name string) error {
|
2022-10-23 16:44:45 +02:00
|
|
|
_, _, err := NewCommand(repo.Ctx, "symbolic-ref", "HEAD").AddDynamicArguments(BranchPrefix + name).RunStdString(&RunOpts{Dir: repo.Path})
|
2016-11-03 23:16:01 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2020-09-25 06:09:23 +02:00
|
|
|
// GetDefaultBranch gets default branch of repository.
|
|
|
|
func (repo *Repository) GetDefaultBranch() (string, error) {
|
2022-04-01 04:55:30 +02:00
|
|
|
stdout, _, err := NewCommand(repo.Ctx, "symbolic-ref", "HEAD").RunStdString(&RunOpts{Dir: repo.Path})
|
2022-07-16 02:10:02 +02:00
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
stdout = strings.TrimSpace(stdout)
|
|
|
|
if !strings.HasPrefix(stdout, BranchPrefix) {
|
|
|
|
return "", errors.New("the HEAD is not a branch: " + stdout)
|
|
|
|
}
|
|
|
|
return strings.TrimPrefix(stdout, BranchPrefix), nil
|
2020-09-25 06:09:23 +02:00
|
|
|
}
|
|
|
|
|
2019-04-19 14:17:27 +02:00
|
|
|
// GetBranch returns a branch by it's name
|
|
|
|
func (repo *Repository) GetBranch(branch string) (*Branch, error) {
|
|
|
|
if !repo.IsBranchExist(branch) {
|
|
|
|
return nil, ErrBranchNotExist{branch}
|
|
|
|
}
|
|
|
|
return &Branch{
|
|
|
|
Path: repo.Path,
|
|
|
|
Name: branch,
|
|
|
|
gitRepo: repo,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetBranchesByPath returns a branch by it's path
|
2021-02-03 20:06:13 +01:00
|
|
|
// if limit = 0 it will not limit
|
2022-01-20 00:26:57 +01:00
|
|
|
func GetBranchesByPath(ctx context.Context, path string, skip, limit int) ([]*Branch, int, error) {
|
2022-03-29 21:13:41 +02:00
|
|
|
gitRepo, err := OpenRepository(ctx, path)
|
2018-11-27 22:52:20 +01:00
|
|
|
if err != nil {
|
2021-02-03 20:06:13 +01:00
|
|
|
return nil, 0, err
|
2016-11-03 23:16:01 +01:00
|
|
|
}
|
2019-11-13 08:01:19 +01:00
|
|
|
defer gitRepo.Close()
|
2019-04-19 14:17:27 +02:00
|
|
|
|
2021-12-08 20:08:16 +01:00
|
|
|
return gitRepo.GetBranches(skip, limit)
|
|
|
|
}
|
|
|
|
|
2023-05-13 23:59:01 +02:00
|
|
|
// GetBranchCommitID returns a branch commit ID by its name
|
|
|
|
func GetBranchCommitID(ctx context.Context, path, branch string) (string, error) {
|
|
|
|
gitRepo, err := OpenRepository(ctx, path)
|
|
|
|
if err != nil {
|
|
|
|
return "", err
|
|
|
|
}
|
|
|
|
defer gitRepo.Close()
|
|
|
|
|
|
|
|
return gitRepo.GetBranchCommitID(branch)
|
|
|
|
}
|
|
|
|
|
2021-12-08 20:08:16 +01:00
|
|
|
// GetBranches returns a slice of *git.Branch
|
|
|
|
func (repo *Repository) GetBranches(skip, limit int) ([]*Branch, int, error) {
|
|
|
|
brs, countAll, err := repo.GetBranchNames(skip, limit)
|
2019-04-19 14:17:27 +02:00
|
|
|
if err != nil {
|
2021-02-03 20:06:13 +01:00
|
|
|
return nil, 0, err
|
2018-11-27 22:52:20 +01:00
|
|
|
}
|
|
|
|
|
2019-04-19 14:17:27 +02:00
|
|
|
branches := make([]*Branch, len(brs))
|
|
|
|
for i := range brs {
|
|
|
|
branches[i] = &Branch{
|
2021-12-08 20:08:16 +01:00
|
|
|
Path: repo.Path,
|
2019-04-19 14:17:27 +02:00
|
|
|
Name: brs[i],
|
2021-12-08 20:08:16 +01:00
|
|
|
gitRepo: repo,
|
2019-04-19 14:17:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-03 20:06:13 +01:00
|
|
|
return branches, countAll, nil
|
2016-11-03 23:16:01 +01:00
|
|
|
}
|
|
|
|
|
2016-12-22 10:30:52 +01:00
|
|
|
// DeleteBranchOptions Option(s) for delete branch
|
2016-11-03 23:16:01 +01:00
|
|
|
type DeleteBranchOptions struct {
|
|
|
|
Force bool
|
|
|
|
}
|
|
|
|
|
|
|
|
// DeleteBranch delete a branch by name on repository.
|
|
|
|
func (repo *Repository) DeleteBranch(name string, opts DeleteBranchOptions) error {
|
2022-02-06 20:01:47 +01:00
|
|
|
cmd := NewCommand(repo.Ctx, "branch")
|
2016-11-03 23:16:01 +01:00
|
|
|
|
|
|
|
if opts.Force {
|
2017-08-03 15:48:36 +02:00
|
|
|
cmd.AddArguments("-D")
|
|
|
|
} else {
|
|
|
|
cmd.AddArguments("-d")
|
2016-11-03 23:16:01 +01:00
|
|
|
}
|
|
|
|
|
2022-10-23 16:44:45 +02:00
|
|
|
cmd.AddDashesAndList(name)
|
2022-04-01 04:55:30 +02:00
|
|
|
_, _, err := cmd.RunStdString(&RunOpts{Dir: repo.Path})
|
2016-11-03 23:16:01 +01:00
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-02-05 15:43:28 +01:00
|
|
|
// CreateBranch create a new branch
|
2019-05-11 17:29:17 +02:00
|
|
|
func (repo *Repository) CreateBranch(branch, oldbranchOrCommit string) error {
|
2022-02-06 20:01:47 +01:00
|
|
|
cmd := NewCommand(repo.Ctx, "branch")
|
2022-10-23 16:44:45 +02:00
|
|
|
cmd.AddDashesAndList(branch, oldbranchOrCommit)
|
2017-02-05 15:43:28 +01:00
|
|
|
|
2022-04-01 04:55:30 +02:00
|
|
|
_, _, err := cmd.RunStdString(&RunOpts{Dir: repo.Path})
|
2017-02-05 15:43:28 +01:00
|
|
|
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2016-11-03 23:16:01 +01:00
|
|
|
// AddRemote adds a new remote to repository.
|
|
|
|
func (repo *Repository) AddRemote(name, url string, fetch bool) error {
|
2022-02-06 20:01:47 +01:00
|
|
|
cmd := NewCommand(repo.Ctx, "remote", "add")
|
2016-11-03 23:16:01 +01:00
|
|
|
if fetch {
|
|
|
|
cmd.AddArguments("-f")
|
|
|
|
}
|
2022-10-23 16:44:45 +02:00
|
|
|
cmd.AddDynamicArguments(name, url)
|
2016-11-03 23:16:01 +01:00
|
|
|
|
2022-04-01 04:55:30 +02:00
|
|
|
_, _, err := cmd.RunStdString(&RunOpts{Dir: repo.Path})
|
2016-11-03 23:16:01 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveRemote removes a remote from repository.
|
|
|
|
func (repo *Repository) RemoveRemote(name string) error {
|
2022-10-23 16:44:45 +02:00
|
|
|
_, _, err := NewCommand(repo.Ctx, "remote", "rm").AddDynamicArguments(name).RunStdString(&RunOpts{Dir: repo.Path})
|
2016-11-03 23:16:01 +01:00
|
|
|
return err
|
|
|
|
}
|
2019-04-19 14:17:27 +02:00
|
|
|
|
|
|
|
// GetCommit returns the head commit of a branch
|
|
|
|
func (branch *Branch) GetCommit() (*Commit, error) {
|
|
|
|
return branch.gitRepo.GetBranchCommit(branch.Name)
|
|
|
|
}
|
2021-10-08 19:03:04 +02:00
|
|
|
|
|
|
|
// RenameBranch rename a branch
|
|
|
|
func (repo *Repository) RenameBranch(from, to string) error {
|
2022-10-23 16:44:45 +02:00
|
|
|
_, _, err := NewCommand(repo.Ctx, "branch", "-m").AddDynamicArguments(from, to).RunStdString(&RunOpts{Dir: repo.Path})
|
2021-10-08 19:03:04 +02:00
|
|
|
return err
|
|
|
|
}
|