mirror of
https://github.com/harness/drone.git
synced 2025-05-05 03:41:45 +08:00

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
48 lines
1.4 KiB
Go
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)
|
|
}
|
|
}
|