Skip to content

Instantly share code, notes, and snippets.

@kharmabum
Last active January 2, 2017 02:36
Show Gist options
  • Save kharmabum/684c09568f413662de235c99d050c8c4 to your computer and use it in GitHub Desktop.
Save kharmabum/684c09568f413662de235c99d050c8c4 to your computer and use it in GitHub Desktop.
const commandRegExp = new RegExp('^([\\w]+)(\\s|$)')
const {fetch, Feature} = require('other')
const feature = new Feature({
name: 'juanxa-wemo',
version: '0.0.0-beta.af',
dependencies: {
otherjs: '^3.2.x',
},
})
feature.isUserAgentRequired = true
feature.userAgent.on("SET_STAGED_MESSAGE", (event) => {
const {message, tag} = event
const match = commandRegExp.exec(message.text)
if (!match || match[1] != "wemo") { return }
feature.userAgent.emit("SET_CHAT_COMPLETE_RESULTS", {replyTag: tag, layout: "row", results: [{text: "⚡️"}]})
})
feature.userAgent.on("ACTIVATE_CHAT_COMPLETE_RESULT", (event) => {
const {action, message, result, tag} = event
feature.userAgent.emit("UPDATE_STAGED_MESSAGE", {replyTag: tag, message: {text: ""}})
feature.userAgent.emit("SET_CHAT_COMPLETE_RESULTS", {replyTag: tag, layout: "row", results: []})
fetch("https://maker.ifttt.com/trigger/wemo_1/with/key/bfHiq3MurvmHTv3dNVkZS2")
console.log("foo")
})
module.exports = feature
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment