mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
1.3 KiB
56 lines
1.3 KiB
9 years ago
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
||
9 years ago
|
// Use of this source code is governed by a MIT-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package repo
|
||
|
|
||
|
import (
|
||
|
api "github.com/gogits/go-gogs-client"
|
||
|
|
||
8 years ago
|
"github.com/gogits/gogs/models"
|
||
8 years ago
|
"github.com/gogits/gogs/pkg/context"
|
||
8 years ago
|
"github.com/gogits/gogs/routes/api/v1/convert"
|
||
9 years ago
|
)
|
||
|
|
||
9 years ago
|
// https://github.com/gogits/go-gogs-client/wiki/Repositories#get-branch
|
||
8 years ago
|
func GetBranch(c *context.APIContext) {
|
||
|
branch, err := c.Repo.Repository.GetBranch(c.Params("*"))
|
||
9 years ago
|
if err != nil {
|
||
8 years ago
|
if models.IsErrBranchNotExist(err) {
|
||
8 years ago
|
c.Error(404, "GetBranch", err)
|
||
8 years ago
|
} else {
|
||
8 years ago
|
c.Error(500, "GetBranch", err)
|
||
8 years ago
|
}
|
||
9 years ago
|
return
|
||
|
}
|
||
9 years ago
|
|
||
8 years ago
|
commit, err := branch.GetCommit()
|
||
9 years ago
|
if err != nil {
|
||
8 years ago
|
c.Error(500, "GetCommit", err)
|
||
9 years ago
|
return
|
||
|
}
|
||
9 years ago
|
|
||
8 years ago
|
c.JSON(200, convert.ToBranch(branch, commit))
|
||
9 years ago
|
}
|
||
|
|
||
9 years ago
|
// https://github.com/gogits/go-gogs-client/wiki/Repositories#list-branches
|
||
8 years ago
|
func ListBranches(c *context.APIContext) {
|
||
|
branches, err := c.Repo.Repository.GetBranches()
|
||
9 years ago
|
if err != nil {
|
||
8 years ago
|
c.Error(500, "GetBranches", err)
|
||
9 years ago
|
return
|
||
|
}
|
||
9 years ago
|
|
||
|
apiBranches := make([]*api.Branch, len(branches))
|
||
|
for i := range branches {
|
||
8 years ago
|
commit, err := branches[i].GetCommit()
|
||
9 years ago
|
if err != nil {
|
||
8 years ago
|
c.Error(500, "GetCommit", err)
|
||
9 years ago
|
return
|
||
9 years ago
|
}
|
||
8 years ago
|
apiBranches[i] = convert.ToBranch(branches[i], commit)
|
||
9 years ago
|
}
|
||
9 years ago
|
|
||
8 years ago
|
c.JSON(200, &apiBranches)
|
||
9 years ago
|
}
|