github.com/djarvur/go-swagger@v0.18.0/examples/generated/restapi/operations/pet/find_pets_by_status.go (about) 1 // Code generated by go-swagger; DO NOT EDIT. 2 3 package pet 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 // FindPetsByStatusHandlerFunc turns a function with the right signature into a find pets by status handler 15 type FindPetsByStatusHandlerFunc func(FindPetsByStatusParams, interface{}) middleware.Responder 16 17 // Handle executing the request and returning a response 18 func (fn FindPetsByStatusHandlerFunc) Handle(params FindPetsByStatusParams, principal interface{}) middleware.Responder { 19 return fn(params, principal) 20 } 21 22 // FindPetsByStatusHandler interface for that can handle valid find pets by status params 23 type FindPetsByStatusHandler interface { 24 Handle(FindPetsByStatusParams, interface{}) middleware.Responder 25 } 26 27 // NewFindPetsByStatus creates a new http.Handler for the find pets by status operation 28 func NewFindPetsByStatus(ctx *middleware.Context, handler FindPetsByStatusHandler) *FindPetsByStatus { 29 return &FindPetsByStatus{Context: ctx, Handler: handler} 30 } 31 32 /*FindPetsByStatus swagger:route GET /pets/findByStatus pet findPetsByStatus 33 34 Finds Pets by status 35 36 Multiple status values can be provided with comma seperated strings 37 38 */ 39 type FindPetsByStatus struct { 40 Context *middleware.Context 41 Handler FindPetsByStatusHandler 42 } 43 44 func (o *FindPetsByStatus) 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 = NewFindPetsByStatusParams() 50 51 uprinc, aCtx, err := o.Context.Authorize(r, route) 52 if err != nil { 53 o.Context.Respond(rw, r, route.Produces, route, err) 54 return 55 } 56 if aCtx != nil { 57 r = aCtx 58 } 59 var principal interface{} 60 if uprinc != nil { 61 principal = uprinc 62 } 63 64 if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params 65 o.Context.Respond(rw, r, route.Produces, route, err) 66 return 67 } 68 69 res := o.Handler.Handle(Params, principal) // actually handle the request 70 71 o.Context.Respond(rw, r, route.Produces, route, res) 72 73 }