github.com/thetreep/go-swagger@v0.0.0-20240223100711-35af64f14f01/examples/generated/restapi/operations/store/get_order_by_id.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 // GetOrderByIDHandlerFunc turns a function with the right signature into a get order by Id handler 15 type GetOrderByIDHandlerFunc func(GetOrderByIDParams) middleware.Responder 16 17 // Handle executing the request and returning a response 18 func (fn GetOrderByIDHandlerFunc) Handle(params GetOrderByIDParams) middleware.Responder { 19 return fn(params) 20 } 21 22 // GetOrderByIDHandler interface for that can handle valid get order by Id params 23 type GetOrderByIDHandler interface { 24 Handle(GetOrderByIDParams) middleware.Responder 25 } 26 27 // NewGetOrderByID creates a new http.Handler for the get order by Id operation 28 func NewGetOrderByID(ctx *middleware.Context, handler GetOrderByIDHandler) *GetOrderByID { 29 return &GetOrderByID{Context: ctx, Handler: handler} 30 } 31 32 /* 33 GetOrderByID swagger:route GET /stores/order/{orderId} store getOrderById 34 35 # Find purchase order by ID 36 37 For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions 38 */ 39 type GetOrderByID struct { 40 Context *middleware.Context 41 Handler GetOrderByIDHandler 42 } 43 44 func (o *GetOrderByID) ServeHTTP(rw http.ResponseWriter, r *http.Request) { 45 route, rCtx, _ := o.Context.RouteInfo(r) 46 if rCtx != nil { 47 *r = *rCtx 48 } 49 var Params = NewGetOrderByIDParams() 50 if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params 51 o.Context.Respond(rw, r, route.Produces, route, err) 52 return 53 } 54 55 res := o.Handler.Handle(Params) // actually handle the request 56 o.Context.Respond(rw, r, route.Produces, route, res) 57 58 }