-
Notifications
You must be signed in to change notification settings - Fork 1
/
handlers.go
163 lines (143 loc) · 3.79 KB
/
handlers.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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
package main
import (
"io"
"net/http"
"strings"
"github.com/gin-gonic/gin"
"github.com/sirupsen/logrus"
)
func backFillHeaders(c *gin.Context, resp *http.Response) {
for key, values := range resp.Header {
for _, value := range values {
c.Header(key, value)
}
}
}
func handleWrite(instances []InfluxDBInstance) gin.HandlerFunc {
return func(c *gin.Context) {
handleRequestPayload(c, instances)
c.JSON(http.StatusNoContent, nil)
}
}
func handleHealthCheck(c *gin.Context) {
c.JSON(http.StatusOK, map[string]interface{}{"status": "ok", "message": "InfluxDB proxy is running", "active_instances": len(config.Addresses)})
}
func handleGet(instances []InfluxDBInstance) gin.HandlerFunc {
return func(c *gin.Context) {
resp, err := sendRequestRandomInstance(instances, c.Request.URL.Path, c.Request.URL.Query(), c.Request)
if err != nil {
handleError(c, err)
return
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
handleError(c, err)
return
}
backFillHeaders(c, resp)
c.Data(resp.StatusCode, resp.Header.Get("Content-Type"), body)
}
}
func handleQuery(instances []InfluxDBInstance) gin.HandlerFunc {
return func(c *gin.Context) {
queryParams := c.Request.URL.Query()
if isMutation(queryParams.Get("q")) {
handleMutation(c, instances)
return
}
resp, err := sendRequestRandomInstance(instances, c.Request.URL.Path, queryParams, c.Request)
if err != nil {
logrus.WithFields(logrus.Fields{
"error": err,
}).Error("Error sending request")
handleError(c, err)
return
}
defer resp.Body.Close()
backFillHeaders(c, resp)
body, err := io.ReadAll(resp.Body)
if err != nil {
handleError(c, err)
return
}
c.Data(resp.StatusCode, resp.Header.Get("Content-Type"), body)
}
}
func isMutation(query string) bool {
mutations := []string{"CREATE", "DROP", "ALTER", "GRANT", "REVOKE", "INSERT", "UPDATE", "DELETE"}
for _, mutation := range mutations {
if strings.HasPrefix(strings.ToUpper(query), mutation) {
return true
}
}
return false
}
func handleMutationGin(instances []InfluxDBInstance) gin.HandlerFunc {
return func(c *gin.Context) {
handleMutation(c, instances)
}
}
func handleFeatureNotSupported(c *gin.Context) {
c.JSON(http.StatusNotImplemented, map[string]string{"error": "Feature not supported"})
}
func handleMutation(c *gin.Context, instances []InfluxDBInstance) {
queryParams := c.Request.URL.Query()
isFirst := true
allGood := true
var body []byte
for _, instance := range instances {
url := instance.URL + c.Request.URL.Path
resp, err := sendRequestWithRetry(url, instance.Token, queryParams, c.Request, true)
if err != nil {
handleError(c, err)
return
}
if resp.StatusCode > 299 {
allGood = false
}
if isFirst {
defer resp.Body.Close()
body, err = io.ReadAll(resp.Body)
if err != nil {
handleError(c, err)
return
}
backFillHeaders(c, resp)
isFirst = false
} else {
resp.Body.Close()
}
}
if allGood {
c.Data(http.StatusOK, "application/json", body)
} else {
c.JSON(http.StatusInternalServerError, map[string]string{"error": "Some instances failed to execute the query"})
}
}
func handleRequestPayload(c *gin.Context, instances []InfluxDBInstance) {
body, err := c.GetRawData()
if err != nil {
handleError(c, err)
return
}
payload := Payload{
Body: body,
URLPath: c.Request.URL.Path,
Method: c.Request.Method,
Header: c.Request.Header,
QueryParams: c.Request.URL.Query(),
}
for _, instance := range instances {
instance.Channel <- payload
logrus.WithFields(logrus.Fields{
"url": instance.URL,
}).Info("Request sent")
}
}
func handleError(c *gin.Context, err error) {
logrus.WithFields(logrus.Fields{
"error": err,
}).Error("Error processing request")
c.JSON(http.StatusInternalServerError, nil)
}