2016-01-28 20:49:05 +01:00
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2016-01-15 19:24:03 +01:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2016-11-11 10:39:44 +01:00
|
|
|
api "code.gitea.io/sdk/gitea"
|
2016-01-15 19:24:03 +01:00
|
|
|
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/convert"
|
2016-01-15 19:24:03 +01:00
|
|
|
)
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// GetBranch get a branch of a repository
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories#get-branch
|
2016-03-13 23:49:16 +01:00
|
|
|
func GetBranch(ctx *context.APIContext) {
|
2016-01-28 20:49:05 +01:00
|
|
|
branch, err := ctx.Repo.Repository.GetBranch(ctx.Params(":branchname"))
|
2016-01-15 19:24:03 +01:00
|
|
|
if err != nil {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "GetBranch", err)
|
2016-01-15 19:24:03 +01:00
|
|
|
return
|
|
|
|
}
|
2016-02-02 23:07:40 +01:00
|
|
|
|
2016-01-15 19:24:03 +01:00
|
|
|
c, err := branch.GetCommit()
|
|
|
|
if err != nil {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "GetCommit", err)
|
2016-01-15 19:24:03 +01:00
|
|
|
return
|
|
|
|
}
|
2016-02-02 23:07:40 +01:00
|
|
|
|
2016-03-14 04:20:22 +01:00
|
|
|
ctx.JSON(200, convert.ToBranch(branch, c))
|
2016-01-15 19:24:03 +01:00
|
|
|
}
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// ListBranches list all the branches of a repository
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories#list-branches
|
2016-03-13 23:49:16 +01:00
|
|
|
func ListBranches(ctx *context.APIContext) {
|
2016-02-02 23:07:40 +01:00
|
|
|
branches, err := ctx.Repo.Repository.GetBranches()
|
2016-01-15 19:24:03 +01:00
|
|
|
if err != nil {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "GetBranches", err)
|
2016-01-15 19:24:03 +01:00
|
|
|
return
|
|
|
|
}
|
2016-02-02 23:07:40 +01:00
|
|
|
|
|
|
|
apiBranches := make([]*api.Branch, len(branches))
|
|
|
|
for i := range branches {
|
|
|
|
c, err := branches[i].GetCommit()
|
2016-01-15 19:24:03 +01:00
|
|
|
if err != nil {
|
2016-03-13 23:49:16 +01:00
|
|
|
ctx.Error(500, "GetCommit", err)
|
2016-01-16 10:36:16 +01:00
|
|
|
return
|
2016-01-15 19:24:03 +01:00
|
|
|
}
|
2016-03-14 04:20:22 +01:00
|
|
|
apiBranches[i] = convert.ToBranch(branches[i], c)
|
2016-01-15 19:24:03 +01:00
|
|
|
}
|
2016-02-02 23:07:40 +01:00
|
|
|
|
2016-01-15 19:24:03 +01:00
|
|
|
ctx.JSON(200, &apiBranches)
|
|
|
|
}
|