2016-01-28 22:49:05 +03:00
// Copyright 2016 The Gogs Authors. All rights reserved.
2016-01-15 21:24:03 +03: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-11 12:39:44 +03:00
api "code.gitea.io/sdk/gitea"
2016-01-15 21:24:03 +03:00
2017-06-11 05:57:28 +03:00
"code.gitea.io/gitea/models"
2016-11-10 19:24:48 +03:00
"code.gitea.io/gitea/modules/context"
"code.gitea.io/gitea/routers/api/v1/convert"
2016-01-15 21:24:03 +03:00
)
2016-11-24 10:04:31 +03:00
// GetBranch get a branch of a repository
// see https://github.com/gogits/go-gogs-client/wiki/Repositories#get-branch
2016-03-14 01:49:16 +03:00
func GetBranch ( ctx * context . APIContext ) {
2017-07-02 05:03:57 +03: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 21:24:03 +03:00
if err != nil {
2017-06-11 05:57:28 +03:00
if models . IsErrBranchNotExist ( err ) {
ctx . Error ( 404 , "GetBranch" , err )
} else {
ctx . Error ( 500 , "GetBranch" , err )
}
2016-01-15 21:24:03 +03:00
return
}
2016-02-03 01:07:40 +03:00
2016-01-15 21:24:03 +03:00
c , err := branch . GetCommit ( )
if err != nil {
2016-03-14 01:49:16 +03:00
ctx . Error ( 500 , "GetCommit" , err )
2016-01-15 21:24:03 +03:00
return
}
2016-02-03 01:07:40 +03:00
2016-03-14 06:20:22 +03:00
ctx . JSON ( 200 , convert . ToBranch ( branch , c ) )
2016-01-15 21:24:03 +03:00
}
2016-11-24 10:04:31 +03:00
// ListBranches list all the branches of a repository
// see https://github.com/gogits/go-gogs-client/wiki/Repositories#list-branches
2016-03-14 01:49:16 +03:00
func ListBranches ( ctx * context . APIContext ) {
2016-02-03 01:07:40 +03:00
branches , err := ctx . Repo . Repository . GetBranches ( )
2016-01-15 21:24:03 +03:00
if err != nil {
2016-03-14 01:49:16 +03:00
ctx . Error ( 500 , "GetBranches" , err )
2016-01-15 21:24:03 +03:00
return
}
2016-02-03 01:07:40 +03:00
apiBranches := make ( [ ] * api . Branch , len ( branches ) )
for i := range branches {
c , err := branches [ i ] . GetCommit ( )
2016-01-15 21:24:03 +03:00
if err != nil {
2016-03-14 01:49:16 +03:00
ctx . Error ( 500 , "GetCommit" , err )
2016-01-16 12:36:16 +03:00
return
2016-01-15 21:24:03 +03:00
}
2016-03-14 06:20:22 +03:00
apiBranches [ i ] = convert . ToBranch ( branches [ i ] , c )
2016-01-15 21:24:03 +03:00
}
2016-02-03 01:07:40 +03:00
2016-01-15 21:24:03 +03:00
ctx . JSON ( 200 , & apiBranches )
}