From c11c3b6c1125c8de1f86ea4d41eb88728d8e0b48 Mon Sep 17 00:00:00 2001 From: Antoine GIRARD Date: Fri, 15 Jan 2016 19:24:03 +0100 Subject: Near ready --- models/branch.go | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 models/branch.go (limited to 'models/branch.go') 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) +} -- cgit v1.2.3