gitea/models/repo_branch.go

58 lines
1.1 KiB
Go
Raw Normal View History

2016-01-28 20:49:05 +01:00
// Copyright 2016 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2016-01-15 19:24:03 +01:00
package models
import (
"code.gitea.io/git"
2016-01-15 19:24:03 +01:00
)
type Branch struct {
2016-02-02 23:07:40 +01:00
Path string
Name string
2016-01-15 19:24:03 +01:00
}
func GetBranchesByPath(path string) ([]*Branch, error) {
gitRepo, err := git.OpenRepository(path)
if err != nil {
return nil, err
}
brs, err := gitRepo.GetBranches()
if err != nil {
return nil, err
}
2016-02-02 23:07:40 +01:00
branches := make([]*Branch, len(brs))
2016-01-15 19:24:03 +01:00
for i := range brs {
2016-02-02 23:07:40 +01:00
branches[i] = &Branch{
2016-01-15 19:24:03 +01:00
Path: path,
Name: brs[i],
}
}
2016-02-02 23:07:40 +01:00
return branches, nil
}
func (repo *Repository) GetBranch(br string) (*Branch, error) {
if !git.IsBranchExist(repo.RepoPath(), br) {
return nil, &ErrBranchNotExist{br}
}
return &Branch{
Path: repo.RepoPath(),
Name: br,
}, nil
}
func (repo *Repository) GetBranches() ([]*Branch, error) {
return GetBranchesByPath(repo.RepoPath())
2016-01-15 19:24:03 +01:00
}
func (br *Branch) GetCommit() (*git.Commit, error) {
gitRepo, err := git.OpenRepository(br.Path)
if err != nil {
return nil, err
}
return gitRepo.GetBranchCommit(br.Name)
}