blob: e3d447b813aea423a1d431c198613ac96addcf66 (
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
|
package http
import (
"bytes"
"io/ioutil"
"net/http"
"github.com/Shugyousha/stasher/filter"
"github.com/Shugyousha/stasher/registry"
"github.com/Shugyousha/stasher/work"
)
func init() {
registry.Filterregistry["http"] = New
}
type HTTPFilter struct {
url string
}
func New(kv map[string]string) filter.Filter {
url := kv["url"]
return &HTTPFilter{url: url}
}
func (hf *HTTPFilter) Filter(w *work.Work) *work.Work {
resp, err := http.Post(hf.url, "application/json", bytes.NewReader(w.Data))
if err != nil {
w.Err = err
return w
}
defer resp.Body.Close()
filtered, err := ioutil.ReadAll(resp.Body)
if err != nil {
w.Err = err
return w
}
w.Data = filtered
return w
}
|