-
Notifications
You must be signed in to change notification settings - Fork 118
/
Copy pathpolicies.go
215 lines (174 loc) · 6.32 KB
/
policies.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
// Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
// or more contributor license agreements. Licensed under the Elastic License;
// you may not use this file except in compliance with the Elastic License.
package kibana
import (
"encoding/json"
"fmt"
"net/http"
"github.com/pkg/errors"
"github.com/elastic/elastic-package/internal/packages"
)
// Policy represents an Agent Policy in Fleet.
type Policy struct {
ID string `json:"id,omitempty"`
Name string `json:"name"`
Description string `json:"description"`
Namespace string `json:"namespace"`
Revision int `json:"revision,omitempty"`
}
// CreatePolicy persists the given Policy in Fleet.
func (c *Client) CreatePolicy(p Policy) (*Policy, error) {
reqBody, err := json.Marshal(p)
if err != nil {
return nil, errors.Wrap(err, "could not convert policy (request) to JSON")
}
statusCode, respBody, err := c.post(fmt.Sprintf("%s/agent_policies", FleetAPI), reqBody)
if err != nil {
return nil, errors.Wrap(err, "could not create policy")
}
if statusCode != http.StatusOK {
return nil, fmt.Errorf("could not create policy; API status code = %d; response body = %s", statusCode, respBody)
}
var resp struct {
Item Policy `json:"item"`
}
if err := json.Unmarshal(respBody, &resp); err != nil {
return nil, errors.Wrap(err, "could not convert policy (response) to JSON")
}
return &resp.Item, nil
}
// GetPolicy fetches the given Policy in Fleet.
func (c *Client) GetPolicy(policyID string) (*Policy, error) {
statusCode, respBody, err := c.get(fmt.Sprintf("%s/agent_policies/%s", FleetAPI, policyID))
if err != nil {
return nil, errors.Wrap(err, "could not get policy")
}
if statusCode != http.StatusOK {
return nil, fmt.Errorf("could not get policy; API status code = %d; response body = %s", statusCode, respBody)
}
var resp struct {
Item Policy `json:"item"`
}
if err := json.Unmarshal(respBody, &resp); err != nil {
return nil, errors.Wrap(err, "could not convert policy (response) to JSON")
}
return &resp.Item, nil
}
// GetRawPolicy fetches the given Policy with all the fields in Fleet.
func (c *Client) GetRawPolicy(policyID string) (json.RawMessage, error) {
statusCode, respBody, err := c.get(fmt.Sprintf("%s/agent_policies/%s", FleetAPI, policyID))
if err != nil {
return nil, errors.Wrap(err, "could not get policy")
}
if statusCode != http.StatusOK {
return nil, fmt.Errorf("could not get policy; API status code = %d; response body = %s", statusCode, respBody)
}
var resp struct {
Item json.RawMessage `json:"item"`
}
if err := json.Unmarshal(respBody, &resp); err != nil {
return nil, errors.Wrap(err, "could not convert policy (response) to JSON")
}
return resp.Item, nil
}
// ListRawPolicies fetches all the Policies in Fleet.
func (c *Client) ListRawPolicies() ([]json.RawMessage, error) {
itemsRetrieved := 0
currentPage := 1
var items []json.RawMessage
var resp struct {
Items []json.RawMessage `json:"items"`
Total int `json:"total"`
Page int `json:"page"`
PerPage int `json:"perPage"`
}
for finished := false; !finished; finished = itemsRetrieved == resp.Total {
statusCode, respBody, err := c.get(fmt.Sprintf("%s/agent_policies?full=true&page=%d", FleetAPI, currentPage))
if err != nil {
return nil, errors.Wrap(err, "could not get policies")
}
if statusCode != http.StatusOK {
return nil, fmt.Errorf("could not get policies; API status code = %d; response body = %s", statusCode, respBody)
}
if err := json.Unmarshal(respBody, &resp); err != nil {
return nil, errors.Wrap(err, "could not convert policies (response) to JSON")
}
itemsRetrieved += len(resp.Items)
currentPage += 1
items = append(items, resp.Items...)
}
return items, nil
}
// DeletePolicy removes the given Policy from Fleet.
func (c *Client) DeletePolicy(p Policy) error {
reqBody := `{ "agentPolicyId": "` + p.ID + `" }`
statusCode, respBody, err := c.post(fmt.Sprintf("%s/agent_policies/delete", FleetAPI), []byte(reqBody))
if err != nil {
return errors.Wrap(err, "could not delete policy")
}
if statusCode != http.StatusOK {
return fmt.Errorf("could not delete policy; API status code = %d; response body = %s", statusCode, respBody)
}
return nil
}
// Var represents a single variable at the package or
// data stream level, encapsulating the data type of the
// variable and it's value.
type Var struct {
Value packages.VarValue `json:"value"`
Type string `json:"type"`
}
// Vars is a collection of variables either at the package or
// data stream level.
type Vars map[string]Var
// DataStream represents a data stream within a package.
type DataStream struct {
Type string `json:"type"`
Dataset string `json:"dataset"`
}
// Stream encapsulates a data stream and it's variables.
type Stream struct {
ID string `json:"id"`
Enabled bool `json:"enabled"`
DataStream DataStream `json:"data_stream"`
Vars Vars `json:"vars"`
}
// Input represents a package-level input.
type Input struct {
Type string `json:"type"`
Enabled bool `json:"enabled"`
Streams []Stream `json:"streams"`
Vars Vars `json:"vars"`
}
// PackageDataStream represents a request to add a single package's single data stream to a
// Policy in Fleet.
type PackageDataStream struct {
Name string `json:"name"`
Description string `json:"description"`
Namespace string `json:"namespace"`
PolicyID string `json:"policy_id"`
Enabled bool `json:"enabled"`
OutputID string `json:"output_id"`
Inputs []Input `json:"inputs"`
Package struct {
Name string `json:"name"`
Title string `json:"title"`
Version string `json:"version"`
} `json:"package"`
}
// AddPackageDataStreamToPolicy adds a PackageDataStream to a Policy in Fleet.
func (c *Client) AddPackageDataStreamToPolicy(r PackageDataStream) error {
reqBody, err := json.Marshal(r)
if err != nil {
return errors.Wrap(err, "could not convert policy-package (request) to JSON")
}
statusCode, respBody, err := c.post(fmt.Sprintf("%s/package_policies", FleetAPI), reqBody)
if err != nil {
return errors.Wrap(err, "could not add package to policy")
}
if statusCode != http.StatusOK {
return fmt.Errorf("could not add package to policy; API status code = %d; response body = %s", statusCode, respBody)
}
return nil
}