diff options
author | Unknwon <u@gogs.io> | 2016-02-02 16:51:14 -0500 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2016-02-02 16:51:14 -0500 |
commit | 5e97693e0e44037bdf60c6399f957102fed7c93c (patch) | |
tree | 5ae0320a24427cd766591abd69bddb5e4d0b9f8d /models/repo_branch.go | |
parent | 452bc385febe2fbf45bbc258299e1dafe48a5b1e (diff) | |
parent | b7b30cd85e5cabd9d643013ffb10dafd133b18ea (diff) |
Merge pull request #2506 from sapk/add-branche-api-support
Implement API for branches listing
Diffstat (limited to 'models/repo_branch.go')
-rw-r--r-- | models/repo_branch.go | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/models/repo_branch.go b/models/repo_branch.go new file mode 100644 index 00000000..b784f7d5 --- /dev/null +++ b/models/repo_branch.go @@ -0,0 +1,43 @@ +// 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. + +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 (br *Branch) GetCommit() (*git.Commit, error) { + gitRepo, err := git.OpenRepository(br.Path) + if err != nil { + return nil, err + } + return gitRepo.GetBranchCommit(br.Name) +} |