forked from cuelang/cue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
http.go
116 lines (104 loc) · 2.53 KB
/
http.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
// Copyright 2019 CUE Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package http
//go:generate go run gen.go
//go:generate gofmt -s -w .
import (
"bytes"
"io"
"io/ioutil"
"net/http"
"github.com/solo-io/cue/cue"
"github.com/solo-io/cue/internal/task"
)
func init() {
task.Register("tool/http.Do", newHTTPCmd)
// For backwards compatibility.
task.Register("http", newHTTPCmd)
}
type httpCmd struct{}
func newHTTPCmd(v cue.Value) (task.Runner, error) {
return &httpCmd{}, nil
}
func (c *httpCmd) Run(ctx *task.Context) (res interface{}, err error) {
var header, trailer http.Header
var (
method = ctx.String("method")
u = ctx.String("url")
)
var r io.Reader
if obj := ctx.Obj.Lookup("request"); obj.Exists() {
if v := obj.Lookup("body"); v.Exists() {
r, err = v.Reader()
if err != nil {
return nil, err
}
} else {
r = bytes.NewReader([]byte(""))
}
if header, err = parseHeaders(obj, "header"); err != nil {
return nil, err
}
if trailer, err = parseHeaders(obj, "trailer"); err != nil {
return nil, err
}
}
if ctx.Err != nil {
return nil, ctx.Err
}
req, err := http.NewRequest(method, u, r)
if err != nil {
return nil, err
}
req.Header = header
req.Trailer = trailer
// TODO:
// - retry logic
// - TLS certs
resp, err := http.DefaultClient.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
b, err := ioutil.ReadAll(resp.Body)
// parse response body and headers
return map[string]interface{}{
"response": map[string]interface{}{
"status": resp.Status,
"statusCode": resp.StatusCode,
"body": string(b),
"header": resp.Header,
"trailer": resp.Trailer,
},
}, err
}
func parseHeaders(obj cue.Value, label string) (http.Header, error) {
m := obj.Lookup(label)
if !m.Exists() {
return nil, nil
}
iter, err := m.Fields()
if err != nil {
return nil, err
}
h := http.Header{}
for iter.Next() {
str, err := iter.Value().String()
if err != nil {
return nil, err
}
h.Add(iter.Label(), str)
}
return h, nil
}