forked from go-swagger/go-swagger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
petstore_api.go
582 lines (519 loc) · 23.5 KB
/
petstore_api.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
// Code generated by go-swagger; DO NOT EDIT.
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"
"github.com/go-openapi/errors"
"github.com/go-openapi/loads"
"github.com/go-openapi/runtime"
"github.com/go-openapi/runtime/middleware"
"github.com/go-openapi/runtime/security"
"github.com/go-openapi/spec"
"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",
customConsumers: make(map[string]runtime.Consumer),
customProducers: make(map[string]runtime.Producer),
PreServerShutdown: func() {},
ServerShutdown: func() {},
spec: spec,
useSwaggerUI: false,
ServeError: errors.ServeError,
BasicAuthenticator: security.BasicAuth,
APIKeyAuthenticator: security.APIKeyAuth,
BearerAuthenticator: security.BearerAuth,
JSONConsumer: runtime.JSONConsumer(),
UrlformConsumer: runtime.DiscardConsumer,
XMLConsumer: runtime.XMLConsumer(),
JSONProducer: runtime.JSONProducer(),
XMLProducer: runtime.XMLProducer(),
PetAddPetHandler: pet.AddPetHandlerFunc(func(params pet.AddPetParams, principal interface{}) middleware.Responder {
return middleware.NotImplemented("operation pet.AddPet has not yet been implemented")
}),
UserCreateUserHandler: user.CreateUserHandlerFunc(func(params user.CreateUserParams) middleware.Responder {
return middleware.NotImplemented("operation user.CreateUser has not yet been implemented")
}),
UserCreateUsersWithArrayInputHandler: user.CreateUsersWithArrayInputHandlerFunc(func(params user.CreateUsersWithArrayInputParams) middleware.Responder {
return middleware.NotImplemented("operation user.CreateUsersWithArrayInput has not yet been implemented")
}),
UserCreateUsersWithListInputHandler: user.CreateUsersWithListInputHandlerFunc(func(params user.CreateUsersWithListInputParams) middleware.Responder {
return middleware.NotImplemented("operation user.CreateUsersWithListInput has not yet been implemented")
}),
StoreDeleteOrderHandler: store.DeleteOrderHandlerFunc(func(params store.DeleteOrderParams) middleware.Responder {
return middleware.NotImplemented("operation store.DeleteOrder has not yet been implemented")
}),
PetDeletePetHandler: pet.DeletePetHandlerFunc(func(params pet.DeletePetParams, principal interface{}) middleware.Responder {
return middleware.NotImplemented("operation pet.DeletePet has not yet been implemented")
}),
UserDeleteUserHandler: user.DeleteUserHandlerFunc(func(params user.DeleteUserParams) middleware.Responder {
return middleware.NotImplemented("operation user.DeleteUser has not yet been implemented")
}),
PetFindPetsByStatusHandler: pet.FindPetsByStatusHandlerFunc(func(params pet.FindPetsByStatusParams, principal interface{}) middleware.Responder {
return middleware.NotImplemented("operation pet.FindPetsByStatus has not yet been implemented")
}),
PetFindPetsByTagsHandler: pet.FindPetsByTagsHandlerFunc(func(params pet.FindPetsByTagsParams, principal interface{}) middleware.Responder {
return middleware.NotImplemented("operation pet.FindPetsByTags has not yet been implemented")
}),
StoreGetOrderByIDHandler: store.GetOrderByIDHandlerFunc(func(params store.GetOrderByIDParams) middleware.Responder {
return middleware.NotImplemented("operation store.GetOrderByID has not yet been implemented")
}),
PetGetPetByIDHandler: pet.GetPetByIDHandlerFunc(func(params pet.GetPetByIDParams, principal interface{}) middleware.Responder {
return middleware.NotImplemented("operation pet.GetPetByID has not yet been implemented")
}),
UserGetUserByNameHandler: user.GetUserByNameHandlerFunc(func(params user.GetUserByNameParams) middleware.Responder {
return middleware.NotImplemented("operation user.GetUserByName has not yet been implemented")
}),
UserLoginUserHandler: user.LoginUserHandlerFunc(func(params user.LoginUserParams) middleware.Responder {
return middleware.NotImplemented("operation user.LoginUser has not yet been implemented")
}),
UserLogoutUserHandler: user.LogoutUserHandlerFunc(func(params user.LogoutUserParams) middleware.Responder {
return middleware.NotImplemented("operation user.LogoutUser has not yet been implemented")
}),
StorePlaceOrderHandler: store.PlaceOrderHandlerFunc(func(params store.PlaceOrderParams) middleware.Responder {
return middleware.NotImplemented("operation store.PlaceOrder has not yet been implemented")
}),
PetUpdatePetHandler: pet.UpdatePetHandlerFunc(func(params pet.UpdatePetParams, principal interface{}) middleware.Responder {
return middleware.NotImplemented("operation pet.UpdatePet has not yet been implemented")
}),
PetUpdatePetWithFormHandler: pet.UpdatePetWithFormHandlerFunc(func(params pet.UpdatePetWithFormParams, principal interface{}) middleware.Responder {
return middleware.NotImplemented("operation pet.UpdatePetWithForm has not yet been implemented")
}),
UserUpdateUserHandler: user.UpdateUserHandlerFunc(func(params user.UpdateUserParams) middleware.Responder {
return middleware.NotImplemented("operation user.UpdateUser has not yet been implemented")
}),
// Applies when the "api_key" header is set
APIKeyAuth: func(token string) (interface{}, error) {
return nil, errors.NotImplemented("api key auth (api_key) api_key from header param [api_key] has not yet been implemented")
},
PetstoreAuthAuth: func(token string, scopes []string) (interface{}, error) {
return nil, errors.NotImplemented("oauth2 bearer auth (petstore_auth) has not yet been implemented")
},
// default authorizer is authorized meaning no requests are blocked
APIAuthorizer: security.Authorized(),
}
}
/*
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
customConsumers map[string]runtime.Consumer
customProducers map[string]runtime.Producer
defaultConsumes string
defaultProduces string
Middleware func(middleware.Builder) http.Handler
useSwaggerUI bool
// BasicAuthenticator generates a runtime.Authenticator from the supplied basic auth function.
// It has a default implementation in the security package, however you can replace it for your particular usage.
BasicAuthenticator func(security.UserPassAuthentication) runtime.Authenticator
// APIKeyAuthenticator generates a runtime.Authenticator from the supplied token auth function.
// It has a default implementation in the security package, however you can replace it for your particular usage.
APIKeyAuthenticator func(string, string, security.TokenAuthentication) runtime.Authenticator
// BearerAuthenticator generates a runtime.Authenticator from the supplied bearer token auth function.
// It has a default implementation in the security package, however you can replace it for your particular usage.
BearerAuthenticator func(string, security.ScopedTokenAuthentication) runtime.Authenticator
// JSONConsumer registers a consumer for the following mime types:
// - application/json
JSONConsumer runtime.Consumer
// UrlformConsumer registers a consumer for the following mime types:
// - application/x-www-form-urlencoded
UrlformConsumer runtime.Consumer
// XMLConsumer registers a consumer for the following mime types:
// - application/xml
XMLConsumer runtime.Consumer
// JSONProducer registers a producer for the following mime types:
// - application/json
JSONProducer runtime.Producer
// XMLProducer registers a producer for the following mime types:
// - application/xml
XMLProducer runtime.Producer
// 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)
// PetstoreAuthAuth registers a function 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)
// APIAuthorizer provides access control (ACL/RBAC/ABAC) by providing access to the request and authenticated principal
APIAuthorizer runtime.Authorizer
// 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)
// PreServerShutdown is called before the HTTP(S) server is shutdown
// This allows for custom functions to get executed before the HTTP(S) server stops accepting traffic
PreServerShutdown func()
// 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{})
}
// UseRedoc for documentation at /docs
func (o *PetstoreAPI) UseRedoc() {
o.useSwaggerUI = false
}
// UseSwaggerUI for documentation at /docs
func (o *PetstoreAPI) UseSwaggerUI() {
o.useSwaggerUI = true
}
// 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.APIKeyAuth == nil {
unregistered = append(unregistered, "APIKeyAuth")
}
if o.PetstoreAuthAuth == nil {
unregistered = append(unregistered, "PetstoreAuthAuth")
}
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 := range schemes {
switch name {
case "api_key":
scheme := schemes[name]
result[name] = o.APIKeyAuthenticator(scheme.Name, scheme.In, o.APIKeyAuth)
case "petstore_auth":
result[name] = o.BearerAuthenticator(name, o.PetstoreAuthAuth)
}
}
return result
}
// Authorizer returns the registered authorizer
func (o *PetstoreAPI) Authorizer() runtime.Authorizer {
return o.APIAuthorizer
}
// ConsumersFor gets the consumers for the specified media types.
// MIME type parameters are ignored here.
func (o *PetstoreAPI) ConsumersFor(mediaTypes []string) map[string]runtime.Consumer {
result := make(map[string]runtime.Consumer, len(mediaTypes))
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
}
if c, ok := o.customConsumers[mt]; ok {
result[mt] = c
}
}
return result
}
// ProducersFor gets the producers for the specified media types.
// MIME type parameters are ignored here.
func (o *PetstoreAPI) ProducersFor(mediaTypes []string) map[string]runtime.Producer {
result := make(map[string]runtime.Producer, len(mediaTypes))
for _, mt := range mediaTypes {
switch mt {
case "application/json":
result["application/json"] = o.JSONProducer
case "application/xml":
result["application/xml"] = o.XMLProducer
}
if p, ok := o.customProducers[mt]; ok {
result[mt] = p
}
}
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
}
if path == "/" {
path = ""
}
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["POST"] = make(map[string]http.Handler)
}
o.handlers["POST"]["/pets"] = pet.NewAddPet(o.context, o.PetAddPetHandler)
if o.handlers["POST"] == nil {
o.handlers["POST"] = make(map[string]http.Handler)
}
o.handlers["POST"]["/users"] = user.NewCreateUser(o.context, o.UserCreateUserHandler)
if o.handlers["POST"] == nil {
o.handlers["POST"] = make(map[string]http.Handler)
}
o.handlers["POST"]["/users/createWithArray"] = user.NewCreateUsersWithArrayInput(o.context, o.UserCreateUsersWithArrayInputHandler)
if o.handlers["POST"] == nil {
o.handlers["POST"] = make(map[string]http.Handler)
}
o.handlers["POST"]["/users/createWithList"] = user.NewCreateUsersWithListInput(o.context, o.UserCreateUsersWithListInputHandler)
if o.handlers["DELETE"] == nil {
o.handlers["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["DELETE"] = make(map[string]http.Handler)
}
o.handlers["DELETE"]["/pets/{petId}"] = pet.NewDeletePet(o.context, o.PetDeletePetHandler)
if o.handlers["DELETE"] == nil {
o.handlers["DELETE"] = make(map[string]http.Handler)
}
o.handlers["DELETE"]["/users/{username}"] = user.NewDeleteUser(o.context, o.UserDeleteUserHandler)
if o.handlers["GET"] == nil {
o.handlers["GET"] = make(map[string]http.Handler)
}
o.handlers["GET"]["/pets/findByStatus"] = pet.NewFindPetsByStatus(o.context, o.PetFindPetsByStatusHandler)
if o.handlers["GET"] == nil {
o.handlers["GET"] = make(map[string]http.Handler)
}
o.handlers["GET"]["/pets/findByTags"] = pet.NewFindPetsByTags(o.context, o.PetFindPetsByTagsHandler)
if o.handlers["GET"] == nil {
o.handlers["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["GET"] = make(map[string]http.Handler)
}
o.handlers["GET"]["/pets/{petId}"] = pet.NewGetPetByID(o.context, o.PetGetPetByIDHandler)
if o.handlers["GET"] == nil {
o.handlers["GET"] = make(map[string]http.Handler)
}
o.handlers["GET"]["/users/{username}"] = user.NewGetUserByName(o.context, o.UserGetUserByNameHandler)
if o.handlers["GET"] == nil {
o.handlers["GET"] = make(map[string]http.Handler)
}
o.handlers["GET"]["/users/login"] = user.NewLoginUser(o.context, o.UserLoginUserHandler)
if o.handlers["GET"] == nil {
o.handlers["GET"] = make(map[string]http.Handler)
}
o.handlers["GET"]["/users/logout"] = user.NewLogoutUser(o.context, o.UserLogoutUserHandler)
if o.handlers["POST"] == nil {
o.handlers["POST"] = make(map[string]http.Handler)
}
o.handlers["POST"]["/stores/order"] = store.NewPlaceOrder(o.context, o.StorePlaceOrderHandler)
if o.handlers["PUT"] == nil {
o.handlers["PUT"] = make(map[string]http.Handler)
}
o.handlers["PUT"]["/pets"] = pet.NewUpdatePet(o.context, o.PetUpdatePetHandler)
if o.handlers["POST"] == nil {
o.handlers["POST"] = make(map[string]http.Handler)
}
o.handlers["POST"]["/pets/{petId}"] = pet.NewUpdatePetWithForm(o.context, o.PetUpdatePetWithFormHandler)
if o.handlers["PUT"] == nil {
o.handlers["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)
}
if o.useSwaggerUI {
return o.context.APIHandlerSwaggerUI(builder)
}
return o.context.APIHandler(builder)
}
// Init allows you to just initialize the handler cache, you can then recompose the middleware as you see fit
func (o *PetstoreAPI) Init() {
if len(o.handlers) == 0 {
o.initHandlerCache()
}
}
// RegisterConsumer allows you to add (or override) a consumer for a media type.
func (o *PetstoreAPI) RegisterConsumer(mediaType string, consumer runtime.Consumer) {
o.customConsumers[mediaType] = consumer
}
// RegisterProducer allows you to add (or override) a producer for a media type.
func (o *PetstoreAPI) RegisterProducer(mediaType string, producer runtime.Producer) {
o.customProducers[mediaType] = producer
}
// AddMiddlewareFor adds a http middleware to existing handler
func (o *PetstoreAPI) AddMiddlewareFor(method, path string, builder middleware.Builder) {
um := strings.ToUpper(method)
if path == "/" {
path = ""
}
o.Init()
if h, ok := o.handlers[um][path]; ok {
o.handlers[method][path] = builder(h)
}
}