2016-01-28 12:49:05 -07:00
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2016-01-15 11:24:03 -07:00
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package repo
|
|
|
|
|
|
|
|
import (
|
2017-06-10 20:57:28 -06:00
|
|
|
"code.gitea.io/gitea/models"
|
2016-11-10 09:24:48 -07:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
|
|
"code.gitea.io/gitea/routers/api/v1/convert"
|
2018-03-29 07:32:40 -06:00
|
|
|
|
|
|
|
api "code.gitea.io/sdk/gitea"
|
2016-01-15 11:24:03 -07:00
|
|
|
)
|
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// GetBranch get a branch of a repository
|
2016-03-13 16:49:16 -06:00
|
|
|
func GetBranch(ctx *context.APIContext) {
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/branches/{branch} repository repoGetBranch
|
|
|
|
// ---
|
2018-09-08 21:36:08 -06:00
|
|
|
// summary: Retrieve a specific branch from a repository
|
2017-11-13 00:02:25 -07:00
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: branch
|
|
|
|
// in: path
|
|
|
|
// description: branch to get
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/Branch"
|
2017-07-01 20:03:57 -06:00
|
|
|
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 11:24:03 -07:00
|
|
|
if err != nil {
|
2017-06-10 20:57:28 -06:00
|
|
|
if models.IsErrBranchNotExist(err) {
|
|
|
|
ctx.Error(404, "GetBranch", err)
|
|
|
|
} else {
|
|
|
|
ctx.Error(500, "GetBranch", err)
|
|
|
|
}
|
2016-01-15 11:24:03 -07:00
|
|
|
return
|
|
|
|
}
|
2016-02-02 15:07:40 -07:00
|
|
|
|
2016-01-15 11:24:03 -07:00
|
|
|
c, err := branch.GetCommit()
|
|
|
|
if err != nil {
|
2016-03-13 16:49:16 -06:00
|
|
|
ctx.Error(500, "GetCommit", err)
|
2016-01-15 11:24:03 -07:00
|
|
|
return
|
|
|
|
}
|
2016-02-02 15:07:40 -07:00
|
|
|
|
2018-02-20 05:50:42 -07:00
|
|
|
ctx.JSON(200, convert.ToBranch(ctx.Repo.Repository, branch, c))
|
2016-01-15 11:24:03 -07:00
|
|
|
}
|
|
|
|
|
2016-11-24 00:04:31 -07:00
|
|
|
// ListBranches list all the branches of a repository
|
2016-03-13 16:49:16 -06:00
|
|
|
func ListBranches(ctx *context.APIContext) {
|
2017-11-13 00:02:25 -07:00
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/branches repository repoListBranches
|
|
|
|
// ---
|
|
|
|
// summary: List a repository's branches
|
|
|
|
// produces:
|
|
|
|
// - application/json
|
|
|
|
// parameters:
|
|
|
|
// - name: owner
|
|
|
|
// in: path
|
|
|
|
// description: owner of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// - name: repo
|
|
|
|
// in: path
|
|
|
|
// description: name of the repo
|
|
|
|
// type: string
|
|
|
|
// required: true
|
|
|
|
// responses:
|
|
|
|
// "200":
|
|
|
|
// "$ref": "#/responses/BranchList"
|
2016-02-02 15:07:40 -07:00
|
|
|
branches, err := ctx.Repo.Repository.GetBranches()
|
2016-01-15 11:24:03 -07:00
|
|
|
if err != nil {
|
2016-03-13 16:49:16 -06:00
|
|
|
ctx.Error(500, "GetBranches", err)
|
2016-01-15 11:24:03 -07:00
|
|
|
return
|
|
|
|
}
|
2016-02-02 15:07:40 -07:00
|
|
|
|
|
|
|
apiBranches := make([]*api.Branch, len(branches))
|
|
|
|
for i := range branches {
|
|
|
|
c, err := branches[i].GetCommit()
|
2016-01-15 11:24:03 -07:00
|
|
|
if err != nil {
|
2016-03-13 16:49:16 -06:00
|
|
|
ctx.Error(500, "GetCommit", err)
|
2016-01-16 02:36:16 -07:00
|
|
|
return
|
2016-01-15 11:24:03 -07:00
|
|
|
}
|
2018-02-20 05:50:42 -07:00
|
|
|
apiBranches[i] = convert.ToBranch(ctx.Repo.Repository, branches[i], c)
|
2016-01-15 11:24:03 -07:00
|
|
|
}
|
2016-02-02 15:07:40 -07:00
|
|
|
|
2016-01-15 11:24:03 -07:00
|
|
|
ctx.JSON(200, &apiBranches)
|
|
|
|
}
|