Merge stephen/vxmppb #25

Merged
stephen merged 22 commits from stephen/vxmppb:main into main 2022-06-02 20:52:32 -04:00
1 changed files with 18 additions and 1 deletions
Showing only changes of commit d62efc18bf - Show all commits

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");