drone/internal/api/request/webhook.go

52 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 request
import (
"net/http"
"github.com/harness/gitness/types"
"github.com/harness/gitness/types/enum"
)
const (
PathParamWebhookID = "webhook_id"
PathParamWebhookExecutionID = "webhook_execution_id"
)
func GetWebhookIDFromPath(r *http.Request) (int64, error) {
return PathParamAsPositiveInt64(r, PathParamWebhookID)
}
func GetWebhookExecutionIDFromPath(r *http.Request) (int64, error) {
return PathParamAsPositiveInt64(r, PathParamWebhookExecutionID)
}
// ParseWebhookFilter extracts the Webhook query parameters for listing from the url.
func ParseWebhookFilter(r *http.Request) *types.WebhookFilter {
return &types.WebhookFilter{
Query: ParseQuery(r),
Page: ParsePage(r),
Size: ParseLimit(r),
Sort: ParseSortWebhook(r),
Order: ParseOrder(r),
}
}
// ParseWebhookExecutionFilter extracts the WebhookExecution query parameters for listing from the url.
func ParseWebhookExecutionFilter(r *http.Request) *types.WebhookExecutionFilter {
return &types.WebhookExecutionFilter{
Page: ParsePage(r),
Size: ParseLimit(r),
}
}
// ParseSortWebhook extracts the webhook sort parameter from the url.
func ParseSortWebhook(r *http.Request) enum.WebhookAttr {
return enum.ParseWebhookAttr(
r.URL.Query().Get(QueryParamSort),
)
}