forked from nscuro/dtrack-client
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathconfig.go
64 lines (56 loc) · 1.52 KB
/
config.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
package dtrack
import (
"context"
"net/http"
)
type ConfigPropertyType string
type ConfigProperty struct {
GroupName string `json:"groupName"`
Name string `json:"propertyName"`
Value string `json:"propertyValue,omitempty"`
Type string `json:"propertyType"`
Description string `json:"description,omitempty"`
}
type ConfigService struct {
client *Client
}
func (cs ConfigService) GetAll(ctx context.Context) (cps []ConfigProperty, err error) {
req, err := cs.client.newRequest(ctx, http.MethodGet, "/api/v1/configProperty")
if err != nil {
return
}
_, err = cs.client.doRequest(req, &cps)
return
}
func (cs ConfigService) Get(ctx context.Context, groupName, propertyName string) (cp ConfigProperty, err error) {
cps, err := cs.GetAll(ctx)
if err != nil {
return
}
for _, cp := range cps {
if cp.GroupName != groupName {
continue
}
if cp.Name != propertyName {
continue
}
return cp, nil
}
return
}
func (cs ConfigService) Update(ctx context.Context, config ConfigProperty) (cp ConfigProperty, err error) {
req, err := cs.client.newRequest(ctx, http.MethodPost, "/api/v1/configProperty", withBody(config))
if err != nil {
return
}
_, err = cs.client.doRequest(req, &cp)
return
}
func (cs ConfigService) UpdateAll(ctx context.Context, configs []ConfigProperty) (cps []ConfigProperty, err error) {
req, err := cs.client.newRequest(ctx, http.MethodPost, "/api/v1/configProperty/aggregate", withBody(configs))
if err != nil {
return
}
_, err = cs.client.doRequest(req, &cps)
return
}