-
Notifications
You must be signed in to change notification settings - Fork 11
/
incidents.go
119 lines (104 loc) · 3.06 KB
/
incidents.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
package morpheus
import (
"fmt"
)
var (
// IncidentsPath is the API endpoint for incidents
IncidentsPath = "/api/monitoring/incidents"
)
// Incident structures for use in request and response payloads
type Incident struct {
ID int64 `json:"id"`
Name string `json:"name"`
Comment string `json:"comment"`
Resolution string `json:"resolution"`
Status string `json:"status"`
Severity string `json:"severity"`
InUptime bool `json:"inUptime"`
StartDate string `json:"startDate"`
EndDate string `json:"endDate"`
}
// ListIncidentsResult structure parses the list incidents response payload
type ListIncidentsResult struct {
Incidents *[]Incident `json:"incidents"`
Meta *MetaResult `json:"meta"`
}
type GetIncidentResult struct {
Incident *Incident `json:"incident"`
}
type CreateIncidentResult struct {
Success bool `json:"success"`
Message string `json:"msg"`
Errors map[string]string `json:"errors"`
Incident *Incident `json:"incident"`
}
type UpdateIncidentResult struct {
CreateIncidentResult
}
type DeleteIncidentResult struct {
DeleteResult
}
// Client request methods
func (client *Client) ListIncidents(req *Request) (*Response, error) {
return client.Execute(&Request{
Method: "GET",
Path: IncidentsPath,
QueryParams: req.QueryParams,
Result: &ListIncidentsResult{},
})
}
func (client *Client) GetIncident(id int64, req *Request) (*Response, error) {
return client.Execute(&Request{
Method: "GET",
Path: fmt.Sprintf("%s/%d", IncidentsPath, id),
QueryParams: req.QueryParams,
Result: &GetIncidentResult{},
})
}
func (client *Client) CreateIncident(req *Request) (*Response, error) {
return client.Execute(&Request{
Method: "POST",
Path: IncidentsPath,
QueryParams: req.QueryParams,
Body: req.Body,
Result: &CreateIncidentResult{},
})
}
func (client *Client) UpdateIncident(id int64, req *Request) (*Response, error) {
return client.Execute(&Request{
Method: "PUT",
Path: fmt.Sprintf("%s/%d", IncidentsPath, id),
QueryParams: req.QueryParams,
Body: req.Body,
Result: &UpdateIncidentResult{},
})
}
func (client *Client) DeleteIncident(id int64, req *Request) (*Response, error) {
return client.Execute(&Request{
Method: "DELETE",
Path: fmt.Sprintf("%s/%d", IncidentsPath, id),
QueryParams: req.QueryParams,
Body: req.Body,
Result: &DeleteIncidentResult{},
})
}
// helper functions
func (client *Client) FindIncidentByName(name string) (*Response, error) {
// Find by name, then get by ID
resp, err := client.ListIncidents(&Request{
QueryParams: map[string]string{
"name": name,
},
})
if err != nil {
return resp, err
}
listResult := resp.Result.(*ListIncidentsResult)
incidentCount := len(*listResult.Incidents)
if incidentCount != 1 {
return resp, fmt.Errorf("found %d Incidents for %v", incidentCount, name)
}
firstRecord := (*listResult.Incidents)[0]
incidentID := firstRecord.ID
return client.GetIncident(incidentID, &Request{})
}