2016-01-28 20:49:05 +01:00
|
|
|
// Copyright 2016 The Gogs Authors. All rights reserved.
|
2019-04-19 14:17:27 +02:00
|
|
|
// Copyright 2019 The Gitea 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-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2019-04-19 14:17:27 +02:00
|
|
|
"code.gitea.io/gitea/modules/git"
|
2016-11-10 17:24:48 +01:00
|
|
|
"code.gitea.io/gitea/routers/api/v1/convert"
|
2018-03-29 15:32:40 +02:00
|
|
|
|
|
|
|
api "code.gitea.io/sdk/gitea"
|
2016-01-15 19:24:03 +01:00
|
|
|
)
|
|
|
|
|
2016-11-24 08:04:31 +01:00
|
|
|
// GetBranch get a branch of a repository
|
2016-03-13 23:49:16 +01:00
|
|
|
func GetBranch(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01:00
|
|
|
// swagger:operation GET /repos/{owner}/{repo}/branches/{branch} repository repoGetBranch
|
|
|
|
// ---
|
2018-09-09 05:36:08 +02:00
|
|
|
// summary: Retrieve a specific branch from a repository
|
2017-11-13 08:02:25 +01: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-02 04:03:57 +02:00
|
|
|
if ctx.Repo.TreePath != "" {
|
|
|
|
// if TreePath != "", then URL contained extra slashes
|
|
|
|
// (i.e. "master/subbranch" instead of "master"), so branch does
|
|
|
|
// not exist
|
2019-03-19 03:29:43 +01:00
|
|
|
ctx.NotFound()
|
2017-07-02 04:03:57 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
branch, err := ctx.Repo.Repository.GetBranch(ctx.Repo.BranchName)
|
2016-01-15 19:24:03 +01:00
|
|
|
if err != nil {
|
2019-04-19 14:17:27 +02:00
|
|
|
if git.IsErrBranchNotExist(err) {
|
2019-03-19 03:29:43 +01:00
|
|
|
ctx.NotFound(err)
|
2017-06-11 04:57:28 +02:00
|
|
|
} else {
|
|
|
|
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
|
|
|
|
2018-02-20 13:50:42 +01:00
|
|
|
ctx.JSON(200, convert.ToBranch(ctx.Repo.Repository, 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
|
2016-03-13 23:49:16 +01:00
|
|
|
func ListBranches(ctx *context.APIContext) {
|
2017-11-13 08:02:25 +01: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 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
|
|
|
}
|
2018-02-20 13:50:42 +01:00
|
|
|
apiBranches[i] = convert.ToBranch(ctx.Repo.Repository, 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)
|
|
|
|
}
|