github.com/cilium/cilium@v1.16.2/api/v1/server/restapi/policy/get_ip.go (about)

     1  // Code generated by go-swagger; DO NOT EDIT.
     2  
     3  // Copyright Authors of Cilium
     4  // SPDX-License-Identifier: Apache-2.0
     5  
     6  package policy
     7  
     8  // This file was generated by the swagger tool.
     9  // Editing this file might prove futile when you re-run the generate command
    10  
    11  import (
    12  	"net/http"
    13  
    14  	"github.com/go-openapi/runtime/middleware"
    15  )
    16  
    17  // GetIPHandlerFunc turns a function with the right signature into a get IP handler
    18  type GetIPHandlerFunc func(GetIPParams) middleware.Responder
    19  
    20  // Handle executing the request and returning a response
    21  func (fn GetIPHandlerFunc) Handle(params GetIPParams) middleware.Responder {
    22  	return fn(params)
    23  }
    24  
    25  // GetIPHandler interface for that can handle valid get IP params
    26  type GetIPHandler interface {
    27  	Handle(GetIPParams) middleware.Responder
    28  }
    29  
    30  // NewGetIP creates a new http.Handler for the get IP operation
    31  func NewGetIP(ctx *middleware.Context, handler GetIPHandler) *GetIP {
    32  	return &GetIP{Context: ctx, Handler: handler}
    33  }
    34  
    35  /*
    36  	GetIP swagger:route GET /ip policy getIp
    37  
    38  # Lists information about known IP addresses
    39  
    40  Retrieves a list of IPs with known associated information such as
    41  their identities, host addresses, Kubernetes pod names, etc.
    42  The list can optionally filtered by a CIDR IP range.
    43  */
    44  type GetIP struct {
    45  	Context *middleware.Context
    46  	Handler GetIPHandler
    47  }
    48  
    49  func (o *GetIP) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
    50  	route, rCtx, _ := o.Context.RouteInfo(r)
    51  	if rCtx != nil {
    52  		*r = *rCtx
    53  	}
    54  	var Params = NewGetIPParams()
    55  	if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params
    56  		o.Context.Respond(rw, r, route.Produces, route, err)
    57  		return
    58  	}
    59  
    60  	res := o.Handler.Handle(Params) // actually handle the request
    61  	o.Context.Respond(rw, r, route.Produces, route, res)
    62  
    63  }