This repository has been archived by the owner on Nov 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
configure_ziti_fabric.go
272 lines (252 loc) · 13.7 KB
/
configure_ziti_fabric.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
// This file is safe to edit. Once it exists it will not be overwritten
//
// Copyright NetFoundry Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// __ __ _
// \ \ / / (_)
// \ \ /\ / /_ _ _ __ _ __ _ _ __ __ _
// \ \/ \/ / _` | '__| '_ \| | '_ \ / _` |
// \ /\ / (_| | | | | | | | | | | (_| | : This file is generated, do not edit it.
// \/ \/ \__,_|_| |_| |_|_|_| |_|\__, |
// __/ |
// |___/
package rest_server
import (
"crypto/tls"
"net/http"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
"github.com/go-openapi/runtime/middleware"
"github.com/openziti/fabric/controller/rest_server/operations"
"github.com/openziti/fabric/controller/rest_server/operations/circuit"
"github.com/openziti/fabric/controller/rest_server/operations/database"
"github.com/openziti/fabric/controller/rest_server/operations/inspect"
"github.com/openziti/fabric/controller/rest_server/operations/link"
"github.com/openziti/fabric/controller/rest_server/operations/raft"
"github.com/openziti/fabric/controller/rest_server/operations/router"
"github.com/openziti/fabric/controller/rest_server/operations/service"
"github.com/openziti/fabric/controller/rest_server/operations/terminator"
)
//go:generate swagger generate server --target ../../controller --name ZitiFabric --spec ../specs/swagger.yml --model-package rest_model --server-package rest_server --principal interface{} --exclude-main
func configureFlags(api *operations.ZitiFabricAPI) {
// api.CommandLineOptionsGroups = []swag.CommandLineOptionsGroup{ ... }
}
func configureAPI(api *operations.ZitiFabricAPI) http.Handler {
// configure the api here
api.ServeError = errors.ServeError
// Set your custom logger if needed. Default one is log.Printf
// Expected interface func(string, ...interface{})
//
// Example:
// api.Logger = log.Printf
api.UseSwaggerUI()
// To continue using redoc as your UI, uncomment the following line
// api.UseRedoc()
api.JSONConsumer = runtime.JSONConsumer()
api.JSONProducer = runtime.JSONProducer()
if api.DatabaseCheckDataIntegrityHandler == nil {
api.DatabaseCheckDataIntegrityHandler = database.CheckDataIntegrityHandlerFunc(func(params database.CheckDataIntegrityParams, principal interface{}) middleware.Responder {
return middleware.NotImplemented("operation database.CheckDataIntegrity has not yet been implemented")
})
}
if api.DatabaseCreateDatabaseSnapshotHandler == nil {
api.DatabaseCreateDatabaseSnapshotHandler = database.CreateDatabaseSnapshotHandlerFunc(func(params database.CreateDatabaseSnapshotParams, principal interface{}) middleware.Responder {
return middleware.NotImplemented("operation database.CreateDatabaseSnapshot has not yet been implemented")
})
}
if api.DatabaseCreateDatabaseSnapshotWithPathHandler == nil {
api.DatabaseCreateDatabaseSnapshotWithPathHandler = database.CreateDatabaseSnapshotWithPathHandlerFunc(func(params database.CreateDatabaseSnapshotWithPathParams) middleware.Responder {
return middleware.NotImplemented("operation database.CreateDatabaseSnapshotWithPath has not yet been implemented")
})
}
if api.RouterCreateRouterHandler == nil {
api.RouterCreateRouterHandler = router.CreateRouterHandlerFunc(func(params router.CreateRouterParams) middleware.Responder {
return middleware.NotImplemented("operation router.CreateRouter has not yet been implemented")
})
}
if api.ServiceCreateServiceHandler == nil {
api.ServiceCreateServiceHandler = service.CreateServiceHandlerFunc(func(params service.CreateServiceParams) middleware.Responder {
return middleware.NotImplemented("operation service.CreateService has not yet been implemented")
})
}
if api.TerminatorCreateTerminatorHandler == nil {
api.TerminatorCreateTerminatorHandler = terminator.CreateTerminatorHandlerFunc(func(params terminator.CreateTerminatorParams) middleware.Responder {
return middleware.NotImplemented("operation terminator.CreateTerminator has not yet been implemented")
})
}
if api.DatabaseDataIntegrityResultsHandler == nil {
api.DatabaseDataIntegrityResultsHandler = database.DataIntegrityResultsHandlerFunc(func(params database.DataIntegrityResultsParams, principal interface{}) middleware.Responder {
return middleware.NotImplemented("operation database.DataIntegrityResults has not yet been implemented")
})
}
if api.CircuitDeleteCircuitHandler == nil {
api.CircuitDeleteCircuitHandler = circuit.DeleteCircuitHandlerFunc(func(params circuit.DeleteCircuitParams) middleware.Responder {
return middleware.NotImplemented("operation circuit.DeleteCircuit has not yet been implemented")
})
}
if api.LinkDeleteLinkHandler == nil {
api.LinkDeleteLinkHandler = link.DeleteLinkHandlerFunc(func(params link.DeleteLinkParams) middleware.Responder {
return middleware.NotImplemented("operation link.DeleteLink has not yet been implemented")
})
}
if api.RouterDeleteRouterHandler == nil {
api.RouterDeleteRouterHandler = router.DeleteRouterHandlerFunc(func(params router.DeleteRouterParams) middleware.Responder {
return middleware.NotImplemented("operation router.DeleteRouter has not yet been implemented")
})
}
if api.ServiceDeleteServiceHandler == nil {
api.ServiceDeleteServiceHandler = service.DeleteServiceHandlerFunc(func(params service.DeleteServiceParams) middleware.Responder {
return middleware.NotImplemented("operation service.DeleteService has not yet been implemented")
})
}
if api.TerminatorDeleteTerminatorHandler == nil {
api.TerminatorDeleteTerminatorHandler = terminator.DeleteTerminatorHandlerFunc(func(params terminator.DeleteTerminatorParams) middleware.Responder {
return middleware.NotImplemented("operation terminator.DeleteTerminator has not yet been implemented")
})
}
if api.CircuitDetailCircuitHandler == nil {
api.CircuitDetailCircuitHandler = circuit.DetailCircuitHandlerFunc(func(params circuit.DetailCircuitParams) middleware.Responder {
return middleware.NotImplemented("operation circuit.DetailCircuit has not yet been implemented")
})
}
if api.LinkDetailLinkHandler == nil {
api.LinkDetailLinkHandler = link.DetailLinkHandlerFunc(func(params link.DetailLinkParams) middleware.Responder {
return middleware.NotImplemented("operation link.DetailLink has not yet been implemented")
})
}
if api.RouterDetailRouterHandler == nil {
api.RouterDetailRouterHandler = router.DetailRouterHandlerFunc(func(params router.DetailRouterParams) middleware.Responder {
return middleware.NotImplemented("operation router.DetailRouter has not yet been implemented")
})
}
if api.ServiceDetailServiceHandler == nil {
api.ServiceDetailServiceHandler = service.DetailServiceHandlerFunc(func(params service.DetailServiceParams) middleware.Responder {
return middleware.NotImplemented("operation service.DetailService has not yet been implemented")
})
}
if api.TerminatorDetailTerminatorHandler == nil {
api.TerminatorDetailTerminatorHandler = terminator.DetailTerminatorHandlerFunc(func(params terminator.DetailTerminatorParams) middleware.Responder {
return middleware.NotImplemented("operation terminator.DetailTerminator has not yet been implemented")
})
}
if api.DatabaseFixDataIntegrityHandler == nil {
api.DatabaseFixDataIntegrityHandler = database.FixDataIntegrityHandlerFunc(func(params database.FixDataIntegrityParams, principal interface{}) middleware.Responder {
return middleware.NotImplemented("operation database.FixDataIntegrity has not yet been implemented")
})
}
if api.InspectInspectHandler == nil {
api.InspectInspectHandler = inspect.InspectHandlerFunc(func(params inspect.InspectParams) middleware.Responder {
return middleware.NotImplemented("operation inspect.Inspect has not yet been implemented")
})
}
if api.CircuitListCircuitsHandler == nil {
api.CircuitListCircuitsHandler = circuit.ListCircuitsHandlerFunc(func(params circuit.ListCircuitsParams) middleware.Responder {
return middleware.NotImplemented("operation circuit.ListCircuits has not yet been implemented")
})
}
if api.LinkListLinksHandler == nil {
api.LinkListLinksHandler = link.ListLinksHandlerFunc(func(params link.ListLinksParams) middleware.Responder {
return middleware.NotImplemented("operation link.ListLinks has not yet been implemented")
})
}
if api.RouterListRouterTerminatorsHandler == nil {
api.RouterListRouterTerminatorsHandler = router.ListRouterTerminatorsHandlerFunc(func(params router.ListRouterTerminatorsParams) middleware.Responder {
return middleware.NotImplemented("operation router.ListRouterTerminators has not yet been implemented")
})
}
if api.RouterListRoutersHandler == nil {
api.RouterListRoutersHandler = router.ListRoutersHandlerFunc(func(params router.ListRoutersParams) middleware.Responder {
return middleware.NotImplemented("operation router.ListRouters has not yet been implemented")
})
}
if api.ServiceListServiceTerminatorsHandler == nil {
api.ServiceListServiceTerminatorsHandler = service.ListServiceTerminatorsHandlerFunc(func(params service.ListServiceTerminatorsParams) middleware.Responder {
return middleware.NotImplemented("operation service.ListServiceTerminators has not yet been implemented")
})
}
if api.ServiceListServicesHandler == nil {
api.ServiceListServicesHandler = service.ListServicesHandlerFunc(func(params service.ListServicesParams) middleware.Responder {
return middleware.NotImplemented("operation service.ListServices has not yet been implemented")
})
}
if api.TerminatorListTerminatorsHandler == nil {
api.TerminatorListTerminatorsHandler = terminator.ListTerminatorsHandlerFunc(func(params terminator.ListTerminatorsParams) middleware.Responder {
return middleware.NotImplemented("operation terminator.ListTerminators has not yet been implemented")
})
}
if api.LinkPatchLinkHandler == nil {
api.LinkPatchLinkHandler = link.PatchLinkHandlerFunc(func(params link.PatchLinkParams) middleware.Responder {
return middleware.NotImplemented("operation link.PatchLink has not yet been implemented")
})
}
if api.RouterPatchRouterHandler == nil {
api.RouterPatchRouterHandler = router.PatchRouterHandlerFunc(func(params router.PatchRouterParams) middleware.Responder {
return middleware.NotImplemented("operation router.PatchRouter has not yet been implemented")
})
}
if api.ServicePatchServiceHandler == nil {
api.ServicePatchServiceHandler = service.PatchServiceHandlerFunc(func(params service.PatchServiceParams) middleware.Responder {
return middleware.NotImplemented("operation service.PatchService has not yet been implemented")
})
}
if api.TerminatorPatchTerminatorHandler == nil {
api.TerminatorPatchTerminatorHandler = terminator.PatchTerminatorHandlerFunc(func(params terminator.PatchTerminatorParams) middleware.Responder {
return middleware.NotImplemented("operation terminator.PatchTerminator has not yet been implemented")
})
}
if api.RaftRaftListMembersHandler == nil {
api.RaftRaftListMembersHandler = raft.RaftListMembersHandlerFunc(func(params raft.RaftListMembersParams) middleware.Responder {
return middleware.NotImplemented("operation raft.RaftListMembers has not yet been implemented")
})
}
if api.RouterUpdateRouterHandler == nil {
api.RouterUpdateRouterHandler = router.UpdateRouterHandlerFunc(func(params router.UpdateRouterParams) middleware.Responder {
return middleware.NotImplemented("operation router.UpdateRouter has not yet been implemented")
})
}
if api.ServiceUpdateServiceHandler == nil {
api.ServiceUpdateServiceHandler = service.UpdateServiceHandlerFunc(func(params service.UpdateServiceParams) middleware.Responder {
return middleware.NotImplemented("operation service.UpdateService has not yet been implemented")
})
}
if api.TerminatorUpdateTerminatorHandler == nil {
api.TerminatorUpdateTerminatorHandler = terminator.UpdateTerminatorHandlerFunc(func(params terminator.UpdateTerminatorParams) middleware.Responder {
return middleware.NotImplemented("operation terminator.UpdateTerminator has not yet been implemented")
})
}
api.PreServerShutdown = func() {}
api.ServerShutdown = func() {}
return setupGlobalMiddleware(api.Serve(setupMiddlewares))
}
// The TLS configuration before HTTPS server starts.
func configureTLS(tlsConfig *tls.Config) {
// Make all necessary changes to the TLS configuration here.
}
// As soon as server is initialized but not run yet, this function will be called.
// If you need to modify a config, store server instance to stop it individually later, this is the place.
// This function can be called multiple times, depending on the number of serving schemes.
// scheme value will be set accordingly: "http", "https" or "unix".
func configureServer(s *http.Server, scheme, addr string) {
}
// The middleware configuration is for the handler executors. These do not apply to the swagger.json document.
// The middleware executes after routing but before authentication, binding and validation.
func setupMiddlewares(handler http.Handler) http.Handler {
return handler
}
// The middleware configuration happens before anything, this middleware also applies to serving the swagger.json document.
// So this is a good place to plug in a panic handling middleware, logging and metrics.
func setupGlobalMiddleware(handler http.Handler) http.Handler {
return handler
}