drone/internal/api/handler/repo/list_branches.go
Johannes Batzill 2d4db78991 Add Tag Listing API (#49)
This change is adding the List Tags API. To do so, a few changes were necessary:
- Refactor List Branches on giteaAdapter / repo_service
- Expose WalkReferences via giteaAdapter
2022-10-28 13:10:26 -07:00

48 lines
1.4 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
}
filter := request.ParseBranchFilter(r)
branches, err := repoCtrl.ListBranches(ctx, session, repoRef, includeCommit, filter)
if err != nil {
render.TranslatedUserError(w, err)
return
}
// TODO: get last page indicator explicitly - current check is wrong in case len % pageSize == 0
isLastPage := len(branches) < filter.Size
render.PaginationNoTotal(r, w, filter.Page, filter.Size, isLastPage)
render.JSON(w, http.StatusOK, branches)
}
}