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 (
2017-06-11 04:57:28 +02:00
"code.gitea.io/gitea/models"
2016-11-10 17:24:48 +01:00
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/routers/api/v1/convert"
2018-03-29 21:32:40 +08:00
api "code.gitea.io/sdk/gitea"
2016-01-15 19:24:03 +01:00
)
2016-11-24 15:04:31 +08:00
// GetBranch get a branch of a repository
2016-03-13 18:49:16 -04:00
func GetBranch ( ctx * context . APIContext ) {
2017-11-12 23:02:25 -08:00
// swagger:operation GET /repos/{owner}/{repo}/branches/{branch} repository repoGetBranch
// ---
2018-09-09 04:36:08 +01:00
// summary: Retrieve a specific branch from a repository
2017-11-12 23:02:25 -08: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 22:03:57 -04: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-18 21:29:43 -05:00
ctx . NotFound ( )
2017-07-01 22:03:57 -04:00
return
}
branch , err := ctx . Repo . Repository . GetBranch ( ctx . Repo . BranchName )
2016-01-15 19:24:03 +01:00
if err != nil {
2017-06-11 04:57:28 +02:00
if models . IsErrBranchNotExist ( err ) {
2019-03-18 21:29:43 -05: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 17:07:40 -05:00
2016-01-15 19:24:03 +01:00
c , err := branch . GetCommit ( )
if err != nil {
2016-03-13 18:49:16 -04:00
ctx . Error ( 500 , "GetCommit" , err )
2016-01-15 19:24:03 +01:00
return
}
2016-02-02 17:07:40 -05:00
2018-02-20 04:50:42 -08:00
ctx . JSON ( 200 , convert . ToBranch ( ctx . Repo . Repository , branch , c ) )
2016-01-15 19:24:03 +01:00
}
2016-11-24 15:04:31 +08:00
// ListBranches list all the branches of a repository
2016-03-13 18:49:16 -04:00
func ListBranches ( ctx * context . APIContext ) {
2017-11-12 23:02:25 -08: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 17:07:40 -05:00
branches , err := ctx . Repo . Repository . GetBranches ( )
2016-01-15 19:24:03 +01:00
if err != nil {
2016-03-13 18:49:16 -04:00
ctx . Error ( 500 , "GetBranches" , err )
2016-01-15 19:24:03 +01:00
return
}
2016-02-02 17:07:40 -05: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 18:49:16 -04: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 04:50:42 -08:00
apiBranches [ i ] = convert . ToBranch ( ctx . Repo . Repository , branches [ i ] , c )
2016-01-15 19:24:03 +01:00
}
2016-02-02 17:07:40 -05:00
2016-01-15 19:24:03 +01:00
ctx . JSON ( 200 , & apiBranches )
}