2016-01-29 01:19:05 +05:30
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2016-01-15 23:54:03 +05:30
|
|
|
// 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-07 20:32:19 +05:30
|
|
|
api "github.com/go-gitea/go-sdk/gitea"
|
2016-01-15 23:54:03 +05:30
|
|
|
|
2016-11-03 17:59:56 +05:30
|
|
|
"github.com/go-gitea/gitea/modules/context"
|
|
|
|
"github.com/go-gitea/gitea/routers/api/v1/convert"
|
2016-01-15 23:54:03 +05:30
|
|
|
)
|
|
|
|
|
2016-02-03 03:37:40 +05:30
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Repositories#get-branch
|
2016-03-14 04:19:16 +05:30
|
|
|
func GetBranch(ctx *context.APIContext) {
|
2016-01-29 01:19:05 +05:30
|
|
|
branch, err := ctx.Repo.Repository.GetBranch(ctx.Params(":branchname"))
|
2016-01-15 23:54:03 +05:30
|
|
|
if err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "GetBranch", err)
|
2016-01-15 23:54:03 +05:30
|
|
|
return
|
|
|
|
}
|
2016-02-03 03:37:40 +05:30
|
|
|
|
2016-01-15 23:54:03 +05:30
|
|
|
c, err := branch.GetCommit()
|
|
|
|
if err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "GetCommit", err)
|
2016-01-15 23:54:03 +05:30
|
|
|
return
|
|
|
|
}
|
2016-02-03 03:37:40 +05:30
|
|
|
|
2016-03-14 08:50:22 +05:30
|
|
|
ctx.JSON(200, convert.ToBranch(branch, c))
|
2016-01-15 23:54:03 +05:30
|
|
|
}
|
|
|
|
|
2016-02-03 03:37:40 +05:30
|
|
|
// https://github.com/gogits/go-gogs-client/wiki/Repositories#list-branches
|
2016-03-14 04:19:16 +05:30
|
|
|
func ListBranches(ctx *context.APIContext) {
|
2016-02-03 03:37:40 +05:30
|
|
|
branches, err := ctx.Repo.Repository.GetBranches()
|
2016-01-15 23:54:03 +05:30
|
|
|
if err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "GetBranches", err)
|
2016-01-15 23:54:03 +05:30
|
|
|
return
|
|
|
|
}
|
2016-02-03 03:37:40 +05:30
|
|
|
|
|
|
|
apiBranches := make([]*api.Branch, len(branches))
|
|
|
|
for i := range branches {
|
|
|
|
c, err := branches[i].GetCommit()
|
2016-01-15 23:54:03 +05:30
|
|
|
if err != nil {
|
2016-03-14 04:19:16 +05:30
|
|
|
ctx.Error(500, "GetCommit", err)
|
2016-01-16 15:06:16 +05:30
|
|
|
return
|
2016-01-15 23:54:03 +05:30
|
|
|
}
|
2016-03-14 08:50:22 +05:30
|
|
|
apiBranches[i] = convert.ToBranch(branches[i], c)
|
2016-01-15 23:54:03 +05:30
|
|
|
}
|
2016-02-03 03:37:40 +05:30
|
|
|
|
2016-01-15 23:54:03 +05:30
|
|
|
ctx.JSON(200, &apiBranches)
|
|
|
|
}
|