1 Star 0 Fork 0

gaogaoss/go-swagger

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
petstore_api.go 15.86 KB
一键复制 编辑 原始数据 按行查看 历史
gaogao 提交于 2024-07-30 09:49 +08:00 . first commit
package operations
// This file was generated by the swagger tool.
// Editing this file might prove futile when you re-run the swagger generate command
import (
"fmt"
"net/http"
"strings"
loads "github.com/go-openapi/loads"
runtime "github.com/go-openapi/runtime"
middleware "github.com/go-openapi/runtime/middleware"
security "github.com/go-openapi/runtime/security"
spec "github.com/go-openapi/spec"
strfmt "github.com/go-openapi/strfmt"
"github.com/go-openapi/swag"
"github.com/go-swagger/go-swagger/examples/generated/restapi/operations/pet"
"github.com/go-swagger/go-swagger/examples/generated/restapi/operations/store"
"github.com/go-swagger/go-swagger/examples/generated/restapi/operations/user"
)
// NewPetstoreAPI creates a new Petstore instance
func NewPetstoreAPI(spec *loads.Document) *PetstoreAPI {
return &PetstoreAPI{
handlers: make(map[string]map[string]http.Handler),
formats: strfmt.Default,
defaultConsumes: "application/json",
defaultProduces: "application/json",
ServerShutdown: func() {},
spec: spec,
}
}
/*PetstoreAPI This is a sample server Petstore server.
[Learn about Swagger](http://swagger.wordnik.com) or join the IRC channel '#swagger' on irc.freenode.net.
For this sample, you can use the api key 'special-key' to test the authorization filters
*/
type PetstoreAPI struct {
spec *loads.Document
context *middleware.Context
handlers map[string]map[string]http.Handler
formats strfmt.Registry
defaultConsumes string
defaultProduces string
Middleware func(middleware.Builder) http.Handler
// JSONConsumer registers a consumer for a "application/json" mime type
JSONConsumer runtime.Consumer
// UrlformConsumer registers a consumer for a "application/x-www-form-urlencoded" mime type
UrlformConsumer runtime.Consumer
// XMLConsumer registers a consumer for a "application/xml" mime type
XMLConsumer runtime.Consumer
// JSONProducer registers a producer for a "application/json" mime type
JSONProducer runtime.Producer
// XMLProducer registers a producer for a "application/xml" mime type
XMLProducer runtime.Producer
// PetstoreAuthAuth registers a functin that takes an access token and a collection of required scopes and returns a principal
// it performs authentication based on an oauth2 bearer token provided in the request
PetstoreAuthAuth func(string, []string) (interface{}, error)
// APIKeyAuth registers a function that takes a token and returns a principal
// it performs authentication based on an api key api_key provided in the header
APIKeyAuth func(string) (interface{}, error)
// PetAddPetHandler sets the operation handler for the add pet operation
PetAddPetHandler pet.AddPetHandler
// UserCreateUserHandler sets the operation handler for the create user operation
UserCreateUserHandler user.CreateUserHandler
// UserCreateUsersWithArrayInputHandler sets the operation handler for the create users with array input operation
UserCreateUsersWithArrayInputHandler user.CreateUsersWithArrayInputHandler
// UserCreateUsersWithListInputHandler sets the operation handler for the create users with list input operation
UserCreateUsersWithListInputHandler user.CreateUsersWithListInputHandler
// StoreDeleteOrderHandler sets the operation handler for the delete order operation
StoreDeleteOrderHandler store.DeleteOrderHandler
// PetDeletePetHandler sets the operation handler for the delete pet operation
PetDeletePetHandler pet.DeletePetHandler
// UserDeleteUserHandler sets the operation handler for the delete user operation
UserDeleteUserHandler user.DeleteUserHandler
// PetFindPetsByStatusHandler sets the operation handler for the find pets by status operation
PetFindPetsByStatusHandler pet.FindPetsByStatusHandler
// PetFindPetsByTagsHandler sets the operation handler for the find pets by tags operation
PetFindPetsByTagsHandler pet.FindPetsByTagsHandler
// StoreGetOrderByIDHandler sets the operation handler for the get order by Id operation
StoreGetOrderByIDHandler store.GetOrderByIDHandler
// PetGetPetByIDHandler sets the operation handler for the get pet by Id operation
PetGetPetByIDHandler pet.GetPetByIDHandler
// UserGetUserByNameHandler sets the operation handler for the get user by name operation
UserGetUserByNameHandler user.GetUserByNameHandler
// UserLoginUserHandler sets the operation handler for the login user operation
UserLoginUserHandler user.LoginUserHandler
// UserLogoutUserHandler sets the operation handler for the logout user operation
UserLogoutUserHandler user.LogoutUserHandler
// StorePlaceOrderHandler sets the operation handler for the place order operation
StorePlaceOrderHandler store.PlaceOrderHandler
// PetUpdatePetHandler sets the operation handler for the update pet operation
PetUpdatePetHandler pet.UpdatePetHandler
// PetUpdatePetWithFormHandler sets the operation handler for the update pet with form operation
PetUpdatePetWithFormHandler pet.UpdatePetWithFormHandler
// UserUpdateUserHandler sets the operation handler for the update user operation
UserUpdateUserHandler user.UpdateUserHandler
// ServeError is called when an error is received, there is a default handler
// but you can set your own with this
ServeError func(http.ResponseWriter, *http.Request, error)
// ServerShutdown is called when the HTTP(S) server is shut down and done
// handling all active connections and does not accept connections any more
ServerShutdown func()
// Custom command line argument groups with their descriptions
CommandLineOptionsGroups []swag.CommandLineOptionsGroup
// User defined logger function.
Logger func(string, ...interface{})
}
// SetDefaultProduces sets the default produces media type
func (o *PetstoreAPI) SetDefaultProduces(mediaType string) {
o.defaultProduces = mediaType
}
// SetDefaultConsumes returns the default consumes media type
func (o *PetstoreAPI) SetDefaultConsumes(mediaType string) {
o.defaultConsumes = mediaType
}
// SetSpec sets a spec that will be served for the clients.
func (o *PetstoreAPI) SetSpec(spec *loads.Document) {
o.spec = spec
}
// DefaultProduces returns the default produces media type
func (o *PetstoreAPI) DefaultProduces() string {
return o.defaultProduces
}
// DefaultConsumes returns the default consumes media type
func (o *PetstoreAPI) DefaultConsumes() string {
return o.defaultConsumes
}
// Formats returns the registered string formats
func (o *PetstoreAPI) Formats() strfmt.Registry {
return o.formats
}
// RegisterFormat registers a custom format validator
func (o *PetstoreAPI) RegisterFormat(name string, format strfmt.Format, validator strfmt.Validator) {
o.formats.Add(name, format, validator)
}
// Validate validates the registrations in the PetstoreAPI
func (o *PetstoreAPI) Validate() error {
var unregistered []string
if o.JSONConsumer == nil {
unregistered = append(unregistered, "JSONConsumer")
}
if o.UrlformConsumer == nil {
unregistered = append(unregistered, "UrlformConsumer")
}
if o.XMLConsumer == nil {
unregistered = append(unregistered, "XMLConsumer")
}
if o.JSONProducer == nil {
unregistered = append(unregistered, "JSONProducer")
}
if o.XMLProducer == nil {
unregistered = append(unregistered, "XMLProducer")
}
if o.PetstoreAuthAuth == nil {
unregistered = append(unregistered, "PetstoreAuthAuth")
}
if o.APIKeyAuth == nil {
unregistered = append(unregistered, "APIKeyAuth")
}
if o.PetAddPetHandler == nil {
unregistered = append(unregistered, "pet.AddPetHandler")
}
if o.UserCreateUserHandler == nil {
unregistered = append(unregistered, "user.CreateUserHandler")
}
if o.UserCreateUsersWithArrayInputHandler == nil {
unregistered = append(unregistered, "user.CreateUsersWithArrayInputHandler")
}
if o.UserCreateUsersWithListInputHandler == nil {
unregistered = append(unregistered, "user.CreateUsersWithListInputHandler")
}
if o.StoreDeleteOrderHandler == nil {
unregistered = append(unregistered, "store.DeleteOrderHandler")
}
if o.PetDeletePetHandler == nil {
unregistered = append(unregistered, "pet.DeletePetHandler")
}
if o.UserDeleteUserHandler == nil {
unregistered = append(unregistered, "user.DeleteUserHandler")
}
if o.PetFindPetsByStatusHandler == nil {
unregistered = append(unregistered, "pet.FindPetsByStatusHandler")
}
if o.PetFindPetsByTagsHandler == nil {
unregistered = append(unregistered, "pet.FindPetsByTagsHandler")
}
if o.StoreGetOrderByIDHandler == nil {
unregistered = append(unregistered, "store.GetOrderByIDHandler")
}
if o.PetGetPetByIDHandler == nil {
unregistered = append(unregistered, "pet.GetPetByIDHandler")
}
if o.UserGetUserByNameHandler == nil {
unregistered = append(unregistered, "user.GetUserByNameHandler")
}
if o.UserLoginUserHandler == nil {
unregistered = append(unregistered, "user.LoginUserHandler")
}
if o.UserLogoutUserHandler == nil {
unregistered = append(unregistered, "user.LogoutUserHandler")
}
if o.StorePlaceOrderHandler == nil {
unregistered = append(unregistered, "store.PlaceOrderHandler")
}
if o.PetUpdatePetHandler == nil {
unregistered = append(unregistered, "pet.UpdatePetHandler")
}
if o.PetUpdatePetWithFormHandler == nil {
unregistered = append(unregistered, "pet.UpdatePetWithFormHandler")
}
if o.UserUpdateUserHandler == nil {
unregistered = append(unregistered, "user.UpdateUserHandler")
}
if len(unregistered) > 0 {
return fmt.Errorf("missing registration: %s", strings.Join(unregistered, ", "))
}
return nil
}
// ServeErrorFor gets a error handler for a given operation id
func (o *PetstoreAPI) ServeErrorFor(operationID string) func(http.ResponseWriter, *http.Request, error) {
return o.ServeError
}
// AuthenticatorsFor gets the authenticators for the specified security schemes
func (o *PetstoreAPI) AuthenticatorsFor(schemes map[string]spec.SecurityScheme) map[string]runtime.Authenticator {
result := make(map[string]runtime.Authenticator)
for name, scheme := range schemes {
switch name {
case "petstore_auth":
result[name] = security.BearerAuth(scheme.Name, o.PetstoreAuthAuth)
case "api_key":
result[name] = security.APIKeyAuth(scheme.Name, scheme.In, o.APIKeyAuth)
}
}
return result
}
// ConsumersFor gets the consumers for the specified media types
func (o *PetstoreAPI) ConsumersFor(mediaTypes []string) map[string]runtime.Consumer {
result := make(map[string]runtime.Consumer)
for _, mt := range mediaTypes {
switch mt {
case "application/json":
result["application/json"] = o.JSONConsumer
case "application/x-www-form-urlencoded":
result["application/x-www-form-urlencoded"] = o.UrlformConsumer
case "application/xml":
result["application/xml"] = o.XMLConsumer
}
}
return result
}
// ProducersFor gets the producers for the specified media types
func (o *PetstoreAPI) ProducersFor(mediaTypes []string) map[string]runtime.Producer {
result := make(map[string]runtime.Producer)
for _, mt := range mediaTypes {
switch mt {
case "application/json":
result["application/json"] = o.JSONProducer
case "application/xml":
result["application/xml"] = o.XMLProducer
}
}
return result
}
// HandlerFor gets a http.Handler for the provided operation method and path
func (o *PetstoreAPI) HandlerFor(method, path string) (http.Handler, bool) {
if o.handlers == nil {
return nil, false
}
um := strings.ToUpper(method)
if _, ok := o.handlers[um]; !ok {
return nil, false
}
h, ok := o.handlers[um][path]
return h, ok
}
// Context returns the middleware context for the petstore API
func (o *PetstoreAPI) Context() *middleware.Context {
if o.context == nil {
o.context = middleware.NewRoutableContext(o.spec, o, nil)
}
return o.context
}
func (o *PetstoreAPI) initHandlerCache() {
o.Context() // don't care about the result, just that the initialization happened
if o.handlers == nil {
o.handlers = make(map[string]map[string]http.Handler)
}
if o.handlers["POST"] == nil {
o.handlers[strings.ToUpper("POST")] = make(map[string]http.Handler)
}
o.handlers["POST"]["/pets"] = pet.NewAddPet(o.context, o.PetAddPetHandler)
if o.handlers["POST"] == nil {
o.handlers[strings.ToUpper("POST")] = make(map[string]http.Handler)
}
o.handlers["POST"]["/users"] = user.NewCreateUser(o.context, o.UserCreateUserHandler)
if o.handlers["POST"] == nil {
o.handlers[strings.ToUpper("POST")] = make(map[string]http.Handler)
}
o.handlers["POST"]["/users/createWithArray"] = user.NewCreateUsersWithArrayInput(o.context, o.UserCreateUsersWithArrayInputHandler)
if o.handlers["POST"] == nil {
o.handlers[strings.ToUpper("POST")] = make(map[string]http.Handler)
}
o.handlers["POST"]["/users/createWithList"] = user.NewCreateUsersWithListInput(o.context, o.UserCreateUsersWithListInputHandler)
if o.handlers["DELETE"] == nil {
o.handlers[strings.ToUpper("DELETE")] = make(map[string]http.Handler)
}
o.handlers["DELETE"]["/stores/order/{orderId}"] = store.NewDeleteOrder(o.context, o.StoreDeleteOrderHandler)
if o.handlers["DELETE"] == nil {
o.handlers[strings.ToUpper("DELETE")] = make(map[string]http.Handler)
}
o.handlers["DELETE"]["/pets/{petId}"] = pet.NewDeletePet(o.context, o.PetDeletePetHandler)
if o.handlers["DELETE"] == nil {
o.handlers[strings.ToUpper("DELETE")] = make(map[string]http.Handler)
}
o.handlers["DELETE"]["/users/{username}"] = user.NewDeleteUser(o.context, o.UserDeleteUserHandler)
if o.handlers["GET"] == nil {
o.handlers[strings.ToUpper("GET")] = make(map[string]http.Handler)
}
o.handlers["GET"]["/pets/findByStatus"] = pet.NewFindPetsByStatus(o.context, o.PetFindPetsByStatusHandler)
if o.handlers["GET"] == nil {
o.handlers[strings.ToUpper("GET")] = make(map[string]http.Handler)
}
o.handlers["GET"]["/pets/findByTags"] = pet.NewFindPetsByTags(o.context, o.PetFindPetsByTagsHandler)
if o.handlers["GET"] == nil {
o.handlers[strings.ToUpper("GET")] = make(map[string]http.Handler)
}
o.handlers["GET"]["/stores/order/{orderId}"] = store.NewGetOrderByID(o.context, o.StoreGetOrderByIDHandler)
if o.handlers["GET"] == nil {
o.handlers[strings.ToUpper("GET")] = make(map[string]http.Handler)
}
o.handlers["GET"]["/pets/{petId}"] = pet.NewGetPetByID(o.context, o.PetGetPetByIDHandler)
if o.handlers["GET"] == nil {
o.handlers[strings.ToUpper("GET")] = make(map[string]http.Handler)
}
o.handlers["GET"]["/users/{username}"] = user.NewGetUserByName(o.context, o.UserGetUserByNameHandler)
if o.handlers["GET"] == nil {
o.handlers[strings.ToUpper("GET")] = make(map[string]http.Handler)
}
o.handlers["GET"]["/users/login"] = user.NewLoginUser(o.context, o.UserLoginUserHandler)
if o.handlers["GET"] == nil {
o.handlers[strings.ToUpper("GET")] = make(map[string]http.Handler)
}
o.handlers["GET"]["/users/logout"] = user.NewLogoutUser(o.context, o.UserLogoutUserHandler)
if o.handlers["POST"] == nil {
o.handlers[strings.ToUpper("POST")] = make(map[string]http.Handler)
}
o.handlers["POST"]["/stores/order"] = store.NewPlaceOrder(o.context, o.StorePlaceOrderHandler)
if o.handlers["PUT"] == nil {
o.handlers[strings.ToUpper("PUT")] = make(map[string]http.Handler)
}
o.handlers["PUT"]["/pets"] = pet.NewUpdatePet(o.context, o.PetUpdatePetHandler)
if o.handlers["POST"] == nil {
o.handlers[strings.ToUpper("POST")] = make(map[string]http.Handler)
}
o.handlers["POST"]["/pets/{petId}"] = pet.NewUpdatePetWithForm(o.context, o.PetUpdatePetWithFormHandler)
if o.handlers["PUT"] == nil {
o.handlers[strings.ToUpper("PUT")] = make(map[string]http.Handler)
}
o.handlers["PUT"]["/users/{username}"] = user.NewUpdateUser(o.context, o.UserUpdateUserHandler)
}
// Serve creates a http handler to serve the API over HTTP
// can be used directly in http.ListenAndServe(":8000", api.Serve(nil))
func (o *PetstoreAPI) Serve(builder middleware.Builder) http.Handler {
o.Init()
if o.Middleware != nil {
return o.Middleware(builder)
}
return o.context.APIHandler(builder)
}
// Init allows you to just initialize the handler cache, you can then recompose the middelware as you see fit
func (o *PetstoreAPI) Init() {
if len(o.handlers) == 0 {
o.initHandlerCache()
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/gaogaoss/go-swagger.git
git@gitee.com:gaogaoss/go-swagger.git
gaogaoss
go-swagger
go-swagger
da1ca328b83f

搜索帮助