-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfunctions.go
225 lines (188 loc) · 5.3 KB
/
functions.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
package webhookrelay
import (
"encoding/base64"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"net/http"
"github.com/pkg/errors"
reactor_v1 "github.com/webhookrelay/webhookrelay-go/api/reactor/v1"
)
// Function is an alias to reactor_v1 pkg
type Function = reactor_v1.Function
// ExecuteResponse is an alias to reactor v1 pkg
type ExecuteResponse = reactor_v1.ExecuteResponse
// FunctionRequest used for creating/updating functions
type FunctionRequest struct {
ID string `json:"id"`
Name string `json:"name"`
Payload string `json:"payload"`
Driver string `json:"driver"`
}
// CreateFunctionRequest is used when creating a new function
type CreateFunctionRequest struct {
Name string
Driver string
Payload io.Reader
}
// UpdateFunctionRequest is used when updating an existing function
type UpdateFunctionRequest struct {
ID string
Name string
Driver string
Payload io.Reader
}
// InvokeFunctionRequest is a function invoke payload
type InvokeFunctionRequest struct {
Headers map[string][]string `json:"headers"`
RawQuery string `json:"raw_query"`
RequestBody string `json:"request_body"`
Method string `json:"method"`
}
// InvokeOpts used to invoke functions, carries function ID
// and payload
type InvokeOpts struct {
ID string
InvokeFunctionRequest InvokeFunctionRequest
}
// FunctionListOptions is used to list functions
type FunctionListOptions struct{}
// ListFunctions lists functions for an account
func (api *API) ListFunctions(options *FunctionListOptions) ([]*Function, error) {
resp, err := api.makeRequest(http.MethodGet, "/functions", nil)
if err != nil {
return nil, errors.Wrap(err, errMakeRequestError)
}
var functions []*reactor_v1.Function
err = json.Unmarshal(resp, &functions)
if err != nil {
return nil, errors.Wrap(err, errUnmarshalError)
}
return functions, nil
}
// InvokeFunction invokes function and gets a response
func (api *API) InvokeFunction(options *InvokeOpts) (*ExecuteResponse, error) {
resp, err := api.makeRequest("POST", "/functions/"+options.ID+"/invoke", options.InvokeFunctionRequest)
if err != nil {
return nil, err
}
var f ExecuteResponse
if err := json.Unmarshal(resp, &f); err != nil {
return nil, err
}
return &f, nil
}
// GetFunction - get function by ref
func (api *API) GetFunction(ref string) (*Function, error) {
ref, err := api.ensureFunctionID(ref)
if err != nil {
return nil, err
}
resp, err := api.makeRequest("GET", "/functions/"+ref, nil)
if err != nil {
return nil, err
}
var function Function
if err := json.Unmarshal(resp, &function); err != nil {
return nil, err
}
return &function, nil
}
// CreateFunction - create new function
func (api *API) CreateFunction(opts *CreateFunctionRequest) (*Function, error) {
functionBody, err := ioutil.ReadAll(opts.Payload)
if err != nil {
return nil, errors.Wrap(err, "failed to read function body")
}
createOpts := &FunctionRequest{
Name: opts.Name,
Driver: opts.Driver,
Payload: base64.StdEncoding.EncodeToString(functionBody),
}
// TODO: consider splitting function uploading and creation into separate reqs
resp, err := api.makeRequest("POST", "/functions", createOpts)
if err != nil {
return nil, err
}
var f reactor_v1.Function
if err := json.Unmarshal(resp, &f); err != nil {
return nil, err
}
return &f, nil
}
// UpdateFunction - update function
func (api *API) UpdateFunction(options *UpdateFunctionRequest) (*Function, error) {
if options.ID != "" {
// ok
} else if options.Name != "" {
fID, err := api.ensureFunctionID(options.ID)
if err != nil {
return nil, err
}
options.ID = fID
} else {
return nil, fmt.Errorf("either name or ID has to be set")
}
functionBody, err := ioutil.ReadAll(options.Payload)
if err != nil {
return nil, errors.Wrap(err, "failed to read function body")
}
updateOpts := &FunctionRequest{
Name: options.Name,
Driver: options.Driver,
Payload: base64.StdEncoding.EncodeToString(functionBody),
}
resp, err := api.makeRequest("PUT", "/functions/"+options.ID, updateOpts)
if err != nil {
return nil, err
}
var function reactor_v1.Function
if err := json.Unmarshal(resp, &function); err != nil {
return nil, err
}
return &function, nil
}
// FunctionDeleteOptions is used in function delete request
type FunctionDeleteOptions struct {
ID string `json:"id"`
}
// DeleteFunction - delete function
func (api *API) DeleteFunction(options *FunctionDeleteOptions) error {
if options.ID == "" {
return fmt.Errorf("ID must be supplied")
}
id, err := api.ensureFunctionID(options.ID)
if err != nil {
return err
}
options.ID = id
_, err = api.makeRequest("DELETE", "/functions/"+options.ID, nil)
if err != nil {
return err
}
return nil
}
// ensureFunctionID - takes name/id and always returns ID (when it not fails)
func (api *API) ensureFunctionID(ref string) (string, error) {
if !IsUUID(ref) {
id, err := api.functionIDFromRef(ref)
if err != nil {
return "", err
}
return id, nil
}
return ref, nil
}
func (api *API) functionIDFromRef(ref string) (id string, err error) {
functions, err := api.ListFunctions(&FunctionListOptions{})
if err != nil {
return
}
for _, f := range functions {
if f.Id == ref || f.Name == ref {
return f.Id, nil
}
}
return "", fmt.Errorf("no such function '%s'", ref)
}