2022-07-26 21:38:35 +02:00
|
|
|
// Code generated by go-swagger; DO NOT EDIT.
|
|
|
|
|
|
|
|
package tunnel
|
|
|
|
|
|
|
|
// 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"
|
2022-07-28 20:32:49 +02:00
|
|
|
|
|
|
|
"github.com/openziti-test-kitchen/zrok/rest_model_zrok"
|
2022-07-26 21:38:35 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// TunnelHandlerFunc turns a function with the right signature into a tunnel handler
|
2022-07-28 20:32:49 +02:00
|
|
|
type TunnelHandlerFunc func(TunnelParams, *rest_model_zrok.Principal) middleware.Responder
|
2022-07-26 21:38:35 +02:00
|
|
|
|
|
|
|
// Handle executing the request and returning a response
|
2022-07-28 20:32:49 +02:00
|
|
|
func (fn TunnelHandlerFunc) Handle(params TunnelParams, principal *rest_model_zrok.Principal) middleware.Responder {
|
|
|
|
return fn(params, principal)
|
2022-07-26 21:38:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// TunnelHandler interface for that can handle valid tunnel params
|
|
|
|
type TunnelHandler interface {
|
2022-07-28 20:32:49 +02:00
|
|
|
Handle(TunnelParams, *rest_model_zrok.Principal) middleware.Responder
|
2022-07-26 21:38:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewTunnel creates a new http.Handler for the tunnel operation
|
|
|
|
func NewTunnel(ctx *middleware.Context, handler TunnelHandler) *Tunnel {
|
|
|
|
return &Tunnel{Context: ctx, Handler: handler}
|
|
|
|
}
|
|
|
|
|
2022-09-01 23:39:02 +02:00
|
|
|
/*
|
|
|
|
Tunnel swagger:route POST /tunnel tunnel tunnel
|
2022-07-26 21:38:35 +02:00
|
|
|
|
|
|
|
Tunnel tunnel API
|
|
|
|
*/
|
|
|
|
type Tunnel struct {
|
|
|
|
Context *middleware.Context
|
|
|
|
Handler TunnelHandler
|
|
|
|
}
|
|
|
|
|
|
|
|
func (o *Tunnel) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
|
|
|
|
route, rCtx, _ := o.Context.RouteInfo(r)
|
|
|
|
if rCtx != nil {
|
|
|
|
*r = *rCtx
|
|
|
|
}
|
|
|
|
var Params = NewTunnelParams()
|
2022-07-28 20:32:49 +02:00
|
|
|
uprinc, aCtx, err := o.Context.Authorize(r, route)
|
|
|
|
if err != nil {
|
|
|
|
o.Context.Respond(rw, r, route.Produces, route, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if aCtx != nil {
|
|
|
|
*r = *aCtx
|
|
|
|
}
|
|
|
|
var principal *rest_model_zrok.Principal
|
|
|
|
if uprinc != nil {
|
|
|
|
principal = uprinc.(*rest_model_zrok.Principal) // this is really a rest_model_zrok.Principal, I promise
|
|
|
|
}
|
|
|
|
|
2022-09-01 23:39:02 +02:00
|
|
|
if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params
|
2022-07-26 21:38:35 +02:00
|
|
|
o.Context.Respond(rw, r, route.Produces, route, err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-07-28 20:32:49 +02:00
|
|
|
res := o.Handler.Handle(Params, principal) // actually handle the request
|
2022-07-26 21:38:35 +02:00
|
|
|
o.Context.Respond(rw, r, route.Produces, route, res)
|
|
|
|
|
|
|
|
}
|