mirror of
https://github.com/mtan93/SmartThingsPublic.git
synced 2026-03-26 13:24:09 +00:00
Compare commits
1 Commits
MSA-1358-1
...
MSA-1370-1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
9b285ec93b |
@@ -824,17 +824,51 @@ def deviceHandler(evt) {
|
|||||||
|
|
||||||
def sendToHarmony(evt, String callbackUrl) {
|
def sendToHarmony(evt, String callbackUrl) {
|
||||||
def callback = new URI(callbackUrl)
|
def callback = new URI(callbackUrl)
|
||||||
def host = callback.port != -1 ? "${callback.host}:${callback.port}" : callback.host
|
if(isIP(callback.host)){
|
||||||
def path = callback.query ? "${callback.path}?${callback.query}".toString() : callback.path
|
def host = callback.port != -1 ? "${callback.host}:${callback.port}" : callback.host
|
||||||
sendHubCommand(new physicalgraph.device.HubAction(
|
def path = callback.query ? "${callback.path}?${callback.query}".toString() : callback.path
|
||||||
method: "POST",
|
sendHubCommand(new physicalgraph.device.HubAction(
|
||||||
path: path,
|
method: "POST",
|
||||||
headers: [
|
path: path,
|
||||||
"Host": host,
|
headers: [
|
||||||
"Content-Type": "application/json"
|
"Host": host,
|
||||||
],
|
"Content-Type": "application/json"
|
||||||
body: [evt: [deviceId: evt.deviceId, name: evt.name, value: evt.value]]
|
],
|
||||||
))
|
body: [evt: [deviceId: evt.deviceId, name: evt.name, value: evt.value]]
|
||||||
|
))
|
||||||
|
} else {
|
||||||
|
def params = [
|
||||||
|
uri: callbackUrl,
|
||||||
|
body: [evt: [deviceId: evt.deviceId, name: evt.name, value: evt.value]]
|
||||||
|
]
|
||||||
|
try {
|
||||||
|
log.debug "Sending data to Harmony Cloud: $params"
|
||||||
|
httpPostJson(params) { resp ->
|
||||||
|
log.debug "Harmony Cloud - Response: ${resp.status}"
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
log.error "Harmony Cloud - Something went wrong: $e"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isIP(String str) {
|
||||||
|
try {
|
||||||
|
String[] parts = str.split("\\.");
|
||||||
|
if (parts.length != 4) return false;
|
||||||
|
for (int i = 0; i < 4; ++i) {
|
||||||
|
int p
|
||||||
|
try {
|
||||||
|
p = Integer.parseInt(parts[i]);
|
||||||
|
} catch (Exception e) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
if (p > 255 || p < 0) return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
} catch (Exception e) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
def listHubs() {
|
def listHubs() {
|
||||||
|
|||||||
Reference in New Issue
Block a user