-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathNslookup.groovy
55 lines (41 loc) · 1.28 KB
/
Nslookup.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
/*
* Nslookup
*/
import groovy.json.JsonSlurper
@SuppressWarnings('unused')
static String version() {return "0.0.1"}
metadata {
definition (
name: "Nslookup",
namespace: "thebearmay",
author: "Jean P. May, Jr.",
importUrl:"https://raw.githubusercontent.com/thebearmay/hubitat/main/nslookup.groovy"
) {
capability "Actuator"
attribute "lookupResp","STRING"
attribute "lookupRespList","STRING"
command "nslookup",[[name:"dnsName",type:"STRING",description:"DNS Lookup Name"],[name:"dnsServer",type:"STRING",description:"DNS Server (default: 8.8.8.8)"]]
}
}
preferences {
}
@SuppressWarnings('unused')
def installed() {
}
void updateAttr(String aKey, aValue, String aUnit = ""){
sendEvent(name:aKey, value:aValue, unit:aUnit)
}
void nslookup(dnsName, dnsServer="8.8.8.8") {
Map params = [
uri: "https://$dnsServer/resolve?name=$dnsName&type=A",
contentType: "text/plain",
timeout: 10
]
asynchttpGet("nsCallback", params)
}
String nsCallback(resp, data) {
def jSlurp = new JsonSlurper()
Map ipData = (Map)jSlurp.parseText((String)resp.data)
updateAttr("lookupResp", ipData.Answer.data[0])
updateAttr("lookupRespList", ipData.Answer.data)
}