Get messages from MQTT

catching ctrl+c
This commit is contained in:
Stephen Vanderwarker 2022-05-02 17:16:45 -04:00
parent 2462dce4f8
commit d62efc18bf
Signed by: stephen
GPG Key ID: EF429EF847868C14
1 changed files with 18 additions and 1 deletions

View File

@ -112,6 +112,16 @@ try {
// setup friends list
const friends = Object.keys(config.friends);
client.subscribe('phones/pixel2/media', function (err) {
if (!err) {
debug();
}
})
client.on('message', function (topic, payload) {
var nowPlaying = payload.toString()
console.log(nowPlaying)
xmpp.send(user_jid, nowPlaying)
})
xmpp.on('online', function (data, to) {
// once we're online, we'll send a message alerting xmpp admins
@ -526,6 +536,7 @@ try {
}
}, 2000);
debug();
xmpp.send(from, "Alright. Starting a new meeting: " + xmpp_muc_name + "@" + xmpp_muc_server + " and inviting friends");
}
}
@ -626,6 +637,12 @@ try {
}
});
process.on('SIGINT', function() {
console.log("\r\n SigInt receieved. Shutdown eminent!")
xmpp.send(user_jid, "SigInt receieved. Shutdown eminent!")
process.exit();
});
} catch (e) {
console.log("Please create a config.ini");
console.log("See https://wiki.vanderwarker.family/doku.php?id=code:vxmppb:install:start");