zrok/rest_server_zrok/configure_zrok.go

60 lines
2.2 KiB
Go
Raw Normal View History

2022-07-22 16:52:36 +02:00
// This file is safe to edit. Once it exists it will not be overwritten
package rest_server_zrok
2022-07-22 16:52:36 +02:00
import (
"crypto/tls"
"github.com/openziti/zrok/ui"
2022-08-03 19:45:41 +02:00
"github.com/sirupsen/logrus"
2022-07-22 16:52:36 +02:00
"net/http"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
"github.com/openziti/zrok/rest_server_zrok/operations"
2022-07-22 16:52:36 +02:00
)
var HealthCheck func(w http.ResponseWriter, r *http.Request)
2022-08-03 19:45:41 +02:00
//go:generate swagger generate server --target ../../zrok --name Zrok --spec ../specs/zrok.yml --model-package rest_model_zrok --server-package rest_server_zrok --principal interface{} --exclude-main
2022-07-22 16:52:36 +02:00
func configureFlags(api *operations.ZrokAPI) {
2022-07-22 16:52:36 +02:00
// api.CommandLineOptionsGroups = []swag.CommandLineOptionsGroup{ ... }
}
func configureAPI(api *operations.ZrokAPI) http.Handler {
2022-07-22 16:52:36 +02:00
api.ServeError = errors.ServeError
2022-08-03 19:45:41 +02:00
api.Logger = logrus.Printf
2022-07-22 16:52:36 +02:00
api.UseSwaggerUI()
api.JSONConsumer = runtime.JSONConsumer()
api.JSONProducer = runtime.JSONProducer()
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 ui.Middleware(handler, HealthCheck)
2022-07-22 16:52:36 +02:00
}