-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
140 lines (120 loc) · 2.86 KB
/
main.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
package main
import (
"flag"
"io/ioutil"
"log"
"net/http"
"net/http/httputil"
"net/url"
"time"
"github.com/gin-gonic/gin"
"gopkg.in/yaml.v2"
)
var (
addr = flag.String("addr", ":8888", "Listen port")
static_yml = flag.String("static-rules", "", "YML with static rules")
proxy = flag.String("proxy", "", "url to proxy requests")
lag = flag.Duration("lag", 0*time.Millisecond, "response delay in ms")
static_config StaticConfig
)
type StaticConfig map[string]Rule
type Rule struct {
StatusCode int `yaml:"status_code"`
Headers map[string]string `yaml:"headers"`
Body string `yaml:"body"`
Lag string `yaml:"lag"`
}
func read_yaml(file_path string) {
data, err := ioutil.ReadFile(file_path)
if err != nil {
log.Fatal("Failed to read YML: ", err)
}
err = yaml.Unmarshal(data, &static_config)
if err != nil {
log.Fatal("Failed to parse YML: ", err)
} else {
log.Println("Loaded", file_path)
}
}
func Lag() gin.HandlerFunc {
return func(c *gin.Context) {
t := time.Now()
c.Next() // proccess request
elapsed := time.Since(t)
diff := *lag - elapsed
if diff > 0 {
time.Sleep(diff)
log.Println("Request took", elapsed, " - Lagging", diff)
}
}
}
func staticHandler() *gin.Engine {
router := gin.Default()
router.NoRoute(func(c *gin.Context) {
route := c.Request.URL.Path
var rule Rule
if r, ok := static_config[route]; ok {
rule = r
} else {
c.String(404, "Not found")
return
}
// headers
for header, value := range rule.Headers {
c.Request.Header.Set(header, value)
}
// status code
status_code := 200
if code := rule.StatusCode; code != 0 {
status_code = code
}
// body
body := rule.Body
// lag
if l := rule.Lag; l != "" {
if t, e := time.ParseDuration(l); e == nil {
time.Sleep(t)
}
} else if *lag > 0 {
time.Sleep(*lag)
}
c.String(status_code, body)
})
return router
}
func proxyHandler(url *url.URL) *gin.Engine {
router := gin.Default()
router.Use(Lag())
router.NoRoute(func(c *gin.Context) {
director := func(req *http.Request) {
req.URL.Scheme = url.Scheme
req.URL.Host = url.Host // endpoint
req.Host = url.Host // header
}
proxy := &httputil.ReverseProxy{Director: director}
proxy.ServeHTTP(c.Writer, c.Request)
})
return router
}
func main() {
flag.Parse()
var handler *gin.Engine
gin.SetMode(gin.ReleaseMode)
if *static_yml != "" {
read_yaml(*static_yml)
handler = staticHandler()
} else if *proxy != "" {
if url, err := url.Parse(*proxy); err != nil {
log.Fatal("Failed to parse URL: ", err)
} else {
log.Println("Proxying requests to:", url)
handler = proxyHandler(url)
}
} else {
log.Fatal("No handler specified")
}
log.Println("Listening at", *addr)
if err := handler.Run(*addr); err != nil {
log.Fatalf("Error in ListenAndServe: %s", err)
}
}