blob: 9003c0ad660bf543d9f8b123e3e3d84f59f00706 (
plain)
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
|
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"
}
|