forked from mdlayher/unifi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
devices.go
445 lines (427 loc) · 18.5 KB
/
devices.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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
package unifi
import "fmt"
import "encoding/json"
// Devices returns all of the Devices for a specified site name.
func (c *Client) Devices(siteName string) ([]*Device, error) {
var v struct {
Devices []*Device `json:"data"`
}
req, err := c.newRequest(
"GET",
fmt.Sprintf("/api/s/%s/stat/device", siteName),
nil,
)
if err != nil {
return nil, err
}
_, err = c.do(req, &v)
return v.Devices, err
}
// A Device is the raw structure of a Device returned from the UniFi Controller
// API.
type Device struct {
ID string `json:"_id"`
Adopted bool `json:"adopted"`
AtfEnabled bool `json:"atf_enabled"`
BandsteeringMode string `json:"bandsteering_mode"`
BoardRev int `json:"board_rev"`
Bytes int64 `json:"bytes"`
BytesD int `json:"bytes-d"`
BytesR int `json:"bytes-r"`
Cfgversion string `json:"cfgversion"`
ConfigNetwork *ConfigNetwork `json:"config_network"`
ConnectRequestIP string `json:"connect_request_ip"`
ConnectRequestPort string `json:"connect_request_port"`
DeviceID string `json:"device_id"`
DiscoveredVia string `json:"discovered_via"`
DownlinkTable []*DownlinkTable `json:"downlink_table"`
EthernetTable []*EthernetTable `json:"ethernet_table"`
FwCaps int `json:"fw_caps"`
GuestNumSta int `json:"guest-num_sta"`
GuestToken string `json:"guest_token"`
HasEth1 bool `json:"has_eth1"`
HasSpeaker bool `json:"has_speaker"`
InformAuthkey string `json:"inform_authkey"`
InformIP string `json:"inform_ip"`
InformURL string `json:"inform_url"`
IP string `json:"ip"`
Isolated bool `json:"isolated"`
KnownCfgversion string `json:"known_cfgversion"`
LastSeen int `json:"last_seen"`
LastUplink LastUplink `json:"last_uplink"`
LedOverride string `json:"led_override"`
Locating bool `json:"locating"`
Mac string `json:"mac"`
MapID string `json:"map_id"`
Model string `json:"model"`
NaChannel int `json:"na-channel"`
NaEirp int `json:"na-eirp"`
NaExtchannel int `json:"na-extchannel"`
NaGain int `json:"na-gain"`
NaGuestNumSta int `json:"na-guest-num_sta"`
NaNumSta int `json:"na-num_sta"`
NaState string `json:"na-state"`
NaTxPower int `json:"na-tx_power"`
NaUserNumSta int `json:"na-user-num_sta"`
NaAstBeXmit int `json:"na_ast_be_xmit"`
NaAstCst *string `json:"na_ast_cst"`
NaAstTxto *string `json:"na_ast_txto"`
NaCuSelfRx int `json:"na_cu_self_rx"`
NaCuSelfTx int `json:"na_cu_self_tx"`
NaCuTotal int `json:"na_cu_total"`
NaTxPackets int `json:"na_tx_packets"`
NaTxRetries int `json:"na_tx_retries"`
Name string `json:"name"`
NgChannel int `json:"ng-channel"`
NgEirp int `json:"ng-eirp"`
NgExtchannel int `json:"ng-extchannel"`
NgGain int `json:"ng-gain"`
NgGuestNumSta int `json:"ng-guest-num_sta"`
NgNumSta int `json:"ng-num_sta"`
NgState string `json:"ng-state"`
NgTxPower int `json:"ng-tx_power"`
NgUserNumSta int `json:"ng-user-num_sta"`
NgAstBeXmit json.Number `json:"ng_ast_be_xmit"`
NgAstCst json.Number `json:"ng_ast_cst"`
NgAstTxto json.Number `json:"ng_ast_txto"`
NgCuSelfRx int `json:"ng_cu_self_rx"`
NgCuSelfTx int `json:"ng_cu_self_tx"`
NgCuTotal int `json:"ng_cu_total"`
NgLastInterferenceAt int `json:"ng_last_interference_at"`
NgTxPackets int `json:"ng_tx_packets"`
NgTxRetries int `json:"ng_tx_retries"`
NumSta int `json:"num_sta"`
PortStats []*interface{} `json:"port_stats"`
PortTable []*interface{} `json:"port_table"`
RadioNa *RadioNa `json:"radio_na"`
RadioNg *RadioNg `json:"radio_ng"`
RadioTable []*RadioTable `json:"radio_table"`
RxBytes int `json:"rx_bytes"`
RxBytesD int `json:"rx_bytes-d"`
Scanning bool `json:"scanning"`
Serial string `json:"serial"`
SiteID string `json:"site_id"`
SpectrumScanning bool `json:"spectrum_scanning"`
SSHSessionTable []*interface{} `json:"ssh_session_table"`
Stat *Stat `json:"stat"`
State int `json:"state"`
SysStats *SysStats `json:"sys_stats"`
TxBytes int64 `json:"tx_bytes"`
TxBytesD int `json:"tx_bytes-d"`
Type string `json:"type"`
Upgradable bool `json:"upgradable"`
UpgradeToFirmware string `json:"upgrade_to_firmware"`
Uplink *Uplink `json:"uplink"`
UplinkApMac string `json:"uplink_ap_mac"`
UplinkTable []*UplinkTable `json:"uplink_table"`
Uptime int `json:"uptime"`
UserNumSta int `json:"user-num_sta"`
VapTable []*VapTable `json:"vap_table"`
Version string `json:"version"`
VwireEnabled bool `json:"vwireEnabled"`
VwireTable []*VwireTable `json:"vwire_table"`
WifiCaps int `json:"wifi_caps"`
WlangroupIDNa string `json:"wlangroup_id_na"`
WlangroupIDNg string `json:"wlangroup_id_ng"`
X float64 `json:"x"`
XAuthkey string `json:"x_authkey"`
XFingerprint string `json:"x_fingerprint"`
XHasSSHHostkey bool `json:"x_has_ssh_hostkey"`
XVwirekey string `json:"x_vwirekey"`
Y float64 `json:"y"`
}
type ConfigNetwork struct {
IP string `json:"ip"`
Type string `json:"type"`
}
type DownlinkTable struct {
ApMac string `json:"ap_mac"`
AuthTime int64 `json:"auth_time"`
Authorized bool `json:"authorized"`
Ccq int `json:"ccq"`
Channel int `json:"channel"`
DhcpendTime int `json:"dhcpend_time"`
DhcpstartTime int `json:"dhcpstart_time"`
Hostname string `json:"hostname"`
Idletime int `json:"idletime"`
Is11A bool `json:"is_11a"`
Is11Ac bool `json:"is_11ac"`
Is11N bool `json:"is_11n"`
Mac string `json:"mac"`
Name string `json:"name"`
Noise int `json:"noise"`
Radio string `json:"radio"`
Rssi int `json:"rssi"`
RxBytes int64 `json:"rx_bytes"`
RxBytesR int `json:"rx_bytes-r"`
RxMcast int `json:"rx_mcast"`
RxPackets int `json:"rx_packets"`
RxRate int `json:"rx_rate"`
RxRetries int `json:"rx_retries"`
Signal int `json:"signal"`
State int `json:"state"`
StateHt bool `json:"state_ht"`
StatePwrmgt bool `json:"state_pwrmgt"`
TxBytes int64 `json:"tx_bytes"`
TxBytesR int `json:"tx_bytes-r"`
TxPackets int `json:"tx_packets"`
TxPower int `json:"tx_power"`
TxRate int `json:"tx_rate"`
TxRetries int `json:"tx_retries"`
Uptime int `json:"uptime"`
VlanID int `json:"vlan_id"`
}
type EthernetTable struct {
Mac string `json:"mac"`
Name string `json:"name"`
NumPort int `json:"num_port"`
}
type RadioNa struct {
AntennaGain int `json:"antenna_gain"`
BuiltinAntGain int `json:"builtin_ant_gain"`
BuiltinAntenna bool `json:"builtin_antenna"`
Channel string `json:"channel"`
HasDfs bool `json:"has_dfs"`
HasFccdfs bool `json:"has_fccdfs"`
Ht string `json:"ht"`
Is11Ac bool `json:"is_11ac"`
MaxTxpower int `json:"max_txpower"`
MinRssi int `json:"min_rssi"`
MinRssiEnabled bool `json:"min_rssi_enabled"`
MinTxpower int `json:"min_txpower"`
Name string `json:"name"`
Nss int `json:"nss"`
Radio string `json:"radio"`
TxPowerMode string `json:"tx_power_mode"`
}
type RadioNg struct {
AntennaGain int `json:"antenna_gain"`
BuiltinAntGain int `json:"builtin_ant_gain"`
BuiltinAntenna bool `json:"builtin_antenna"`
Channel int `json:"channel"`
Ht string `json:"ht"`
MaxTxpower int `json:"max_txpower"`
MinRssi int `json:"min_rssi"`
MinRssiEnabled bool `json:"min_rssi_enabled"`
MinTxpower int `json:"min_txpower"`
Name string `json:"name"`
Nss int `json:"nss"`
Radio string `json:"radio"`
TxPowerMode string `json:"tx_power_mode"`
}
type RadioTable struct {
AntennaGain int `json:"antenna_gain"`
BuiltinAntGain int `json:"builtin_ant_gain"`
BuiltinAntenna bool `json:"builtin_antenna"`
Channel json.Number `json:"channel"`
HasDfs bool `json:"has_dfs"`
HasFccdfs bool `json:"has_fccdfs"`
Ht string `json:"ht"`
Is11Ac bool `json:"is_11ac"`
MaxTxpower int `json:"max_txpower"`
MinRssi int `json:"min_rssi"`
MinRssiEnabled bool `json:"min_rssi_enabled"`
MinTxpower int `json:"min_txpower"`
Name string `json:"name"`
Nss int `json:"nss"`
Radio string `json:"radio"`
TxPowerMode string `json:"tx_power_mode"`
}
type Stat struct {
Bytes int64 `json:"bytes"`
GuestNaRxBytes int `json:"guest-na-rx_bytes"`
GuestNaRxPackets int `json:"guest-na-rx_packets"`
GuestNaTxBytes int `json:"guest-na-tx_bytes"`
GuestNaTxDropped int `json:"guest-na-tx_dropped"`
GuestNaTxErrors int `json:"guest-na-tx_errors"`
GuestNaTxPackets int `json:"guest-na-tx_packets"`
GuestNgRxBytes int `json:"guest-ng-rx_bytes"`
GuestNgRxPackets int `json:"guest-ng-rx_packets"`
GuestNgTxBytes int64 `json:"guest-ng-tx_bytes"`
GuestNgTxDropped int `json:"guest-ng-tx_dropped"`
GuestNgTxPackets int `json:"guest-ng-tx_packets"`
GuestNgTxRetries int `json:"guest-ng-tx_retries"`
GuestRxBytes int `json:"guest-rx_bytes"`
GuestRxPackets int `json:"guest-rx_packets"`
GuestTxBytes int64 `json:"guest-tx_bytes"`
GuestTxDropped int `json:"guest-tx_dropped"`
GuestTxErrors int `json:"guest-tx_errors"`
GuestTxPackets int `json:"guest-tx_packets"`
GuestTxRetries int `json:"guest-tx_retries"`
Mac string `json:"mac"`
NaRxBytes int `json:"na-rx_bytes"`
NaRxCrypts int `json:"na-rx_crypts"`
NaRxDropped int `json:"na-rx_dropped"`
NaRxErrors int `json:"na-rx_errors"`
NaRxPackets int `json:"na-rx_packets"`
NaTxBytes int `json:"na-tx_bytes"`
NaTxDropped int `json:"na-tx_dropped"`
NaTxErrors int `json:"na-tx_errors"`
NaTxPackets int `json:"na-tx_packets"`
NgRxBytes int `json:"ng-rx_bytes"`
NgRxCrypts int `json:"ng-rx_crypts"`
NgRxDropped int `json:"ng-rx_dropped"`
NgRxErrors int `json:"ng-rx_errors"`
NgRxPackets int `json:"ng-rx_packets"`
NgTxBytes int64 `json:"ng-tx_bytes"`
NgTxDropped int `json:"ng-tx_dropped"`
NgTxPackets int `json:"ng-tx_packets"`
NgTxRetries int `json:"ng-tx_retries"`
RxBytes int `json:"rx_bytes"`
RxCrypts int `json:"rx_crypts"`
RxDropped int `json:"rx_dropped"`
RxErrors int `json:"rx_errors"`
RxPackets int `json:"rx_packets"`
TxBytes int64 `json:"tx_bytes"`
TxDropped int `json:"tx_dropped"`
TxErrors int `json:"tx_errors"`
TxPackets int `json:"tx_packets"`
TxRetries int `json:"tx_retries"`
UplinkRxBytes int64 `json:"uplink-rx_bytes"`
UplinkRxDropped int `json:"uplink-rx_dropped"`
UplinkRxPackets int `json:"uplink-rx_packets"`
UplinkTxBytes int `json:"uplink-tx_bytes"`
UplinkTxPackets int `json:"uplink-tx_packets"`
UserNaRxBytes int `json:"user-na-rx_bytes"`
UserNaRxCrypts int `json:"user-na-rx_crypts"`
UserNaRxDropped int `json:"user-na-rx_dropped"`
UserNaRxErrors int `json:"user-na-rx_errors"`
UserNaRxPackets int `json:"user-na-rx_packets"`
UserNaTxBytes int `json:"user-na-tx_bytes"`
UserNaTxDropped int `json:"user-na-tx_dropped"`
UserNaTxErrors int `json:"user-na-tx_errors"`
UserNaTxPackets int `json:"user-na-tx_packets"`
UserNgRxBytes int `json:"user-ng-rx_bytes"`
UserNgRxCrypts int `json:"user-ng-rx_crypts"`
UserNgRxDropped int `json:"user-ng-rx_dropped"`
UserNgRxErrors int `json:"user-ng-rx_errors"`
UserNgRxPackets int `json:"user-ng-rx_packets"`
UserNgTxBytes int `json:"user-ng-tx_bytes"`
UserNgTxDropped int `json:"user-ng-tx_dropped"`
UserNgTxPackets int `json:"user-ng-tx_packets"`
UserNgTxRetries int `json:"user-ng-tx_retries"`
UserRxBytes int `json:"user-rx_bytes"`
UserRxCrypts int `json:"user-rx_crypts"`
UserRxDropped int `json:"user-rx_dropped"`
UserRxErrors int `json:"user-rx_errors"`
UserRxPackets int `json:"user-rx_packets"`
UserTxBytes int64 `json:"user-tx_bytes"`
UserTxDropped int `json:"user-tx_dropped"`
UserTxErrors int `json:"user-tx_errors"`
UserTxPackets int `json:"user-tx_packets"`
UserTxRetries int `json:"user-tx_retries"`
}
type SysStats struct {
Loadavg1 string `json:"loadavg_1"`
Loadavg15 string `json:"loadavg_15"`
Loadavg5 string `json:"loadavg_5"`
MemBuffer int `json:"mem_buffer"`
MemTotal int `json:"mem_total"`
MemUsed int `json:"mem_used"`
}
type Uplink struct {
FullDuplex bool `json:"full_duplex"`
IP string `json:"ip"`
Mac string `json:"mac"`
MaxSpeed int `json:"max_speed"`
Name string `json:"name"`
Netmask string `json:"netmask"`
NumPort int `json:"num_port"`
RxBytes int `json:"rx_bytes"`
RxBytesR int `json:"rx_bytes-r"`
RxDropped int `json:"rx_dropped"`
RxErrors int `json:"rx_errors"`
RxMulticast int `json:"rx_multicast"`
RxPackets int `json:"rx_packets"`
Speed int `json:"speed"`
TxBytes int `json:"tx_bytes"`
TxBytesR int `json:"tx_bytes-r"`
TxDropped int `json:"tx_dropped"`
TxErrors int `json:"tx_errors"`
TxPackets int `json:"tx_packets"`
Type string `json:"type"`
Up bool `json:"up"`
}
type VapTable struct {
ApMac string `json:"ap_mac"`
Bssid string `json:"bssid"`
Ccq int `json:"ccq"`
Channel int `json:"channel"`
Essid string `json:"essid"`
Extchannel int `json:"extchannel"`
ID string `json:"id"`
IsGuest bool `json:"is_guest"`
IsWep bool `json:"is_wep"`
MapID string `json:"map_id"`
Name string `json:"name"`
NumSta int `json:"num_sta"`
Radio string `json:"radio"`
RxBytes int `json:"rx_bytes"`
RxCrypts int `json:"rx_crypts"`
RxDropped int `json:"rx_dropped"`
RxErrors int `json:"rx_errors"`
RxFrags int `json:"rx_frags"`
RxNwids int `json:"rx_nwids"`
RxPackets int `json:"rx_packets"`
SiteID string `json:"site_id"`
State string `json:"state"`
T string `json:"t"`
TxBytes int `json:"tx_bytes"`
TxDropped int `json:"tx_dropped"`
TxErrors int `json:"tx_errors"`
TxPackets int `json:"tx_packets"`
TxPower int `json:"tx_power"`
TxRetries int `json:"tx_retries"`
Up bool `json:"up"`
Usage string `json:"usage"`
WlanconfID string `json:"wlanconf_id"`
}
type UplinkTable struct {
ApConnected bool `json:"ap_connected"`
ApMac string `json:"ap_mac"`
AuthTime int64 `json:"auth_time"`
Authorized bool `json:"authorized"`
Ccq int `json:"ccq"`
Channel json.Number `json:"channel"`
Configured bool `json:"configured"`
DhcpendTime int `json:"dhcpend_time"`
DhcpstartTime int `json:"dhcpstart_time"`
Hostname string `json:"hostname"`
Idletime int `json:"idletime"`
Is11A bool `json:"is_11a"`
Is11Ac bool `json:"is_11ac"`
Is11N bool `json:"is_11n"`
Mac string `json:"mac"`
Name string `json:"name"`
Noise int `json:"noise"`
Radio string `json:"radio"`
Rssi int `json:"rssi"`
RxBytes int64 `json:"rx_bytes"`
RxBytesR int `json:"rx_bytes-r"`
RxMcast int `json:"rx_mcast"`
RxPackets int `json:"rx_packets"`
RxRate int `json:"rx_rate"`
RxRetries int `json:"rx_retries"`
Signal int `json:"signal"`
State int `json:"state"`
StateHt bool `json:"state_ht"`
StatePwrmgt bool `json:"state_pwrmgt"`
TxBytes int64 `json:"tx_bytes"`
TxBytesR int `json:"tx_bytes-r"`
TxPackets int `json:"tx_packets"`
TxPower int `json:"tx_power"`
TxRate int `json:"tx_rate"`
TxRetries int `json:"tx_retries"`
Type string `json:"type"`
Up bool `json:"up"`
UplinkMac string `json:"uplink_mac"`
Uptime int `json:"uptime"`
VlanID int `json:"vlan_id"`
}
type VwireTable struct {
ApMac string `json:"ap_mac"`
Radio string `json:"radio"`
}
type LastUplink struct {
UplinkMac string `json:"uplink_mac"`
}