1 Star 0 Fork 0

KathentGitee / go-swagger

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
get_pet_by_id.go 1.96 KB
一键复制 编辑 原始数据 按行查看 历史
// Code generated by go-swagger; DO NOT EDIT.
package pet
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the generate command
import (
"net/http"
middleware "github.com/go-openapi/runtime/middleware"
)
// GetPetByIDHandlerFunc turns a function with the right signature into a get pet by Id handler
type GetPetByIDHandlerFunc func(GetPetByIDParams, interface{}) middleware.Responder
// Handle executing the request and returning a response
func (fn GetPetByIDHandlerFunc) Handle(params GetPetByIDParams, principal interface{}) middleware.Responder {
return fn(params, principal)
}
// GetPetByIDHandler interface for that can handle valid get pet by Id params
type GetPetByIDHandler interface {
Handle(GetPetByIDParams, interface{}) middleware.Responder
}
// NewGetPetByID creates a new http.Handler for the get pet by Id operation
func NewGetPetByID(ctx *middleware.Context, handler GetPetByIDHandler) *GetPetByID {
return &GetPetByID{Context: ctx, Handler: handler}
}
/*GetPetByID swagger:route GET /pets/{petId} pet getPetById
Find pet by ID
Returns a pet when ID < 10. ID > 10 or nonintegers will simulate API error conditions
*/
type GetPetByID struct {
Context *middleware.Context
Handler GetPetByIDHandler
}
func (o *GetPetByID) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
route, rCtx, _ := o.Context.RouteInfo(r)
if rCtx != nil {
r = rCtx
}
var Params = NewGetPetByIDParams()
uprinc, aCtx, err := o.Context.Authorize(r, route)
if err != nil {
o.Context.Respond(rw, r, route.Produces, route, err)
return
}
if aCtx != nil {
r = aCtx
}
var principal interface{}
if uprinc != nil {
principal = uprinc
}
if err := o.Context.BindValidRequest(r, route, &Params); err != nil { // bind params
o.Context.Respond(rw, r, route.Produces, route, err)
return
}
res := o.Handler.Handle(Params, principal) // actually handle the request
o.Context.Respond(rw, r, route.Produces, route, res)
}
Go
1
https://gitee.com/kathent/go-swagger.git
git@gitee.com:kathent/go-swagger.git
kathent
go-swagger
go-swagger
v0.19.0

搜索帮助

53164aa7 5694891 3bd8fe86 5694891