github.com/kubearmor/cilium@v1.6.12/api/v1/server/restapi/policy/get_policy.go (about)

     1  // Code generated by go-swagger; DO NOT EDIT.
     2  
     3  package policy
     4  
     5  // This file was generated by the swagger tool.
     6  // Editing this file might prove futile when you re-run the generate command
     7  
     8  import (
     9  	"net/http"
    10  
    11  	middleware "github.com/go-openapi/runtime/middleware"
    12  )
    13  
    14  // GetPolicyHandlerFunc turns a function with the right signature into a get policy handler
    15  type GetPolicyHandlerFunc func(GetPolicyParams) middleware.Responder
    16  
    17  // Handle executing the request and returning a response
    18  func (fn GetPolicyHandlerFunc) Handle(params GetPolicyParams) middleware.Responder {
    19  	return fn(params)
    20  }
    21  
    22  // GetPolicyHandler interface for that can handle valid get policy params
    23  type GetPolicyHandler interface {
    24  	Handle(GetPolicyParams) middleware.Responder
    25  }
    26  
    27  // NewGetPolicy creates a new http.Handler for the get policy operation
    28  func NewGetPolicy(ctx *middleware.Context, handler GetPolicyHandler) *GetPolicy {
    29  	return &GetPolicy{Context: ctx, Handler: handler}
    30  }
    31  
    32  /*GetPolicy swagger:route GET /policy policy getPolicy
    33  
    34  Retrieve entire policy tree
    35  
    36  Returns the entire policy tree with all children.
    37  
    38  
    39  */
    40  type GetPolicy struct {
    41  	Context *middleware.Context
    42  	Handler GetPolicyHandler
    43  }
    44  
    45  func (o *GetPolicy) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
    46  	route, rCtx, _ := o.Context.RouteInfo(r)
    47  	if rCtx != nil {
    48  		r = rCtx
    49  	}
    50  	var Params = NewGetPolicyParams()
    51  
    52  	if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params
    53  		o.Context.Respond(rw, r, route.Produces, route, err)
    54  		return
    55  	}
    56  
    57  	res := o.Handler.Handle(Params) // actually handle the request
    58  
    59  	o.Context.Respond(rw, r, route.Produces, route, res)
    60  
    61  }