github.com/thetreep/go-swagger@v0.0.0-20240223100711-35af64f14f01/examples/generated/restapi/operations/pet/update_pet_with_form.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 "github.com/go-openapi/runtime/middleware" 12 ) 13 14 // UpdatePetWithFormHandlerFunc turns a function with the right signature into a update pet with form handler 15 type UpdatePetWithFormHandlerFunc func(UpdatePetWithFormParams, interface{}) middleware.Responder 16 17 // Handle executing the request and returning a response 18 func (fn UpdatePetWithFormHandlerFunc) Handle(params UpdatePetWithFormParams, principal interface{}) middleware.Responder { 19 return fn(params, principal) 20 } 21 22 // UpdatePetWithFormHandler interface for that can handle valid update pet with form params 23 type UpdatePetWithFormHandler interface { 24 Handle(UpdatePetWithFormParams, interface{}) middleware.Responder 25 } 26 27 // NewUpdatePetWithForm creates a new http.Handler for the update pet with form operation 28 func NewUpdatePetWithForm(ctx *middleware.Context, handler UpdatePetWithFormHandler) *UpdatePetWithForm { 29 return &UpdatePetWithForm{Context: ctx, Handler: handler} 30 } 31 32 /* 33 UpdatePetWithForm swagger:route POST /pets/{petId} pet updatePetWithForm 34 35 Updates a pet in the store with form data 36 */ 37 type UpdatePetWithForm struct { 38 Context *middleware.Context 39 Handler UpdatePetWithFormHandler 40 } 41 42 func (o *UpdatePetWithForm) 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 = NewUpdatePetWithFormParams() 48 uprinc, aCtx, err := o.Context.Authorize(r, route) 49 if err != nil { 50 o.Context.Respond(rw, r, route.Produces, route, err) 51 return 52 } 53 if aCtx != nil { 54 *r = *aCtx 55 } 56 var principal interface{} 57 if uprinc != nil { 58 principal = uprinc.(interface{}) // this is really a interface{}, I promise 59 } 60 61 if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params 62 o.Context.Respond(rw, r, route.Produces, route, err) 63 return 64 } 65 66 res := o.Handler.Handle(Params, principal) // actually handle the request 67 o.Context.Respond(rw, r, route.Produces, route, res) 68 69 }