diff options
author | Antoine GIRARD <sapk@sapk.fr> | 2016-01-15 19:24:03 +0100 |
---|---|---|
committer | Antoine GIRARD <sapk@sapk.fr> | 2016-01-28 20:51:19 +0100 |
commit | c11c3b6c1125c8de1f86ea4d41eb88728d8e0b48 (patch) | |
tree | 051061e60ff43c1e740c9819a16e5ace15a38e1a /models | |
parent | 566163ab8257ba2b828985c2cc00f705341ba73f (diff) | |
download | gitea-c11c3b6c1125c8de1f86ea4d41eb88728d8e0b48.tar.gz gitea-c11c3b6c1125c8de1f86ea4d41eb88728d8e0b48.zip |
Near ready
Diffstat (limited to 'models')
-rw-r--r-- | models/branch.go | 43 | ||||
-rw-r--r-- | models/repo.go | 14 |
2 files changed, 57 insertions, 0 deletions
diff --git a/models/branch.go b/models/branch.go new file mode 100644 index 0000000000..08b5b7c31d --- /dev/null +++ b/models/branch.go @@ -0,0 +1,43 @@ +package models + +import ( + "github.com/gogits/git-module" +) + +type Branch struct { + Path string + Name string +} + +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 + } + + Branches := make([]*Branch, len(brs)) + for i := range brs { + Branches[i] = &Branch{ + Path: path, + Name: brs[i], + } + } + return Branches, nil +} + +func GetBranchesByRepo(user,repo string) ([]*Branch, error) { + return GetBranchesByPath(RepoPath(user, repo)) +} + +func (br *Branch) GetCommit() (*git.Commit, error) { + gitRepo, err := git.OpenRepository(br.Path) + if err != nil { + return nil, err + } + return gitRepo.GetBranchCommit(br.Name) +} diff --git a/models/repo.go b/models/repo.go index 8ce1f7190c..82fea00a6c 100644 --- a/models/repo.go +++ b/models/repo.go @@ -288,6 +288,20 @@ func (repo *Repository) GetMirror() (err error) { return err } +func (repo *Repository) GetBranch(br string) (_ *Branch, err error) { + if(!git.IsBranchExist(repo.RepoPath(), br)){ + return nil, errors.New("Branch do not exist"); + } + return &Branch{ + Path: repo.RepoPath(), + Name: br, + },nil +} + +func (repo *Repository) GetBranches() (_ []*Branch, err error) { + return GetBranchesByPath(repo.RepoPath()) +} + func (repo *Repository) GetBaseRepo() (err error) { if !repo.IsFork { return nil |