This repository was archived by the owner on Dec 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathwhiskapi.go
133 lines (120 loc) · 2.87 KB
/
whiskapi.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
package main
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"strings"
)
func whiskURL(operation string) string {
if operation[:1] == "/" {
return fmt.Sprintf("%s/api/v1/namespaces%s",
Config.WhiskAPIHostLocal,
operation)
}
return fmt.Sprintf("%s/api/v1/namespaces/%s/%s",
Config.WhiskAPIHostLocal,
Config.WhiskNamespace,
operation)
}
func whiskAuth() (string, string) {
up := strings.Split(Config.WhiskAPIKey, ":")
return up[0], up[1]
}
func whiskPost(action string,
args map[string]interface{}) (*http.Request, error) {
data, err := json.Marshal(args)
if err != nil {
return nil, err
}
req, err := http.NewRequest("POST", whiskURL(action),
bytes.NewBuffer(data))
if err != nil {
return nil, err
}
req.SetBasicAuth(whiskAuth())
req.Header.Set("Content-Type", "application/json")
return req, nil
}
func whiskPut(action string,
data []byte) (*http.Request, error) {
req, err := http.NewRequest("PUT", whiskURL(action),
bytes.NewBuffer(data))
if err != nil {
return nil, err
}
req.SetBasicAuth(whiskAuth())
req.Header.Set("Content-Type", "application/json")
return req, nil
}
func whiskCall(req *http.Request) map[string]interface{} {
client := &http.Client{}
res, err := client.Do(req)
if err != nil {
return mkErr(err)
}
body, err := ioutil.ReadAll(res.Body)
if err != nil {
return mkErr(err)
}
// encode answer
var objmap map[string]interface{}
err = json.Unmarshal(body, &objmap)
if err != nil {
return mkErr(err)
}
return objmap
}
func whiskInvoke(action string, args map[string]interface{},
blocking bool, result bool) map[string]interface{} {
invoke := fmt.Sprintf("actions/%s?blocking=%t&result=%t",
action, blocking, result)
req, err := whiskPost(invoke, args)
if err != nil {
return mkErr(err)
}
return whiskCall(req)
}
func whiskPackageUpdate(pkg string, data []byte) map[string]interface{} {
invoke := fmt.Sprintf("packages/%s?overwrite=true",
pkg)
req, err := whiskPut(invoke, data)
if err != nil {
return mkErr(err)
}
return whiskCall(req)
}
type whiskKeyValue struct {
Key string `json:"key"`
Value string `json:"value"`
}
type whiskWrap struct {
Name string `json:"name"`
Namespace string `json:"namespace"`
Parameters []whiskKeyValue `json:"parameters"`
}
func whiskConfigKeyValues(m map[string]string) []whiskKeyValue {
res := make([]whiskKeyValue, 0)
for k, v := range m {
kw := whiskKeyValue{
Key: k,
Value: v,
}
res = append(res, kw)
}
return res
}
// WhiskUpdatePackageParameters update a package with a given map of parameters
func WhiskUpdatePackageParameters(pkg string, m map[string]string) map[string]interface{} {
wrap := whiskWrap{
Name: pkg,
Namespace: Config.WhiskNamespace,
Parameters: whiskConfigKeyValues(m),
}
buf, err := json.Marshal(wrap)
if err != nil {
return mkErr(err)
}
return whiskPackageUpdate(pkg, buf)
}