mirror of
https://github.com/openziti/zrok.git
synced 2025-08-17 11:21:07 +02:00
duration parameter (#319)
This commit is contained in:
@ -9,8 +9,10 @@ import (
|
||||
"net/http"
|
||||
|
||||
"github.com/go-openapi/errors"
|
||||
"github.com/go-openapi/runtime"
|
||||
"github.com/go-openapi/runtime/middleware"
|
||||
"github.com/go-openapi/strfmt"
|
||||
"github.com/go-openapi/swag"
|
||||
)
|
||||
|
||||
// NewGetEnvironmentMetricsParams creates a new GetEnvironmentMetricsParams object
|
||||
@ -30,6 +32,10 @@ type GetEnvironmentMetricsParams struct {
|
||||
// HTTP Request Object
|
||||
HTTPRequest *http.Request `json:"-"`
|
||||
|
||||
/*
|
||||
In: query
|
||||
*/
|
||||
Duration *float64
|
||||
/*
|
||||
Required: true
|
||||
In: path
|
||||
@ -46,6 +52,13 @@ func (o *GetEnvironmentMetricsParams) BindRequest(r *http.Request, route *middle
|
||||
|
||||
o.HTTPRequest = r
|
||||
|
||||
qs := runtime.Values(r.URL.Query())
|
||||
|
||||
qDuration, qhkDuration, _ := qs.GetOK("duration")
|
||||
if err := o.bindDuration(qDuration, qhkDuration, route.Formats); err != nil {
|
||||
res = append(res, err)
|
||||
}
|
||||
|
||||
rEnvID, rhkEnvID, _ := route.Params.GetOK("envId")
|
||||
if err := o.bindEnvID(rEnvID, rhkEnvID, route.Formats); err != nil {
|
||||
res = append(res, err)
|
||||
@ -56,6 +69,29 @@ func (o *GetEnvironmentMetricsParams) BindRequest(r *http.Request, route *middle
|
||||
return nil
|
||||
}
|
||||
|
||||
// bindDuration binds and validates parameter Duration from query.
|
||||
func (o *GetEnvironmentMetricsParams) bindDuration(rawData []string, hasKey bool, formats strfmt.Registry) error {
|
||||
var raw string
|
||||
if len(rawData) > 0 {
|
||||
raw = rawData[len(rawData)-1]
|
||||
}
|
||||
|
||||
// Required: false
|
||||
// AllowEmptyValue: false
|
||||
|
||||
if raw == "" { // empty values pass all other validations
|
||||
return nil
|
||||
}
|
||||
|
||||
value, err := swag.ConvertFloat64(raw)
|
||||
if err != nil {
|
||||
return errors.InvalidType("duration", "query", "float64", raw)
|
||||
}
|
||||
o.Duration = &value
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
// bindEnvID binds and validates parameter EnvID from path.
|
||||
func (o *GetEnvironmentMetricsParams) bindEnvID(rawData []string, hasKey bool, formats strfmt.Registry) error {
|
||||
var raw string
|
||||
|
Reference in New Issue
Block a user