forked from redpanda-data/connect
-
Notifications
You must be signed in to change notification settings - Fork 1
/
http_client.go
257 lines (222 loc) · 7.44 KB
/
http_client.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
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
// Copyright (c) 2014 Ashley Jeffs
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
package output
import (
"bytes"
"crypto/tls"
"io"
"mime/multipart"
"net/http"
"net/textproto"
"sync/atomic"
"time"
"github.com/Jeffail/benthos/lib/types"
"github.com/Jeffail/benthos/lib/util/http/auth"
"github.com/Jeffail/benthos/lib/util/service/log"
"github.com/Jeffail/benthos/lib/util/service/metrics"
)
//------------------------------------------------------------------------------
func init() {
Constructors["http_client"] = TypeSpec{
constructor: NewHTTPClient,
description: `
The HTTP client output type connects to a server and sends POST requests for
each message. The body of the request is the raw message contents. The output
will apply back pressure until a 2XX response has been returned from the server.
For more information about sending HTTP messages, including details on sending
multipart, please read the 'docs/using_http.md' document.`,
}
}
//------------------------------------------------------------------------------
// HTTPClientConfig is configuration for the HTTPClient output type.
type HTTPClientConfig struct {
URL string `json:"url" yaml:"url"`
Verb string `json:"verb" yaml:"verb"`
ContentType string `json:"content_type" yaml:"content_type"`
TimeoutMS int64 `json:"timeout_ms" yaml:"timeout_ms"`
RetryMS int64 `json:"retry_period_ms" yaml:"retry_period_ms"`
NumRetries int `json:"retries" yaml:"retries"`
SkipCertVerify bool `json:"skip_cert_verify" yaml:"skip_cert_verify"`
auth.Config `json:",inline" yaml:",inline"`
}
// NewHTTPClientConfig creates a new HTTPClientConfig with default values.
func NewHTTPClientConfig() HTTPClientConfig {
return HTTPClientConfig{
URL: "http://localhost:4195/post",
Verb: "POST",
ContentType: "application/octet-stream",
TimeoutMS: 5000,
RetryMS: 1000,
NumRetries: 3,
SkipCertVerify: false,
Config: auth.NewConfig(),
}
}
//------------------------------------------------------------------------------
// HTTPClient is an output type that pushes messages to HTTPClient.
type HTTPClient struct {
running int32
stats metrics.Type
log log.Modular
conf Config
transactions <-chan types.Transaction
closeChan chan struct{}
closedChan chan struct{}
}
// NewHTTPClient creates a new HTTPClient output type.
func NewHTTPClient(conf Config, mgr types.Manager, log log.Modular, stats metrics.Type) (Type, error) {
h := HTTPClient{
running: 1,
stats: stats,
log: log.NewModule(".output.http"),
conf: conf,
closeChan: make(chan struct{}),
closedChan: make(chan struct{}),
}
return &h, nil
}
//------------------------------------------------------------------------------
// createRequest creates an HTTP request out of a single message.
func (h *HTTPClient) createRequest(msg types.Message) (req *http.Request, err error) {
if len(msg.GetAll()) == 1 {
body := bytes.NewBuffer(msg.GetAll()[0])
if req, err = http.NewRequest(
h.conf.HTTPClient.Verb,
h.conf.HTTPClient.URL,
body,
); err == nil {
req.Header.Add("Content-Type", h.conf.HTTPClient.ContentType)
}
} else {
body := &bytes.Buffer{}
writer := multipart.NewWriter(body)
for i := 0; i < msg.Len() && err == nil; i++ {
var part io.Writer
if part, err = writer.CreatePart(textproto.MIMEHeader{
"Content-Type": []string{h.conf.HTTPClient.ContentType},
}); err == nil {
_, err = io.Copy(part, bytes.NewReader(msg.Get(i)))
}
}
writer.Close()
if req, err = http.NewRequest(
h.conf.HTTPClient.Verb,
h.conf.HTTPClient.URL,
body,
); err == nil {
req.Header.Add("Content-Type", writer.FormDataContentType())
}
}
err = h.conf.HTTPClient.Config.Sign(req)
return
}
// loop is an internal loop brokers incoming messages to output pipe through
// POST requests.
func (h *HTTPClient) loop() {
defer func() {
atomic.StoreInt32(&h.running, 0)
h.stats.Decr("output.http_client.running", 1)
close(h.closedChan)
}()
h.stats.Incr("output.http_client.running", 1)
h.log.Infof("Sending HTTP Post messages to: %s\n", h.conf.HTTPClient.URL)
var client http.Client
client.Timeout = time.Duration(h.conf.HTTPClient.TimeoutMS) * time.Millisecond
if h.conf.HTTPClient.SkipCertVerify {
client.Transport = &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: true},
}
}
var open bool
for atomic.LoadInt32(&h.running) == 1 {
var ts types.Transaction
if ts, open = <-h.transactions; !open {
return
}
h.stats.Incr("output.http_client.count", 1)
// POST message
var req *http.Request
var res *http.Response
var err error
if req, err = h.createRequest(ts.Payload); err == nil {
if res, err = client.Do(req); err == nil {
if res.StatusCode < 200 || res.StatusCode > 299 {
err = types.ErrUnexpectedHTTPRes{Code: res.StatusCode, S: res.Status}
}
res.Body.Close()
}
i, j := 0, h.conf.HTTPClient.NumRetries
for i < j && err != nil {
req, err = h.createRequest(ts.Payload)
if err != nil {
continue
}
select {
case <-time.After(time.Duration(h.conf.HTTPClient.RetryMS) * time.Millisecond):
case <-h.closeChan:
return
}
if res, err = client.Do(req); err == nil {
if res.StatusCode < 200 || res.StatusCode > 299 {
err = types.ErrUnexpectedHTTPRes{Code: res.StatusCode, S: res.Status}
}
res.Body.Close()
}
i++
}
}
if err != nil {
h.log.Errorf("POST request failed: %v\n", err)
h.stats.Incr("output.http_client.send.error", 1)
} else {
h.stats.Incr("output.http_client.send.success", 1)
}
select {
case ts.ResponseChan <- types.NewSimpleResponse(err):
case <-h.closeChan:
return
}
}
}
// StartReceiving assigns a messages channel for the output to read.
func (h *HTTPClient) StartReceiving(ts <-chan types.Transaction) error {
if h.transactions != nil {
return types.ErrAlreadyStarted
}
h.transactions = ts
go h.loop()
return nil
}
// CloseAsync shuts down the HTTPClient output and stops processing messages.
func (h *HTTPClient) CloseAsync() {
if atomic.CompareAndSwapInt32(&h.running, 1, 0) {
close(h.closeChan)
}
}
// WaitForClose blocks until the HTTPClient output has closed down.
func (h *HTTPClient) WaitForClose(timeout time.Duration) error {
select {
case <-h.closedChan:
case <-time.After(timeout):
return types.ErrTimeout
}
return nil
}
//------------------------------------------------------------------------------