forked from zabbix-tools/go-zabbix
-
Notifications
You must be signed in to change notification settings - Fork 2
/
session.go
207 lines (173 loc) · 5.07 KB
/
session.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
package zabbix
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"strconv"
)
// ErrNotFound describes an empty result set for an API call.
var ErrNotFound = errors.New("No results were found matching the given search parameters")
// LoginParam is used for user.login API.
// Use Username in over Zabbix 5.4, otherwise use User for username.
type LoginParam struct {
User string `json:"user,omitempty"`
Username string `json:"username,omitempty"`
Password string `json:"password,omitempty"`
}
// A Session is an authenticated Zabbix JSON-RPC API client. It must be
// initialized and connected with NewSession.
type Session struct {
// URL of the Zabbix JSON-RPC API (ending in `/api_jsonrpc.php`).
URL string `json:"url"`
// Token is the cached authentication token returned by `user.login` and
// used to authenticate all API calls in this Session.
Token string `json:"token"`
// ApiVersion is the software version string of the connected Zabbix API.
APIVersion string `json:"apiVersion"`
client *http.Client
}
// NewSession returns a new Session given an API connection URL and an API
// username and password.
//
// An error is returned if there was an HTTP protocol error, the API credentials
// are incorrect or if the API version is indeterminable.
//
// The authentication token returned by the Zabbix API server is cached to
// authenticate all subsequent requests in this Session.
func NewSession(url string, username string, password string) (session *Session, err error) {
// create session
session = &Session{URL: url}
err = session.login(username, password)
return
}
func (c *Session) login(username, password string) error {
// get Zabbix API version
v, err := c.GetVersion()
if err != nil {
return fmt.Errorf("Failed to retrieve Zabbix API version: %v", err)
}
version, err := strconv.ParseFloat(v[0:3], 64)
if err != nil {
return fmt.Errorf("Failed to convert Zabbix version string to float: %v", err)
}
// login to API
var params LoginParam
if version > 5.2 {
params.Username = username
} else {
params.User = username
}
params.Password = password
res, err := c.Do(NewRequest("user.login", params))
if err != nil {
return fmt.Errorf("Error logging in to Zabbix API: %v", err)
}
err = res.Bind(&c.Token)
if err != nil {
return fmt.Errorf("Error failed to decode Zabbix login response: %v", err)
}
return nil
}
// GetVersion returns the software version string of the connected Zabbix API.
func (c *Session) GetVersion() (string, error) {
if c.APIVersion == "" {
// get Zabbix API version
res, err := c.Do(NewRequest("apiinfo.version", nil))
if err != nil {
return "", err
}
err = res.Bind(&c.APIVersion)
if err != nil {
return "", err
}
}
return c.APIVersion, nil
}
// AuthToken returns the authentication token used by this session to
// authentication all API calls.
func (c *Session) AuthToken() string {
return c.Token
}
// Do sends a JSON-RPC request and returns an API Response, using connection
// configuration defined in the parent Session.
//
// An error is returned if there was an HTTP protocol error, a non-200 response
// is received, or if an error code is set is the JSON response body.
//
// When err is nil, resp always contains a non-nil resp.Body.
//
// Generally Get or a wrapper function will be used instead of Do.
func (c *Session) Do(req *Request) (resp *Response, err error) {
// configure request
req.AuthToken = c.Token
// encode request as json
b, err := json.Marshal(req)
if err != nil {
return
}
dprintf("Call [%s:%d]: %s\n", req.Method, req.RequestID, b)
// create HTTP request
r, err := http.NewRequest("POST", c.URL, bytes.NewReader(b))
if err != nil {
return
}
r.ContentLength = int64(len(b))
r.Header.Add("Content-Type", "application/json-rpc")
// send request
client := c.client
if client == nil {
client = http.DefaultClient
}
res, err := client.Do(r)
if err != nil {
return
}
defer res.Body.Close()
// read response body
b, err = ioutil.ReadAll(res.Body)
if err != nil {
return nil, fmt.Errorf("Error reading response: %v", err)
}
dprintf("Response [%s:%d]: %s\n", req.Method, req.RequestID, b)
// map HTTP response to Response struct
resp = &Response{
StatusCode: res.StatusCode,
}
// unmarshal response body
err = json.Unmarshal(b, &resp)
if err != nil {
return nil, fmt.Errorf("Error decoding JSON response body: %v", err)
}
// check for API errors
if err = resp.Err(); err != nil {
return
}
return
}
// Get calls the given Zabbix API method with the given query parameters and
// unmarshals the JSON response body into the given interface.
//
// An error is return if a transport, marshalling or API error happened.
func (c *Session) Get(method string, params interface{}, v interface{}) error {
req := NewRequest(method, params)
resp, err := c.Do(req)
if err != nil {
return err
}
err = resp.Bind(v)
if err != nil {
return err
}
return nil
}
// Close calls "user.logout" API to close the session.
func (c *Session) Close() error {
_, err := c.Do(NewRequest("user.logout", nil))
if err != nil {
return err
}
return nil
}