forked from dainis/zabbix
-
Notifications
You must be signed in to change notification settings - Fork 18
/
trigger_prototype.go
131 lines (116 loc) · 4.72 KB
/
trigger_prototype.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
package zabbix
// TriggerPrototype represent Zabbix trigger prototype object
// https://www.zabbix.com/documentation/3.2/manual/api/reference/triggerprototype/object
type TriggerPrototype struct {
TriggerID string `json:"triggerid,omitempty"` // Readonly
Description string `json:"description"` // Reqired
Expression string `json:"expression"` // Required
Commemts string `json:"comments,omitempty"`
Priority SeverityType `json:"priority,omitempty,string"`
Status StatusType `json:"status,omitempty,string"`
TemplateID string `json:"templateid,omitempty"` // Readonly
Type int `json:"type,omitempty,string"`
URL string `json:"url,omitempty"`
RecoveryMode int `json:"recovery_mode,omitempty,string"`
RecoveryExpression string `json:"recovery_expression,omitempty"`
CorrelationMode int `json:"correlation_mode,omitempty,string"`
CorrelationTag string `json:"correlation_tag,omitempty"`
ManualClose int `json:"manual_close,omitempty,string"`
Dependencies TriggerPrototypes `json:"dependencies,omitempty"`
Functions TriggerFunctions `json:"functions,omitempty"`
// Return the hosts that the trigger prototype belongs to in the hosts property.
ParentHosts Hosts `json:"hosts,omitempty"`
}
// TriggerPrototypes is an array of TriggerPrototype
type TriggerPrototypes []TriggerPrototype
// TriggerPrototypesGet Wrapper for trigger.get
// https://www.zabbix.com/documentation/3.2/manual/api/reference/triggerprototype/get
func (api *API) TriggerPrototypesGet(params Params) (res TriggerPrototypes, err error) {
if _, present := params["output"]; !present {
params["output"] = "extend"
}
err = api.CallWithErrorParse("triggerprototype.get", params, &res)
return
}
// TriggerPrototypeGetByID Gets trigger by Id only if there is exactly 1 matching trigger.
func (api *API) TriggerPrototypeGetByID(id string) (res *TriggerPrototype, err error) {
triggers, err := api.TriggerPrototypesGet(Params{"triggerids": id})
if err != nil {
return
}
if len(triggers) != 1 {
e := ExpectedOneResult(len(triggers))
err = &e
return
}
res = &triggers[0]
return
}
// TriggerPrototypesCreate Wrapper for trigger.create
// https://www.zabbix.com/documentation/3.2/manual/api/reference/triggerprototype/create
func (api *API) TriggerPrototypesCreate(triggers TriggerPrototypes) (err error) {
response, err := api.CallWithError("triggerprototype.create", triggers)
if err != nil {
return
}
result := response.Result.(map[string]interface{})
triggerids := result["triggerids"].([]interface{})
for i, id := range triggerids {
triggers[i].TriggerID = id.(string)
}
return
}
// TriggerPrototypesUpdate Wrapper for trigger.update
// https://www.zabbix.com/documentation/3.2/manual/api/reference/triggerprototype/update
func (api *API) TriggerPrototypesUpdate(triggers TriggerPrototypes) (err error) {
_, err = api.CallWithError("triggerprototype.update", triggers)
return
}
// TriggerPrototypesDelete Wrapper for trigger.delete
// Cleans TriggerID in all triggers elements if call succeed.
// https://www.zabbix.com/documentation/3.2/manual/api/reference/triggerprototype/delete
func (api *API) TriggerPrototypesDelete(triggers TriggerPrototypes) (err error) {
ids := make([]string, len(triggers))
for i, trigger := range triggers {
ids[i] = trigger.TriggerID
}
err = api.TriggerPrototypesDeleteByIds(ids)
if err == nil {
for i := range triggers {
triggers[i].TriggerID = ""
}
}
return
}
// TriggerPrototypesDeleteByIds Wrapper for trigger.delete
// https://www.zabbix.com/documentation/3.2/manual/api/reference/triggerprototype/delete
func (api *API) TriggerPrototypesDeleteByIds(ids []string) (err error) {
triggerids1, err := api.TriggerPrototypesDeleteIDs((ids))
if err != nil {
return
}
if len(triggerids1) != len(ids) {
err = &ExpectedMore{len(ids), len(triggerids1)}
}
return
}
// TriggerPrototypesDeleteIDs Wrapper for trigger.delete
// return the id of the deleted trigger prototype
// https://www.zabbix.com/documentation/3.2/manual/api/reference/triggerprototype/delete
func (api *API) TriggerPrototypesDeleteIDs(ids []string) (triggerids []interface{}, err error) {
response, err := api.CallWithError("triggerprototype.delete", ids)
if err != nil {
return
}
result := response.Result.(map[string]interface{})
triggerids1, ok := result["triggerids"].([]interface{})
if !ok {
triggerids2 := result["triggerids"].(map[string]interface{})
for _, id := range triggerids2 {
triggerids = append(triggerids, id)
}
} else {
triggerids = triggerids1
}
return
}