github.com/thetreep/go-swagger@v0.0.0-20240223100711-35af64f14f01/examples/generated/restapi/operations/store/place_order.go (about) 1 // Code generated by go-swagger; DO NOT EDIT. 2 3 package store 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 "github.com/go-openapi/runtime/middleware" 12 ) 13 14 // PlaceOrderHandlerFunc turns a function with the right signature into a place order handler 15 type PlaceOrderHandlerFunc func(PlaceOrderParams) middleware.Responder 16 17 // Handle executing the request and returning a response 18 func (fn PlaceOrderHandlerFunc) Handle(params PlaceOrderParams) middleware.Responder { 19 return fn(params) 20 } 21 22 // PlaceOrderHandler interface for that can handle valid place order params 23 type PlaceOrderHandler interface { 24 Handle(PlaceOrderParams) middleware.Responder 25 } 26 27 // NewPlaceOrder creates a new http.Handler for the place order operation 28 func NewPlaceOrder(ctx *middleware.Context, handler PlaceOrderHandler) *PlaceOrder { 29 return &PlaceOrder{Context: ctx, Handler: handler} 30 } 31 32 /* 33 PlaceOrder swagger:route POST /stores/order store placeOrder 34 35 Place an order for a pet 36 */ 37 type PlaceOrder struct { 38 Context *middleware.Context 39 Handler PlaceOrderHandler 40 } 41 42 func (o *PlaceOrder) ServeHTTP(rw http.ResponseWriter, r *http.Request) { 43 route, rCtx, _ := o.Context.RouteInfo(r) 44 if rCtx != nil { 45 *r = *rCtx 46 } 47 var Params = NewPlaceOrderParams() 48 if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params 49 o.Context.Respond(rw, r, route.Produces, route, err) 50 return 51 } 52 53 res := o.Handler.Handle(Params) // actually handle the request 54 o.Context.Respond(rw, r, route.Produces, route, res) 55 56 }