-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfigure_deweb_plugin.go
More file actions
110 lines (92 loc) · 4.59 KB
/
configure_deweb_plugin.go
File metadata and controls
110 lines (92 loc) · 4.59 KB
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
// This file is safe to edit. Once it exists it will not be overwritten
package restapi
import (
"crypto/tls"
"io"
"net/http"
"github.com/go-openapi/errors"
"github.com/go-openapi/runtime"
"github.com/go-openapi/runtime/middleware"
"github.com/massalabs/deweb-plugin/api/restapi/operations"
dewebmiddleware "github.com/massalabs/deweb-plugin/int/api/middleware"
)
//go:generate swagger generate server --target ../../api --name DewebPlugin --spec ../pluginAPI-V0.yml --principal interface{} --exclude-main
func configureFlags(api *operations.DewebPluginAPI) {
// api.CommandLineOptionsGroups = []swag.CommandLineOptionsGroup{ ... }
}
func configureAPI(api *operations.DewebPluginAPI) 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.BinProducer = runtime.ByteStreamProducer()
api.CSSProducer = runtime.ProducerFunc(func(w io.Writer, data interface{}) error {
return errors.NotImplemented("css producer has not yet been implemented")
})
api.HTMLProducer = runtime.ProducerFunc(func(w io.Writer, data interface{}) error {
return errors.NotImplemented("html producer has not yet been implemented")
})
api.JsProducer = runtime.ProducerFunc(func(w io.Writer, data interface{}) error {
return errors.NotImplemented("js producer has not yet been implemented")
})
api.JSONProducer = runtime.JSONProducer()
api.TextWebpProducer = runtime.ProducerFunc(func(w io.Writer, data interface{}) error {
return errors.NotImplemented("textWebp producer has not yet been implemented")
})
if api.GetServerStatusHandler == nil {
api.GetServerStatusHandler = operations.GetServerStatusHandlerFunc(func(params operations.GetServerStatusParams) middleware.Responder {
return middleware.NotImplemented("operation operations.GetServerStatus has not yet been implemented")
})
}
if api.GetSettingsHandler == nil {
api.GetSettingsHandler = operations.GetSettingsHandlerFunc(func(params operations.GetSettingsParams) middleware.Responder {
return middleware.NotImplemented("operation operations.GetSettings has not yet been implemented")
})
}
if api.PluginWebAppHandler == nil {
api.PluginWebAppHandler = operations.PluginWebAppHandlerFunc(func(params operations.PluginWebAppParams) middleware.Responder {
return middleware.NotImplemented("operation operations.PluginWebApp has not yet been implemented")
})
}
if api.DefaultPageHandler == nil {
api.DefaultPageHandler = operations.DefaultPageHandlerFunc(func(params operations.DefaultPageParams) middleware.Responder {
return middleware.NotImplemented("operation operations.RedirectToWeb has not yet been implemented")
})
}
if api.UpdateSettingsHandler == nil {
api.UpdateSettingsHandler = operations.UpdateSettingsHandlerFunc(func(params operations.UpdateSettingsParams) middleware.Responder {
return middleware.NotImplemented("operation operations.UpdateSettings 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 {
// Middleware chain: CORS → WebAppMiddleware → DomainRestrictionMiddleware → API handlers
return dewebmiddleware.WebAppMiddleware(dewebmiddleware.DomainRestrictionMiddleware(handler))
}