summaryrefslogtreecommitdiff
path: root/filter/http/http.go
diff options
context:
space:
mode:
Diffstat (limited to 'filter/http/http.go')
-rw-r--r--filter/http/http.go42
1 files changed, 42 insertions, 0 deletions
diff --git a/filter/http/http.go b/filter/http/http.go
new file mode 100644
index 0000000..e3d447b
--- /dev/null
+++ b/filter/http/http.go
@@ -0,0 +1,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
+}