mirror of
https://github.com/openziti/zrok.git
synced 2024-12-02 13:04:04 +01:00
57 lines
1.5 KiB
Go
57 lines
1.5 KiB
Go
// 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"
|
|
)
|
|
|
|
// TunnelHandlerFunc turns a function with the right signature into a tunnel handler
|
|
type TunnelHandlerFunc func(TunnelParams) middleware.Responder
|
|
|
|
// Handle executing the request and returning a response
|
|
func (fn TunnelHandlerFunc) Handle(params TunnelParams) middleware.Responder {
|
|
return fn(params)
|
|
}
|
|
|
|
// TunnelHandler interface for that can handle valid tunnel params
|
|
type TunnelHandler interface {
|
|
Handle(TunnelParams) middleware.Responder
|
|
}
|
|
|
|
// NewTunnel creates a new http.Handler for the tunnel operation
|
|
func NewTunnel(ctx *middleware.Context, handler TunnelHandler) *Tunnel {
|
|
return &Tunnel{Context: ctx, Handler: handler}
|
|
}
|
|
|
|
/* Tunnel swagger:route POST /tunnel tunnel tunnel
|
|
|
|
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()
|
|
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)
|
|
|
|
}
|