forked from TykTechnologies/tyk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbatch_requests.go
177 lines (144 loc) · 4.83 KB
/
batch_requests.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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
package main
import (
"net/http"
"encoding/json"
"bytes"
"fmt"
"io/ioutil"
"strings"
"strconv"
)
// RequestDefinition defines a batch request
type RequestDefinition struct {
Method string `json:"method"`
Headers map[string]string `json:"headers"`
Body string `json:"body"`
RelativeURL string `json:"relative_url"`
}
// BatchRequestStructure defines a batch request order
type BatchRequestStructure struct {
Requests []RequestDefinition `json:"requests"`
SuppressParallelExecution bool `json:"suppress_parallel_execution"`
}
// BatchReplyUnit encodes a request suitable for replying to a batch request
type BatchReplyUnit struct {
RelativeURL string `json:"relative_url"`
Code int `json:"code"`
Headers http.Header `json:"headers"`
Body string `json:"body"`
}
// BatchRequestHandler handles batch requests on /tyk/batch for any API Definition that has the feature enabled
type BatchRequestHandler struct {
API *APISpec
}
// doAsyncRequest runs an async request and replies to a channel
func (b BatchRequestHandler) doAsyncRequest(req *http.Request, relURL string, out chan BatchReplyUnit) {
client := &http.Client{}
resp, doReqErr := client.Do(req)
if doReqErr != nil {
log.Error("Webhook request failed: ", doReqErr)
return
}
defer resp.Body.Close()
content, readErr := ioutil.ReadAll(resp.Body)
if readErr != nil {
log.Warning("Body read failure! ", readErr)
return
}
reply := BatchReplyUnit{
RelativeURL: relURL,
Code: resp.StatusCode,
Headers: resp.Header,
Body: string(content),
}
out <- reply
}
// doSyncRequest will make the same request but return a BatchReplyUnit
func (b BatchRequestHandler) doSyncRequest(req *http.Request, relURL string) BatchReplyUnit {
client := &http.Client{}
resp, doReqErr := client.Do(req)
if doReqErr != nil {
log.Error("Webhook request failed: ", doReqErr)
return BatchReplyUnit{}
}
defer resp.Body.Close()
content, readErr := ioutil.ReadAll(resp.Body)
if readErr != nil {
log.Warning("Body read failure! ", readErr)
return BatchReplyUnit{}
}
reply := BatchReplyUnit{
RelativeURL: relURL,
Code: resp.StatusCode,
Headers: resp.Header,
Body: string(content),
}
return reply
}
// HandleBatchRequest is the actual http handler for a batch request on an API definition
func (b BatchRequestHandler) HandleBatchRequest(w http.ResponseWriter, r *http.Request) {
if r.Method == "POST" {
decoder := json.NewDecoder(r.Body)
var batchRequest BatchRequestStructure
decodeErr := decoder.Decode(&batchRequest)
if decodeErr != nil {
log.Error("Could not decode batch request, decoding failed: ", decodeErr)
ReturnError("Batch request malformed", w)
return
}
// Construct the requests
requestSet := []*http.Request{}
for i, requestDef := range(batchRequest.Requests) {
// We re-build the URL to ensure that the requested URL is actually for the API in question
// URLs need to be built absolute so they go through the rate limiting and request limiting machinery
absUrlHeader := strings.Join([]string{"http://localhost", strconv.Itoa(config.ListenPort)}, ":")
absURL := strings.Join([]string{absUrlHeader, strings.Trim(b.API.Proxy.ListenPath, "/"), requestDef.RelativeURL}, "/")
thisRequest, createReqErr := http.NewRequest(requestDef.Method, absURL, bytes.NewBuffer([]byte(requestDef.Body)))
if createReqErr != nil {
log.Error("Failure generating batch request for request spec index: ", i)
ReturnError(fmt.Sprintf("Batch request creation failed on request index %i", i), w)
return
return
}
// Add headers
for k, v := range(requestDef.Headers) {
thisRequest.Header.Add(k, v)
}
requestSet = append(requestSet, thisRequest)
}
// Run requests and collate responses
ReplySet := []BatchReplyUnit{}
if len(batchRequest.Requests) != len(requestSet) {
log.Error("Something went wrong creating requests, they are of mismatched lengths!", len(batchRequest.Requests), len(requestSet))
}
if !batchRequest.SuppressParallelExecution {
replies := make(chan BatchReplyUnit)
for index, req := range(requestSet) {
go b.doAsyncRequest(req, batchRequest.Requests[index].RelativeURL, replies)
}
for i := 0; i < len(batchRequest.Requests); i++ {
val := BatchReplyUnit{}
val = <- replies
ReplySet = append(ReplySet, val)
}
} else {
for index, req := range(requestSet) {
reply := b.doSyncRequest(req, batchRequest.Requests[index].RelativeURL)
ReplySet = append(ReplySet, reply)
}
}
// Encode responses
replyMessage, encErr := json.Marshal(&ReplySet)
if encErr != nil {
log.Error("Couldn't encode response to string! ", encErr)
return
}
// Respond
DoJSONWrite(w, 200, replyMessage)
}
}
// ReturnError returns an error to the http response writer
func ReturnError(err string, w http.ResponseWriter) {
replyMessage := createError(err)
DoJSONWrite(w, 400, replyMessage)
}