-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHTTP-PingSensor.groovy
144 lines (126 loc) · 3.87 KB
/
HTTP-PingSensor.groovy
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
/**
* Copyright 2015 Nathan Jacobson
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License
* for the specific language governing permissions and limitations under the License.
*
*/
metadata {
definition (name: "Ping Sensor", namespace: "castlecole", author: "Nathan Jacobson") {
capability "Presence Sensor"
capability "Sensor"
capability "Polling"
}
simulator {
status "present": "presence: 1"
status "not present": "presence: 0"
}
tiles {
standardTile("presence", "device.presence", width: 2, height: 2, canChangeBackground: true) {
state("present", labelIcon:"st.presence.tile.mobile-present", backgroundColor:"#53a7c0")
state("not present", labelIcon:"st.presence.tile.mobile-not-present", backgroundColor:"#ffffff")
}
main "presence"
details "presence"
}
preferences {
section("Device Settings:") {
input "host", "string", title:"Device to Ping", description: "Host or IP Address", required: true, displayDuringSetup: true
}
}
}
def installed() {
log.info('installed()')
state.presence = false
}
def updated() {
log.info('updated()')
state.presence = false
}
def poll() {
log.info('poll()')
if (!settings.host) settings.host = '192.168.11.100'
log.debug "Pinging host ${settings.host}..."
def proc = "ping -c 3 ${host}".execute()
proc.waitFor()
newState = (proc.exitValue() == 0)
if (state.presence != newState) {
state.presence = newState
if (newState) {
log.debug "Host was found (false => true)"
parse("presence: 1")
} else {
log.debug "Host was lost (true => false)"
parse("presence: 0")
}
}
}
def parse(String description) {
log.info('parse()')
def value = parseValue(description)
def linkText = getLinkText(device)
def descriptionText = parseDescriptionText(linkText, value, description)
def handlerName = getState(value)
def isStateChange = isStateChange(device, name, value)
def results = [
name: "presence",
value: value,
unit: null,
linkText: linkText,
descriptionText: descriptionText,
handlerName: handlerName,
isStateChange: isStateChange,
displayed: displayed(description, isStateChange)
]
log.debug "Parse returned $results.descriptionText"
return results
}
private String parseValue(String description) {
switch(description) {
case "presence: 1": return "present"
case "presence: 0": return "not present"
default: return description
}
}
private parseDescriptionText(String linkText, String value, String description) {
switch(value) {
case "present": return "$linkText has arrived"
case "not present": return "$linkText has left"
default: return value
}
}
private getState(String value) {
switch(value) {
case "present": return "arrived"
case "not present": return "left"
default: return value
}
}
// table#wireless_table tbody tr
// First <td> is MAC (eg, xx:xx:xx:xx:6D:59)
// Third <td> is Uptime String (maybe save to state.uptime)
// For now ask for last 4 of MAC, in the future take IP and lookup MAC
def request(destIp, destPort, body) {
def hosthex = convertIPtoHex(destIp)
def porthex = convertPortToHex(destPort)
device.deviceNetworkId = "$hosthex:$porthex"
def hubAction = new physicalgraph.device.HubAction(
'method': 'GET',
'path': "/",
'body': body,
'headers': [ HOST: "$destIp:$destPort" ]
)
hubAction
}
private String convertIPtoHex(ipAddress) {
ipAddress.tokenize( '.' ).collect { String.format( '%02X', it.toInteger() ) }.join()
}
private String convertPortToHex(port) {
port.toString().format( '%04X', port.toInteger() )
}