47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
// Lists all the events that happen in a meeting. Run with 'node events.js'.
|
|
// Uses the first meeting started after the application runs and will list all
|
|
// events, but only the first time they happen.
|
|
|
|
const redis = require("redis");
|
|
const config = require('../config.js');
|
|
var target_meeting = null;
|
|
var events_printed = [];
|
|
var subscriber = redis.createClient(process.env.REDIS_PORT || config.redis.port, process.env.REDIS_HOST || config.redis.host);
|
|
|
|
subscriber.on("psubscribe", function(channel, count) {
|
|
console.log("subscribed to " + channel);
|
|
});
|
|
|
|
subscriber.on("pmessage", function(pattern, channel, message) {
|
|
try {
|
|
message = JSON.parse(message);
|
|
if (message.hasOwnProperty('envelope')) {
|
|
|
|
var message_name = message.envelope.name;
|
|
|
|
if (!containsOrAdd(events_printed, message_name)) {
|
|
console.log("\n###", message_name, "\n");
|
|
console.log(message);
|
|
console.log("\n");
|
|
}
|
|
}
|
|
} catch(e) {
|
|
console.log("error processing the message", message, ":", e);
|
|
}
|
|
});
|
|
|
|
for (let k in config.hooks.channels) {
|
|
const channel = config.hooks.channels[k];
|
|
subscriber.psubscribe(channel);
|
|
}
|
|
|
|
var containsOrAdd = function(list, value) {
|
|
for (i = 0; i <= list.length-1; i++) {
|
|
if (list[i] === value) {
|
|
return true;
|
|
}
|
|
}
|
|
list.push(value);
|
|
return false;
|
|
}
|