forked from vxmppb/vxmppb
Get messages from MQTT
catching ctrl+c
This commit is contained in:
parent
2462dce4f8
commit
d62efc18bf
17
index.js
17
index.js
|
@ -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");
|
||||
|
|
Reference in New Issue
Block a user