-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathalerts.go
181 lines (154 loc) · 4.15 KB
/
alerts.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
//
// Author:: Salim Afiune Maya (<[email protected]>)
// Copyright:: Copyright 2020, Lacework Inc.
// License:: Apache License, Version 2.0
//
// 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 api
import (
"fmt"
"sort"
"time"
"github.com/lacework/go-sdk/v2/lwseverity"
"github.com/lacework/go-sdk/v2/lwtime"
)
// AlertsService is a service that interacts with the Alerts
// endpoints from the Lacework Server
type AlertsService struct {
client *Client
}
// ValidAlertSeverities is a list of all valid alert severities
var ValidAlertSeverities = []string{"critical", "high", "medium", "low", "info"}
// ValidAlertStatuses is a list of all valid alert statuses
var ValidAlertStatuses = []string{"Open", "Closed"}
type AlertInfo struct {
Subject string `json:"subject"`
Description string `json:"description"`
}
type AlertSpec struct {
Profile string `json:"alertProfile"`
Name string `json:"name"`
}
type AlertDerivedFields struct {
Category string `json:"category"`
SubCategory string `json:"sub_category"`
Source string `json:"source"`
}
type Alert struct {
ID int `json:"alertId"`
Name string `json:"alertName"`
Type string `json:"alertType"`
Severity string `json:"severity"`
Info AlertInfo `json:"alertInfo"`
Spec AlertSpec `json:"alertSpec"`
Status string `json:"status"`
StartTime string `json:"startTime"`
EndTime string `json:"endTime"`
UpdateTime string `json:"lastUserUpdateTime"`
PolicyID string `json:"policyId"`
DerivedFields AlertDerivedFields `json:"derivedFields"`
Reachability string `json:"reachability"`
}
func (a Alert) GetSeverity() string {
return a.Severity
}
type Alerts []Alert
// Sort by alert ID descending
func (a Alerts) SortByID() {
sort.Slice(a, func(i, j int) bool {
return a[i].ID > a[j].ID
})
}
// Sort by alert severity descending (from critical -> low)
func (a Alerts) SortBySeverity() {
lwseverity.SortSlice(a)
}
type AlertsResponse struct {
Data Alerts `json:"data"`
Paging V2Pagination `json:"paging"`
v2PageMetadata `json:"-"`
}
// Fulfill Pageable interface (look at api/v2.go)
func (r AlertsResponse) PageInfo() *V2Pagination {
return &r.Paging
}
func (r *AlertsResponse) ResetPaging() {
r.Paging = V2Pagination{}
r.Data = nil
}
func (svc *AlertsService) List() (response AlertsResponse, err error) {
err = svc.client.RequestDecoder("GET", apiV2Alerts, nil, &response)
return
}
func (svc *AlertsService) ListAll() (response AlertsResponse, err error) {
response, err = svc.List()
if err != nil {
return
}
var (
all Alerts
pageOk bool
)
for {
all = append(all, response.Data...)
pageOk, err = svc.client.NextPage(&response)
if err == nil && pageOk {
continue
}
break
}
response.ResetPaging()
response.Data = all
return
}
func (svc *AlertsService) ListByTime(start, end time.Time) (
response AlertsResponse,
err error,
) {
err = svc.client.RequestDecoder(
"GET",
fmt.Sprintf(
apiV2AlertsByTime,
start.UTC().Format(lwtime.RFC3339Milli),
end.UTC().Format(lwtime.RFC3339Milli),
),
nil,
&response,
)
return
}
func (svc *AlertsService) ListAllByTime(start, end time.Time) (
response AlertsResponse,
err error,
) {
response, err = svc.ListByTime(start, end)
if err != nil {
return
}
var (
all Alerts
pageOk bool
)
for {
all = append(all, response.Data...)
pageOk, err = svc.client.NextPage(&response)
if err == nil && pageOk {
continue
}
break
}
response.ResetPaging()
response.Data = all
return
}