-
Notifications
You must be signed in to change notification settings - Fork 25
/
alert_channels.go
233 lines (206 loc) · 7.1 KB
/
alert_channels.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
226
227
228
229
230
231
232
233
//
// Author:: Salim Afiune Maya (<[email protected]>)
// Copyright:: Copyright 2021, 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"
"github.com/pkg/errors"
)
// AlertChannelsService is the service that interacts with
// the AlertChannels schema from the Lacework APIv2 Server
type AlertChannelsService struct {
client *Client
}
// NewAlertChannel returns an instance of the AlertChannelRaw struct with the
// provided Alert Channel integration type, name and raw data as an interface{}.
//
// NOTE: This function must be used by any Alert Channel type.
//
// Basic usage: Initialize a new EmailUserAlertChannel struct, then
//
// use the new instance to do CRUD operations
//
// client, err := api.NewClient("account")
// if err != nil {
// return err
// }
//
// emailAlertChan := api.NewAlertChannel("foo",
// api.EmailUserAlertChannelType,
// api.EmailUserData{
// ChannelProps: api.EmailUserChannelProps{
// Recipients: []string{"[email protected]"},
// },
// },
// )
//
// client.V2.AlertChannels.Create(emailAlertChan)
func NewAlertChannel(name string, iType alertChannelType, data interface{}) AlertChannelRaw {
return AlertChannelRaw{
v2CommonIntegrationData: v2CommonIntegrationData{
Name: name,
Type: iType.String(),
Enabled: 1,
},
Data: data,
}
}
// AlertChannel is an interface that helps us implement a few functions
// that any Alert Channel might use, there are some cases, like during
// Update, where we need to get the ID of the Alert Channel and its type,
// this will allow users to pass any Alert Channel that implements these
// methods
type AlertChannel interface {
ID() string
AlertChannelType() alertChannelType
}
type alertChannelType int
const (
// NoneAlertChannelType type that defines a non-existing Alert Channel integration
NoneAlertChannelType alertChannelType = iota
EmailUserAlertChannelType
SlackChannelAlertChannelType
AwsS3AlertChannelType
CloudwatchEbAlertChannelType
DatadogAlertChannelType
WebhookAlertChannelType
VictorOpsAlertChannelType
CiscoSparkWebhookAlertChannelType
MicrosoftTeamsAlertChannelType
GcpPubSubAlertChannelType
SplunkHecAlertChannelType
ServiceNowRestAlertChannelType
NewRelicInsightsAlertChannelType
PagerDutyApiAlertChannelType
IbmQRadarAlertChannelType
JiraAlertChannelType
)
// AlertChannelTypes is the list of available Alert Channel integration types
var AlertChannelTypes = map[alertChannelType]string{
NoneAlertChannelType: "None",
EmailUserAlertChannelType: "EmailUser",
SlackChannelAlertChannelType: "SlackChannel",
AwsS3AlertChannelType: "AwsS3",
CloudwatchEbAlertChannelType: "CloudwatchEb",
DatadogAlertChannelType: "Datadog",
WebhookAlertChannelType: "Webhook",
VictorOpsAlertChannelType: "VictorOps",
CiscoSparkWebhookAlertChannelType: "CiscoSparkWebhook",
MicrosoftTeamsAlertChannelType: "MicrosoftTeams",
GcpPubSubAlertChannelType: "GcpPubsub",
SplunkHecAlertChannelType: "SplunkHec",
ServiceNowRestAlertChannelType: "ServiceNowRest",
NewRelicInsightsAlertChannelType: "NewRelicInsights",
PagerDutyApiAlertChannelType: "PagerDutyApi",
IbmQRadarAlertChannelType: "IbmQradar",
JiraAlertChannelType: "Jira",
}
// String returns the string representation of a Alert Channel integration type
func (i alertChannelType) String() string {
return AlertChannelTypes[i]
}
// FindAlertChannelType looks up inside the list of available alert channel types
// the matching type from the provided string, if none, returns NoneAlertChannelType
func FindAlertChannelType(alertChannel string) (alertChannelType, bool) {
for cType, cStr := range AlertChannelTypes {
if cStr == alertChannel {
return cType, true
}
}
return NoneAlertChannelType, false
}
// List returns a list of Alert Channel integrations
func (svc *AlertChannelsService) List() (response AlertChannelsResponse, err error) {
err = svc.client.RequestDecoder("GET", apiV2AlertChannels, nil, &response)
return
}
// Create creates a single Alert Channel integration
func (svc *AlertChannelsService) Create(integration AlertChannelRaw) (
response AlertChannelResponse,
err error,
) {
err = svc.create(integration, &response)
return
}
// Delete deletes a Alert Channel integration that matches the provided guid
func (svc *AlertChannelsService) Delete(guid string) error {
if guid == "" {
return errors.New("specify an intgGuid")
}
return svc.client.RequestDecoder(
"DELETE",
fmt.Sprintf(apiV2AlertChannelFromGUID, guid),
nil,
nil,
)
}
// Test tests an Alert Channel integration that matches the provided guid
func (svc *AlertChannelsService) Test(guid string) error {
if guid == "" {
return errors.New("specify an intgGuid")
}
apiPath := fmt.Sprintf(apiV2AlertChannelTest, guid)
return svc.client.RequestDecoder("POST", apiPath, nil, nil)
}
// Get returns a raw response of the Alert Channel with the matching integration guid.
//
// To return a more specific Go struct of a Alert Channel integration, use the proper
// method such as GetEmailUser() where the function name is composed by:
//
// Get<Type>(guid)
//
// Where <Type> is the Alert Channel integration type.
func (svc *AlertChannelsService) Get(guid string, response interface{}) error {
return svc.get(guid, &response)
}
type AlertChannelRaw struct {
v2CommonIntegrationData
Data interface{} `json:"data,omitempty"`
}
func (alert AlertChannelRaw) GetData() any {
return alert.Data
}
func (alert AlertChannelRaw) GetCommon() v2CommonIntegrationData {
return alert.v2CommonIntegrationData
}
func (alert AlertChannelRaw) AlertChannelType() alertChannelType {
t, _ := FindAlertChannelType(alert.Type)
return t
}
type AlertChannelResponse struct {
Data AlertChannelRaw `json:"data"`
}
type AlertChannelsResponse struct {
Data []AlertChannelRaw `json:"data"`
}
func (svc *AlertChannelsService) create(data interface{}, response interface{}) error {
return svc.client.RequestEncoderDecoder("POST", apiV2AlertChannels, data, response)
}
func (svc *AlertChannelsService) get(guid string, response interface{}) error {
if guid == "" {
return errors.New("specify an intgGuid")
}
apiPath := fmt.Sprintf(apiV2AlertChannelFromGUID, guid)
return svc.client.RequestDecoder("GET", apiPath, nil, response)
}
func (svc *AlertChannelsService) update(guid string, data interface{}, response interface{}) error {
if guid == "" {
return errors.New("specify an intgGuid")
}
apiPath := fmt.Sprintf(apiV2AlertChannelFromGUID, guid)
return svc.client.RequestEncoderDecoder("PATCH", apiPath, data, response)
}