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-11 15:09:44 +05:30
|
|
|
api "code.gitea.io/sdk/gitea"
|
2016-01-15 23:54:03 +05:30
|
|
|
|
2017-06-11 08:27:28 +05:30
|
|
|
"code.gitea.io/gitea/models"
|
2016-11-10 21:54:48 +05:30
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/convert"
|
2016-01-15 23:54:03 +05:30
|
|
|
)
|
|
|
|
|
2016-11-24 12:34:31 +05:30
|
|
|
// GetBranch get a branch of a repository
|
|
|
|
// see https://github.com/gogits/go-gogs-client/wiki/Repositories#get-branch
|
2016-03-14 04:19:16 +05:30
|
|
|
func GetBranch(ctx *context.APIContext) {
|
2017-07-02 07:33:57 +05:30
|
|
|
if ctx.Repo.TreePath != "" {
|
|
|
|
// if TreePath != "", then URL contained extra slashes
|
|
|
|
// (i.e. "master/subbranch" instead of "master"), so branch does
|
|
|
|
// not exist
|
|
|
|
ctx.Status(404)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
branch, err := ctx.Repo.Repository.GetBranch(ctx.Repo.BranchName)
|
2016-01-15 23:54:03 +05:30
|
|
|
if err != nil {
|
2017-06-11 08:27:28 +05:30
|
|
|
if models.IsErrBranchNotExist(err) {
|
|
|
|
ctx.Error(404, "GetBranch", err)
|
|
|
|
} else {
|
|
|
|
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-11-24 12:34:31 +05:30
|
|
|
// ListBranches list all the branches of a repository
|
|
|
|
// see 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)
|
|
|
|
}
|