-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathGetDevicesStatus.lua
79 lines (69 loc) · 2.74 KB
/
GetDevicesStatus.lua
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
local Alertidx = 000 -- Change to your idx for the Virtual Alert sensor you have created for this script
local hostWebUI = "127.0.0.1" -- Change to your local ip (127.0.0.1 most of the time)
local portWebUI = "9440" -- Change WebUI port
local protocol = 'http' -- http or https
local user = '' -- '' if no user/password
local password = '' -- '' if no user/password
-- no changes needed below this section (except timer if you want to change frequency)
local apiPath = '/rest-z4d/1/zdevice-name'
local devicesLive=0
local devicesLost=0
local devicesUndefined=0
return {
logging = {
level = domoticz.LOG_ERROR,
marker = '(Z4D-Status)'
},
on = {
timer = {'every 15 minutes'},
httpResponses = {'Z4D-Status'} -- must match with the callback passed to the openURL command
},
execute = function(domoticz, item)
if (item.isTimer) then
domoticz.devices(Alertidx).updateAlertSensor(domoticz.ALERTLEVEL_GREY, "Requesting ...")
if (user == '') then
fullURL = protocol .. '://' .. hostWebUI .. ':' .. portWebUI .. apiPath
else
fullURL = protocol .. '://' .. user .. ':' .. password .. '@' .. hostWebUI .. ':' .. portWebUI .. apiPath
end
domoticz.openURL({
url = fullURL,
method = 'GET',
callback = 'Z4D-Status' -- see httpResponses above.
})
end
if (item.isHTTPResponse) then
if (item.ok) then
if (item.isJSON) then
local result_table = item.json
local tc = #result_table
for i = 1, tc do
if result_table[i].Health == "Live" then
devicesLive=devicesLive+1
elseif result_table[i].Health == "Not Reachable" then
devicesLost=devicesLost+1
else
devicesUndefined=devicesUndefined+1
end
end
if devicesLost == 0 and devicesUndefined==0 then
level = domoticz.ALERTLEVEL_GREEN -- domoticz.ALERTLEVEL_GREY, ALERTLEVEL_GREEN, ALERTLEVEL_YELLOW, ALERTLEVEL_ORANGE, ALERTLEVEL_RED
AlertText = devicesLive
elseif devicesLost==0 then
level = domoticz.ALERTLEVEL_ORANGE
AlertText = devicesUndefined
else
level = domoticz.ALERTLEVEL_RED
AlertText = devicesLost
end
AlertText="Live: " .. devicesLive .. "\nUnknown: " .. devicesUndefined .. "\nLost: " ..devicesLost
-- update device in Domoticz
domoticz.devices(Alertidx).updateAlertSensor(level, AlertText)
end
else
domoticz.log('There was a problem handling the request' .. url, domoticz.LOG_ERROR)
domoticz.devices(Alertidx).updateAlertSensor(domoticz.ALERTLEVEL_RED, "Unable to retrieve devices status ... check plugin and settings")
end
end
end
}