diff options
author | Valery Piashchynski <[email protected]> | 2020-12-21 19:42:23 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-12-21 19:42:23 +0300 |
commit | ee8b4075c0f836d698d1ae505c87c17147de447a (patch) | |
tree | 531d980e5bfb94ee39b03952a97e0445f7955409 /plugins/http/tests/plugin_middleware.go | |
parent | 0ad45031047bb479e06ce0a0f496c6db9b2641c9 (diff) |
Move plugins to the roadrunner-plugins repository
Diffstat (limited to 'plugins/http/tests/plugin_middleware.go')
-rw-r--r-- | plugins/http/tests/plugin_middleware.go | 61 |
1 files changed, 0 insertions, 61 deletions
diff --git a/plugins/http/tests/plugin_middleware.go b/plugins/http/tests/plugin_middleware.go deleted file mode 100644 index 9003c0ad..00000000 --- a/plugins/http/tests/plugin_middleware.go +++ /dev/null @@ -1,61 +0,0 @@ -package tests - -import ( - "net/http" - - "github.com/spiral/roadrunner/v2/interfaces/config" -) - -type PluginMiddleware struct { - config config.Configurer -} - -func (p *PluginMiddleware) Init(cfg config.Configurer) error { - p.config = cfg - return nil -} - -func (p *PluginMiddleware) Middleware(next http.Handler) http.HandlerFunc { - return func(w http.ResponseWriter, r *http.Request) { - if r.URL.Path == "/halt" { - w.WriteHeader(500) - _, err := w.Write([]byte("halted")) - if err != nil { - panic("error writing the data to the http reply") - } - } else { - next.ServeHTTP(w, r) - } - } -} - -func (p *PluginMiddleware) Name() string { - return "pluginMiddleware" -} - -type PluginMiddleware2 struct { - config config.Configurer -} - -func (p *PluginMiddleware2) Init(cfg config.Configurer) error { - p.config = cfg - return nil -} - -func (p *PluginMiddleware2) Middleware(next http.Handler) http.HandlerFunc { - return func(w http.ResponseWriter, r *http.Request) { - if r.URL.Path == "/boom" { - w.WriteHeader(555) - _, err := w.Write([]byte("boom")) - if err != nil { - panic("error writing the data to the http reply") - } - } else { - next.ServeHTTP(w, r) - } - } -} - -func (p *PluginMiddleware2) Name() string { - return "pluginMiddleware2" -} |