-
Notifications
You must be signed in to change notification settings - Fork 12
/
http_source.go
182 lines (151 loc) · 5.32 KB
/
http_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
package sumologic
import (
"bytes"
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"net/url"
)
// HTTPSource is a necessary wrapper for source API calls.
type HTTPSourceRequest struct {
Source HTTPSource `json:"source"`
}
// HTTPSource can various types of sources including Cloudtrail and S3.
type HTTPSource 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"`
MessagePerRequest bool `json:"messagePerRequest"`
MultilineProcessingEnabled bool `json:"multilineProcessingEnabled"`
UseAutolineMatching bool `json:"useAutolineMatching,"`
ManualPrefixRegexp string `json:"manualPrefixRegexp,omitempty"`
Url string `json:"url,omitempty"`
Filters []Filter `json:"filters,omitempty"`
}
// GetHTTPSource gets the source with the specified ID.
func (s *Client) GetHTTPSource(collectorID int, id int) (*HTTPSource, 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(HTTPSourceRequest)
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)
}
}
// CreateHTTPSource creates a new HTTPSource.
func (s *Client) CreateHTTPSource(collectorID int, source HTTPSource) (*HTTPSource, error) {
request := HTTPSourceRequest{
Source: source,
}
log.Printf("Sumologic API Request: %+v", request)
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(HTTPSourceRequest)
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)
return nil, fmt.Errorf("Bad Request. %s", e.Message)
default:
return nil, fmt.Errorf("Unknown Response with Sumo Logic: `%d`", resp.StatusCode)
}
}
// UpdateHTTPSource updates an existing HTTP source.
func (s *Client) UpdateHTTPSource(collectorID int, source HTTPSource, etag string) (*HTTPSource, error) {
request := HTTPSourceRequest{
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(HTTPSourceRequest)
err = json.Unmarshal(responseBody, &r)
if err != nil {
return nil, err
}
return &r.Source, nil
case http.StatusUnauthorized:
return nil, ErrClientAuthenticationError
case http.StatusBadRequest:
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)
}
}
// DeleteHTTPSource deletes the source with the specified ID.
func (s *Client) DeleteHTTPSource(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)
}
}