drone/internal/api/handler/repo/list_branches.go
Johannes Batzill f655c2fae3 Add Standalone API to Harness Router (#40)
To simplify UI code we are going to expose both Harness API and Standalone API (restricted to harness embedded functionalities) when running in harness mode.

Furthermore, this PR adds a middleware that allows us to reuse standalone Handlers for Harness API for operations that don't require any request/response manipulation.
2022-10-19 18:35:40 -07:00

46 lines
1.2 KiB
Go

// Copyright 2022 Harness Inc. All rights reserved.
// Use of this source code is governed by the Polyform Free Trial License
// that can be found in the LICENSE.md file for this repository.
package repo
import (
"net/http"
"github.com/harness/gitness/internal/api/controller/repo"
"github.com/harness/gitness/internal/api/render"
"github.com/harness/gitness/internal/api/request"
)
/*
* Writes json-encoded branch information to the http response body.
*/
func HandleListBranches(repoCtrl *repo.Controller) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
session, _ := request.AuthSessionFrom(ctx)
repoRef, err := request.GetRepoRefFromPath(r)
if err != nil {
render.TranslatedUserError(w, err)
return
}
includeCommit, err := request.GetIncludeCommitFromQueryOrDefault(r, false)
if err != nil {
render.TranslatedUserError(w, err)
return
}
branchFilter := request.ParseBranchFilter(r)
branches, totalCount, err := repoCtrl.ListBranches(ctx, session, repoRef, includeCommit, branchFilter)
if err != nil {
render.TranslatedUserError(w, err)
return
}
render.Pagination(r, w, branchFilter.Page, branchFilter.Size, int(totalCount))
render.JSON(w, http.StatusOK, branches)
}
}