-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.generated.go
267 lines (216 loc) · 7.08 KB
/
schema.generated.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
// Package spec provides primitives to interact with the openapi HTTP API.
//
// Code generated by github.com/deepmap/oapi-codegen version v1.11.0 DO NOT EDIT.
package spec
import (
"bytes"
"compress/gzip"
"encoding/base64"
"fmt"
"net/http"
"strings"
"github.com/deepmap/oapi-codegen/pkg/runtime"
"github.com/go-chi/chi/v5"
externalRef0 "github.com/miamollie/tea/api/tea"
)
// TeasResponse defines model for TeasResponse.
type TeasResponse = []externalRef0.Tea
// ServerInterface represents all server handlers.
type ServerInterface interface {
// Returns a single tea
// (GET /tea/{teaId})
GetTea(w http.ResponseWriter, r *http.Request, teaId int)
// Returns all tea
// (GET /teas)
GetTeas(w http.ResponseWriter, r *http.Request)
// Add a new tea
// (POST /teas)
AddTea(w http.ResponseWriter, r *http.Request)
}
// ServerInterfaceWrapper converts contexts to parameters.
type ServerInterfaceWrapper struct {
Handler ServerInterface
HandlerMiddlewares []MiddlewareFunc
ErrorHandlerFunc func(w http.ResponseWriter, r *http.Request, err error)
}
type MiddlewareFunc func(http.HandlerFunc) http.HandlerFunc
// GetTea operation middleware
func (siw *ServerInterfaceWrapper) GetTea(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
var err error
// ------------- Path parameter "teaId" -------------
var teaId int
err = runtime.BindStyledParameter("simple", false, "teaId", chi.URLParam(r, "teaId"), &teaId)
if err != nil {
siw.ErrorHandlerFunc(w, r, &InvalidParamFormatError{ParamName: "teaId", Err: err})
return
}
var handler = func(w http.ResponseWriter, r *http.Request) {
siw.Handler.GetTea(w, r, teaId)
}
for _, middleware := range siw.HandlerMiddlewares {
handler = middleware(handler)
}
handler(w, r.WithContext(ctx))
}
// GetTeas operation middleware
func (siw *ServerInterfaceWrapper) GetTeas(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
var handler = func(w http.ResponseWriter, r *http.Request) {
siw.Handler.GetTeas(w, r)
}
for _, middleware := range siw.HandlerMiddlewares {
handler = middleware(handler)
}
handler(w, r.WithContext(ctx))
}
// AddTea operation middleware
func (siw *ServerInterfaceWrapper) AddTea(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
var handler = func(w http.ResponseWriter, r *http.Request) {
siw.Handler.AddTea(w, r)
}
for _, middleware := range siw.HandlerMiddlewares {
handler = middleware(handler)
}
handler(w, r.WithContext(ctx))
}
type UnescapedCookieParamError struct {
ParamName string
Err error
}
func (e *UnescapedCookieParamError) Error() string {
return fmt.Sprintf("error unescaping cookie parameter '%s'", e.ParamName)
}
func (e *UnescapedCookieParamError) Unwrap() error {
return e.Err
}
type UnmarshalingParamError struct {
ParamName string
Err error
}
func (e *UnmarshalingParamError) Error() string {
return fmt.Sprintf("Error unmarshaling parameter %s as JSON: %s", e.ParamName, e.Err.Error())
}
func (e *UnmarshalingParamError) Unwrap() error {
return e.Err
}
type RequiredParamError struct {
ParamName string
}
func (e *RequiredParamError) Error() string {
return fmt.Sprintf("Query argument %s is required, but not found", e.ParamName)
}
type RequiredHeaderError struct {
ParamName string
Err error
}
func (e *RequiredHeaderError) Error() string {
return fmt.Sprintf("Header parameter %s is required, but not found", e.ParamName)
}
func (e *RequiredHeaderError) Unwrap() error {
return e.Err
}
type InvalidParamFormatError struct {
ParamName string
Err error
}
func (e *InvalidParamFormatError) Error() string {
return fmt.Sprintf("Invalid format for parameter %s: %s", e.ParamName, e.Err.Error())
}
func (e *InvalidParamFormatError) Unwrap() error {
return e.Err
}
type TooManyValuesForParamError struct {
ParamName string
Count int
}
func (e *TooManyValuesForParamError) Error() string {
return fmt.Sprintf("Expected one value for %s, got %d", e.ParamName, e.Count)
}
// Handler creates http.Handler with routing matching OpenAPI spec.
func Handler(si ServerInterface) http.Handler {
return HandlerWithOptions(si, ChiServerOptions{})
}
type ChiServerOptions struct {
BaseURL string
BaseRouter chi.Router
Middlewares []MiddlewareFunc
ErrorHandlerFunc func(w http.ResponseWriter, r *http.Request, err error)
}
// HandlerFromMux creates http.Handler with routing matching OpenAPI spec based on the provided mux.
func HandlerFromMux(si ServerInterface, r chi.Router) http.Handler {
return HandlerWithOptions(si, ChiServerOptions{
BaseRouter: r,
})
}
func HandlerFromMuxWithBaseURL(si ServerInterface, r chi.Router, baseURL string) http.Handler {
return HandlerWithOptions(si, ChiServerOptions{
BaseURL: baseURL,
BaseRouter: r,
})
}
// HandlerWithOptions creates http.Handler with additional options
func HandlerWithOptions(si ServerInterface, options ChiServerOptions) http.Handler {
r := options.BaseRouter
if r == nil {
r = chi.NewRouter()
}
if options.ErrorHandlerFunc == nil {
options.ErrorHandlerFunc = func(w http.ResponseWriter, r *http.Request, err error) {
http.Error(w, err.Error(), http.StatusBadRequest)
}
}
wrapper := ServerInterfaceWrapper{
Handler: si,
HandlerMiddlewares: options.Middlewares,
ErrorHandlerFunc: options.ErrorHandlerFunc,
}
r.Group(func(r chi.Router) {
r.Get(options.BaseURL+"/tea/{teaId}", wrapper.GetTea)
})
r.Group(func(r chi.Router) {
r.Get(options.BaseURL+"/teas", wrapper.GetTeas)
})
r.Group(func(r chi.Router) {
r.Post(options.BaseURL+"/teas", wrapper.AddTea)
})
return r
}
// Base64 encoded, gzipped, json marshaled Swagger object
var swaggerSpec = []string{
"H4sIAAAAAAAC/9yTTWsbMRCG/8oyzVH2uh+nvW2IKYakMY6hLaWYwRrbKquPSuMmrtF/L6PdpjEEkvbQ",
"Qw4L0kiaeed5Z4+w9jZ4R44TNEeIlIJ3icpmSZgWQ0D2a++YHMsSQ+jMGtl4V39L3kksrXdkUVZ0hzZ0",
"BM2XI5xF2kAD43HNhPKND7Z7Vf8pWw+3kxxOh5f5qwLDZIuOp1P0pVO9JISsgA+BoAGMEQ+Qc1agKa2j",
"CaIXGrg0iSu/qaTB/ty4jZdSbFh0AxOCgh8UU//i9XgynkhqH8hhMNDA2xJSEJB3RWZRd2TCmc6y31JB",
"5QPFAmqmoYH3xMuSO2BES0wxFUynAmcXIo93VPVCjASlEChwaAeFMw0KIn3fm0gaGo57Ug9cGCgYx7Sl",
"CFmYnvj7ZjJ5gPcE6P29+mQIsoJ3/aNnz8LzzZvG6ONjdp2jrqRNSgxymvbWYjxAAwvifXSpwioZt+1+",
"47obocWf3o0wmC0y3eJhVDD0RoisHXO4It75Ysp0CfdT0368Wc0X158+g4J9FKfPju18trpsr84v2lW7",
"+JB7kdJMesLoBC+Xedf9P9wKgk+PUG617n+nFwa51brCytHtPyKeX9/8/Ujn/CsAAP//Xy1T2A8GAAA=",
}
// GetSwagger returns the content of the embedded swagger specification file
// or error if failed to decode
func decodeSpec() ([]byte, error) {
zipped, err := base64.StdEncoding.DecodeString(strings.Join(swaggerSpec, ""))
if err != nil {
return nil, fmt.Errorf("error base64 decoding spec: %s", err)
}
zr, err := gzip.NewReader(bytes.NewReader(zipped))
if err != nil {
return nil, fmt.Errorf("error decompressing spec: %s", err)
}
var buf bytes.Buffer
_, err = buf.ReadFrom(zr)
if err != nil {
return nil, fmt.Errorf("error decompressing spec: %s", err)
}
return buf.Bytes(), nil
}
var rawSpec = decodeSpecCached()
// a naive cached of a decoded swagger spec
func decodeSpecCached() func() ([]byte, error) {
data, err := decodeSpec()
return func() ([]byte, error) {
return data, err
}
}