-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathaws_log_source.go
225 lines (191 loc) · 7.28 KB
/
aws_log_source.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
package sumologic
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"net/http"
"net/url"
"regexp"
)
// AWSLogSource is a necessary wrapper for source API calls.
type AWSLogSourceRequest struct {
Source AWSLogSource `json:"source"`
}
// AWSLogSource can various types of sources including Cloudtrail and S3.
type AWSLogSource struct {
ID int `json:"id,omitempty"`
Name string `json:"name"`
CollectorID int `json:"CollectorId,omitempty"`
Description string `json:"description,omitempty"`
Category string `json:"category,omitempty"`
TimeZone string `json:"timezone,omitempty"`
SourceType string `json:"sourceType,omitempty"`
ContentType string `json:"contentType,omitempty"`
ScanInterval int `json:"scanInterval,omitempty"`
Paused bool `json:"paused"`
CutoffRelativeTime string `json:"cutoffRelativeTime,omitempty"`
MultilineProcessingEnabled bool `json:"multilineProcessingEnabled"`
UseAutolineMatching bool `json:"useAutolineMatching"`
ManualPrefixRegexp string `json:"manualPrefixRegexp,omitempty"`
Url string `json:"url,omitempty"`
ThirdPartyRef AWSBucketThirdPartyRef `json:"thirdPartyRef,omitempty"`
Filters []Filter `json:"filters,omitempty"`
}
type AWSBucketThirdPartyRef struct {
Resources []AWSBucketResource `json:"resources,omitempty"`
}
// AWSBucketThirdPartyRef contains AWS configurartion including auth.
type AWSBucketResource struct {
ServiceType string `json:"serviceType"`
Path AWSBucketPath `json:"path"`
Authentication AWSBucketAuthentication `json:"authentication"`
}
// AWSBucketPath contains AWS S3 Bucket configuration.
type AWSBucketPath struct {
Type string `json:"type"`
BucketName string `json:"bucketName"`
PathExpression string `json:"pathExpression"`
}
// AWSBucketAuthentication contains AWS authentication configurartion.
type AWSBucketAuthentication struct {
Type string `json:"type"`
RoleARN string `json:"roleARN"`
}
// GetAWSLogSource gets the source with the specified ID.
func (s *Client) GetAWSLogSource(collectorID int, id int) (*AWSLogSource, string, error) {
relativeURL, _ := url.Parse(fmt.Sprintf("collectors/%d/sources/%d", collectorID, id))
url := s.EndpointURL.ResolveReference(relativeURL)
req, err := http.NewRequest("GET", url.String(), nil)
req.Header.Add("Authorization", "Basic "+s.AuthToken)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return nil, "", err
}
defer resp.Body.Close()
responseBody, _ := ioutil.ReadAll(resp.Body)
switch resp.StatusCode {
case http.StatusOK:
var r = new(AWSLogSourceRequest)
err = json.Unmarshal(responseBody, &r)
if err != nil {
return nil, "", err
}
return &r.Source, resp.Header.Get("ETag"), nil
case http.StatusUnauthorized:
return nil, "", ErrClientAuthenticationError
case http.StatusNotFound:
return nil, "", ErrSourceNotFound
default:
return nil, "", fmt.Errorf("Unknown Response with Sumo Logic: `%d`", resp.StatusCode)
}
}
// CreateAWSLogSource creates a new AWSLogSource.
func (s *Client) CreateAWSLogSource(collectorID int, source AWSLogSource) (*AWSLogSource, error) {
request := AWSLogSourceRequest{
Source: source,
}
body, _ := json.Marshal(request)
relativeURL, _ := url.Parse(fmt.Sprintf("collectors/%d/sources", collectorID))
url := s.EndpointURL.ResolveReference(relativeURL)
req, err := http.NewRequest("POST", url.String(), bytes.NewBuffer(body))
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Authorization", "Basic "+s.AuthToken)
resp, err := http.DefaultClient.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
responseBody, _ := ioutil.ReadAll(resp.Body)
switch resp.StatusCode {
case http.StatusCreated:
var r = new(AWSLogSourceRequest)
err = json.Unmarshal(responseBody, &r)
if err != nil {
return nil, err
}
return &r.Source, nil
case http.StatusUnauthorized:
return nil, ErrClientAuthenticationError
case http.StatusBadRequest:
var e = new(Error)
err = json.Unmarshal(responseBody, &e)
if err != nil {
return nil, fmt.Errorf("Bad Request. Please check if a source with this name `%s` already exists", source.Name)
}
if e.Message == "Cannot authenticate with AWS." ||
e.Message == "Invalid IAM role: 'errorCode=AccessDenied'." {
return nil, ErrAwsAuthenticationError
}
if matched, _ := regexp.MatchString("The S3 bucket 'bucketName=.*' is not readable.", e.Message); matched {
return nil, ErrAwsAuthenticationError
}
return nil, fmt.Errorf("Bad Request. %s", e.Message)
default:
return nil, fmt.Errorf("Unknown Response with Sumo Logic: `%d`", resp.StatusCode)
}
}
// UpdateAWSLogSource updates an existing AWS Bucket source.
func (s *Client) UpdateAWSLogSource(collectorID int, source AWSLogSource, etag string) (*AWSLogSource, error) {
request := AWSLogSourceRequest{
Source: source,
}
body, _ := json.Marshal(request)
relativeURL, _ := url.Parse(fmt.Sprintf("collectors/%d/sources/%d", collectorID, source.ID))
url := s.EndpointURL.ResolveReference(relativeURL)
req, err := http.NewRequest("PUT", url.String(), bytes.NewBuffer((body)))
req.Header.Add("Content-Type", "application/json")
req.Header.Add("Authorization", "Basic "+s.AuthToken)
req.Header.Add("If-Match", etag)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
responseBody, _ := ioutil.ReadAll(resp.Body)
switch resp.StatusCode {
case http.StatusOK:
var r = new(AWSLogSourceRequest)
err = json.Unmarshal(responseBody, &r)
if err != nil {
return nil, err
}
return &r.Source, nil
case http.StatusUnauthorized:
return nil, ErrClientAuthenticationError
case http.StatusBadRequest:
var e = new(Error)
err = json.Unmarshal(responseBody, &e)
if e.Message == "Cannot authenticate with AWS." ||
e.Message == "Invalid IAM role: 'errorCode=AccessDenied'." {
return nil, ErrAwsAuthenticationError
}
return nil, fmt.Errorf("Bad Request. Please check if a source with this name `%s` already exists", source.Name)
default:
return nil, fmt.Errorf("Unknown Response with Sumo Logic: `%d`", resp.StatusCode)
}
}
// DeleteAWSLogSource deletes the source with the specified ID.
func (s *Client) DeleteAWSLogSource(collectorID int, id int) error {
c, _ := url.Parse(fmt.Sprintf("collectors/%d/sources/%d", collectorID, id))
req, err := http.NewRequest("DELETE", s.EndpointURL.ResolveReference(c).String(), nil)
req.Header.Add("Authorization", "Basic "+s.AuthToken)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
switch resp.StatusCode {
case http.StatusOK:
return nil
case http.StatusNotFound:
return ErrSourceNotFound
case http.StatusUnauthorized:
return ErrClientAuthenticationError
default:
return fmt.Errorf("Unknown Response with Sumo Logic: `%d`", resp.StatusCode)
}
}