-
Notifications
You must be signed in to change notification settings - Fork 1
/
api.gen.go
474 lines (378 loc) · 13.3 KB
/
api.gen.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
// Package api 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 api
import (
"bytes"
"compress/gzip"
"encoding/base64"
"fmt"
"net/http"
"net/url"
"path"
"strings"
"github.com/deepmap/oapi-codegen/pkg/runtime"
"github.com/getkin/kin-openapi/openapi3"
"github.com/go-chi/chi/v5"
)
// Answer defines model for Answer.
type Answer struct {
Correct *bool `json:"correct,omitempty"`
Text string `json:"text"`
}
// Answers defines model for Answers.
type Answers = []Answer
// Domain defines model for Domain.
type Domain = string
// Domains defines model for Domains.
type Domains = []Domain
// Error defines model for Error.
type Error struct {
Message string `json:"message"`
}
// Group defines model for Group.
type Group struct {
BanEmojiiCount *int32 `json:"ban_emojii_count,omitempty"`
BanQuestion bool `json:"ban_question"`
BanTimeout int32 `json:"ban_timeout"`
BanUrl bool `json:"ban_url"`
Greeting string `json:"greeting"`
Id int64 `json:"id"`
IgnoreDomains *Domains `json:"ignore_domains,omitempty"`
Questions Questions `json:"questions"`
}
// Healthcheck defines model for Healthcheck.
type Healthcheck = map[string]interface{}
// Question defines model for Question.
type Question struct {
Answers Answers `json:"answers"`
Text string `json:"text"`
}
// Questions defines model for Questions.
type Questions = []Question
// TokenData defines model for TokenData.
type TokenData struct {
Ttl string `json:"ttl"`
}
// Token defines model for Token.
type Token = string
// GetGroupResponse defines model for GetGroupResponse.
type GetGroupResponse = Group
// GetTokenResponse defines model for GetTokenResponse.
type GetTokenResponse = TokenData
// HealthcheckResponse defines model for HealthcheckResponse.
type HealthcheckResponse = Healthcheck
// InternalErrorResponse defines model for InternalErrorResponse.
type InternalErrorResponse = Error
// NotFoundErrorResponse defines model for NotFoundErrorResponse.
type NotFoundErrorResponse = Error
// SaveGroupResponse defines model for SaveGroupResponse.
type SaveGroupResponse = map[string]interface{}
// SaveGroupRequest defines model for SaveGroupRequest.
type SaveGroupRequest = Group
// GetGroupParams defines parameters for GetGroup.
type GetGroupParams struct {
Token Token `form:"token" json:"token"`
}
// SaveGroupParams defines parameters for SaveGroup.
type SaveGroupParams struct {
Token Token `form:"token" json:"token"`
}
// GetTokenDataParams defines parameters for GetTokenData.
type GetTokenDataParams struct {
Token Token `form:"token" json:"token"`
}
// SaveGroupJSONRequestBody defines body for SaveGroup for application/json ContentType.
type SaveGroupJSONRequestBody = SaveGroupRequest
// ServerInterface represents all server handlers.
type ServerInterface interface {
// (GET /group)
GetGroup(w http.ResponseWriter, r *http.Request, params GetGroupParams)
// (POST /group)
SaveGroup(w http.ResponseWriter, r *http.Request, params SaveGroupParams)
// (GET /healthcheck)
Healthcheck(w http.ResponseWriter, r *http.Request)
// (GET /token)
GetTokenData(w http.ResponseWriter, r *http.Request, params GetTokenDataParams)
}
// 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
// GetGroup operation middleware
func (siw *ServerInterfaceWrapper) GetGroup(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
var err error
// Parameter object where we will unmarshal all parameters from the context
var params GetGroupParams
// ------------- Required query parameter "token" -------------
if paramValue := r.URL.Query().Get("token"); paramValue != "" {
} else {
siw.ErrorHandlerFunc(w, r, &RequiredParamError{ParamName: "token"})
return
}
err = runtime.BindQueryParameter("form", true, true, "token", r.URL.Query(), ¶ms.Token)
if err != nil {
siw.ErrorHandlerFunc(w, r, &InvalidParamFormatError{ParamName: "token", Err: err})
return
}
var handler = func(w http.ResponseWriter, r *http.Request) {
siw.Handler.GetGroup(w, r, params)
}
for _, middleware := range siw.HandlerMiddlewares {
handler = middleware(handler)
}
handler(w, r.WithContext(ctx))
}
// SaveGroup operation middleware
func (siw *ServerInterfaceWrapper) SaveGroup(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
var err error
// Parameter object where we will unmarshal all parameters from the context
var params SaveGroupParams
// ------------- Required query parameter "token" -------------
if paramValue := r.URL.Query().Get("token"); paramValue != "" {
} else {
siw.ErrorHandlerFunc(w, r, &RequiredParamError{ParamName: "token"})
return
}
err = runtime.BindQueryParameter("form", true, true, "token", r.URL.Query(), ¶ms.Token)
if err != nil {
siw.ErrorHandlerFunc(w, r, &InvalidParamFormatError{ParamName: "token", Err: err})
return
}
var handler = func(w http.ResponseWriter, r *http.Request) {
siw.Handler.SaveGroup(w, r, params)
}
for _, middleware := range siw.HandlerMiddlewares {
handler = middleware(handler)
}
handler(w, r.WithContext(ctx))
}
// Healthcheck operation middleware
func (siw *ServerInterfaceWrapper) Healthcheck(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
var handler = func(w http.ResponseWriter, r *http.Request) {
siw.Handler.Healthcheck(w, r)
}
for _, middleware := range siw.HandlerMiddlewares {
handler = middleware(handler)
}
handler(w, r.WithContext(ctx))
}
// GetTokenData operation middleware
func (siw *ServerInterfaceWrapper) GetTokenData(w http.ResponseWriter, r *http.Request) {
ctx := r.Context()
var err error
// Parameter object where we will unmarshal all parameters from the context
var params GetTokenDataParams
// ------------- Required query parameter "token" -------------
if paramValue := r.URL.Query().Get("token"); paramValue != "" {
} else {
siw.ErrorHandlerFunc(w, r, &RequiredParamError{ParamName: "token"})
return
}
err = runtime.BindQueryParameter("form", true, true, "token", r.URL.Query(), ¶ms.Token)
if err != nil {
siw.ErrorHandlerFunc(w, r, &InvalidParamFormatError{ParamName: "token", Err: err})
return
}
var handler = func(w http.ResponseWriter, r *http.Request) {
siw.Handler.GetTokenData(w, r, params)
}
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+"/group", wrapper.GetGroup)
})
r.Group(func(r chi.Router) {
r.Post(options.BaseURL+"/group", wrapper.SaveGroup)
})
r.Group(func(r chi.Router) {
r.Get(options.BaseURL+"/healthcheck", wrapper.Healthcheck)
})
r.Group(func(r chi.Router) {
r.Get(options.BaseURL+"/token", wrapper.GetTokenData)
})
return r
}
// Base64 encoded, gzipped, json marshaled Swagger object
var swaggerSpec = []string{
"H4sIAAAAAAAC/8xX32/bNhD+V4zbHtnITtM86C1Dt87YMCzb3oogoKWzzMQkVfLk1Sv0vw8k9csWBaVZ",
"VuRNIk/3fffx7nj6ApmWpVaoyEL6BUpuuERC49/+0o+o3INQkMKnCs0RGCguEVIgv8nA4KdKGMwhJVMh",
"A5vtUHL3FR1LZ2jJCFVAXdfBGC39oHOBHuJPfsAPRlflH2HHrWVaESr/yMtyLzJOQqvkwWpPpgf43uAW",
"Uvgu6YNIwq5NvNMetGcYVmyplQ0UPiA1DMLi/0EhR5sZUTonkI4Ra+bWvNwvzsJ7fc+JTzA5Ra0Z/Ix8",
"T7tsh9nji5MZ+I7RiUHXDNaK0Ci+/9EYbV6ck/caYxOHrRn8puknXan8G/OJw9ZsWETP4NKUqd48YEYx",
"3LF7Z9PQdR5ulP0bje8fRpdoqCnuTBvjfPYgG633yJUjTfjZ70j++VdUBe0gXS2XDKRQ3Tsb9ZBhNX8M",
"Pu7YeQisYeRJCEJp5zRvIqiZo7MOX6wCmfatQ+HG8KMzfa8lF+oshst31yPWrenT+TSuz/jMEQqZMzoG",
"idbyAmMt+VTO1jCmaGhmI98bru5R6gch7jNdhXTbaiM5QQpC0dtL8DEIWclO0vCy7FCEIiyC/M6fvwhE",
"SNNx3jgLEhJ1NQN2PQRbTYFVZh/HKQwiOZVGOTqXpAxEfk7t+gpiDEShtMH7vE+P+ayw7sNWo9lvbjvD",
"89MWOQyiPJO+F+dU8SFyLE2GDX7cWxjcDs72NJN4X7LzlWqnO8hzWgjr0GMx3Q61flL5dlF+ZQH3d/VI",
"HqL9SU7lnPDNVkiE2QhpHwnLWQm11e1VwUOfboa7G5UbPC5+qf6RoQ2d3gg3v68drKC9M14byRcbTYut",
"8XdOvgj7BzQ22K8ulhdL50aXqHgpIIW3folByWnnA0yKtsMU6KmMJpVFsPBejL/N1vlgmvLO+vH1Y/yI",
"epMwGUF9dzYPXi6XU+fb2SWxEe5qeTX/4eQl/u4psBMjiSsGXrigIWh0VzMotY3o6C7zCSG7e/4/KdkO",
"+MfpaAb/AMnoB6B+znFERpRXdh41g2R32hyjeT5soOcHdLr39SpFx+sBV98PAlVqf/0mi9FbLHLXrCIV",
"2Xeyb1yVo9+ZV5EFvKKdU9bNzWgOrRR++IAdUWnTJBFG8jcbTRf0mPBSJIeVl6Hx0fVmf0o1695Dhg0W",
"PFh9V/8bAAD//wIZv2TdDwAA",
}
// 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
}
}
// Constructs a synthetic filesystem for resolving external references when loading openapi specifications.
func PathToRawSpec(pathToFile string) map[string]func() ([]byte, error) {
var res = make(map[string]func() ([]byte, error))
if len(pathToFile) > 0 {
res[pathToFile] = rawSpec
}
return res
}
// GetSwagger returns the Swagger specification corresponding to the generated code
// in this file. The external references of Swagger specification are resolved.
// The logic of resolving external references is tightly connected to "import-mapping" feature.
// Externally referenced files must be embedded in the corresponding golang packages.
// Urls can be supported but this task was out of the scope.
func GetSwagger() (swagger *openapi3.T, err error) {
var resolvePath = PathToRawSpec("")
loader := openapi3.NewLoader()
loader.IsExternalRefsAllowed = true
loader.ReadFromURIFunc = func(loader *openapi3.Loader, url *url.URL) ([]byte, error) {
var pathToFile = url.String()
pathToFile = path.Clean(pathToFile)
getSpec, ok := resolvePath[pathToFile]
if !ok {
err1 := fmt.Errorf("path not found: %s", pathToFile)
return nil, err1
}
return getSpec()
}
var specData []byte
specData, err = rawSpec()
if err != nil {
return
}
swagger, err = loader.LoadFromData(specData)
if err != nil {
return
}
return
}