diff --git a/index.js b/index.js index c5aa263..35fcd3c 100755 --- a/index.js +++ b/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 @@ -482,7 +492,7 @@ try { for (const key in config.friends) { // send xmpp message to friends alerting of new room xmpp.send(key, "Meeting started"); - // authorize users + // authorize users const addMember = { method: 'POST', url: xmpp_api_url + 'set_room_affiliation', @@ -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");