mirror of
https://github.com/mtan93/SmartThingsPublic.git
synced 2026-03-16 05:10:50 +00:00
88 lines
2.6 KiB
Groovy
88 lines
2.6 KiB
Groovy
/**
|
|
* Copyright 2015 SmartThings
|
|
*
|
|
* 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.
|
|
*
|
|
* SmartClockChatSender
|
|
*
|
|
* Author: Steve Vlaminck
|
|
*
|
|
* Date: 2014-02-03
|
|
*/
|
|
|
|
definition(
|
|
name: "SmartBlock Chat Sender",
|
|
namespace: "vlaminck/Minecraft",
|
|
author: "SmartThings",
|
|
description: "Send chat messages into Minecraft via the SmartBlock mod",
|
|
iconUrl: "https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience.png",
|
|
iconX2Url: "https://s3.amazonaws.com/smartapp-icons/Convenience/Cat-Convenience%402x.png"
|
|
)
|
|
|
|
preferences {
|
|
page(name: "chatPage", title: "Send Notifications Into Minecraft", install: true, uninstall: true) {
|
|
section {
|
|
input(name: "chatsEnabled", type: "bool", title: "Enable This Notification?", defaultValue: "true")
|
|
input(name: "modes", type: "mode", title: "Notify SmartBlock users when the mode changes to:", description: "(optional)", multiple: true, required: false)
|
|
input(name: "username", type: "string", title: "Only send to this username", required: false, description: "(optional)")
|
|
input(name: "customMessage", type: "string", title: "Custom message?", required: false, description: "(optional)")
|
|
}
|
|
section(hidden: true, hideable: true, title: "Other Options") {
|
|
label(title: "Label this Notification", required: false)
|
|
}
|
|
}
|
|
}
|
|
|
|
def installed() {
|
|
log.debug "Installed with settings: ${settings}"
|
|
|
|
initialize()
|
|
}
|
|
|
|
def updated() {
|
|
log.debug "Updated with settings: ${settings}"
|
|
|
|
unsubscribe()
|
|
initialize()
|
|
}
|
|
|
|
def initialize() {
|
|
subscribe(location, modeChangeHandler)
|
|
}
|
|
|
|
def modeChangeHandler(evt) {
|
|
def newMode = evt.value
|
|
log.debug "evt: ${newMode}"
|
|
if (modes && modes.contains(newMode))
|
|
{
|
|
def message = customMessage ?: "SmartThings mode has changed to: \"${newMode}\""
|
|
chatMessageToMC(message)
|
|
}
|
|
}
|
|
|
|
def chatMessageToMC(message) {
|
|
|
|
def parent = app.getParent()
|
|
|
|
def url = "${parent.getServerURL()}/chat?message=${message.encodeAsURL()}"
|
|
|
|
if (username)
|
|
{
|
|
url += "&username=${username.encodeAsURL()}"
|
|
}
|
|
log.debug "POST to ${url}"
|
|
|
|
httpPost(url, "foo=bar") { response ->
|
|
content = response.data
|
|
log.debug "response: ${content}"
|
|
}
|
|
|
|
}
|