zrok/rest_server_zrok/operations/metadata/configuration.go

57 lines
1.6 KiB
Go

// Code generated by go-swagger; DO NOT EDIT.
package metadata
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the generate command
import (
"net/http"
"github.com/go-openapi/runtime/middleware"
)
// ConfigurationHandlerFunc turns a function with the right signature into a configuration handler
type ConfigurationHandlerFunc func(ConfigurationParams) middleware.Responder
// Handle executing the request and returning a response
func (fn ConfigurationHandlerFunc) Handle(params ConfigurationParams) middleware.Responder {
return fn(params)
}
// ConfigurationHandler interface for that can handle valid configuration params
type ConfigurationHandler interface {
Handle(ConfigurationParams) middleware.Responder
}
// NewConfiguration creates a new http.Handler for the configuration operation
func NewConfiguration(ctx *middleware.Context, handler ConfigurationHandler) *Configuration {
return &Configuration{Context: ctx, Handler: handler}
}
/*
Configuration swagger:route GET /configuration metadata configuration
Configuration configuration API
*/
type Configuration struct {
Context *middleware.Context
Handler ConfigurationHandler
}
func (o *Configuration) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
route, rCtx, _ := o.Context.RouteInfo(r)
if rCtx != nil {
*r = *rCtx
}
var Params = NewConfigurationParams()
if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params
o.Context.Respond(rw, r, route.Produces, route, err)
return
}
res := o.Handler.Handle(Params) // actually handle the request
o.Context.Respond(rw, r, route.Produces, route, res)
}