notifications.js 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. 'use strict';
  2. const crypto = require('crypto');
  3. const redis = require('redis');
  4. const logger = require('./logger');
  5. let pub = null;
  6. let sub = null;
  7. const subscriptions = [];
  8. const lib = {
  9. /**
  10. * Initializes the notifications module
  11. *
  12. * @param {String} url - the url of the redis server
  13. * @param {Function} cb - gets called once we're done initializing
  14. */
  15. init: (url, cb) => {
  16. pub = redis.createClient({ url: url });
  17. sub = redis.createClient({ url: url });
  18. sub.on('error', (err) => {
  19. console.error(err);
  20. process.exit();
  21. });
  22. sub.on('pmessage', (pattern, channel, expiredKey) => {
  23. logger.stationIssue(`PMESSAGE - Pattern: ${pattern}; Channel: ${channel}; ExpiredKey: ${expiredKey}`);
  24. subscriptions.forEach((sub) => {
  25. if (sub.name !== expiredKey) return;
  26. sub.cb();
  27. });
  28. });
  29. sub.psubscribe('__keyevent@0__:expired');
  30. cb();
  31. },
  32. /**
  33. * Schedules a notification to be dispatched in a specific amount of milliseconds,
  34. * notifications are unique by name, and the first one is always kept, as in
  35. * attempting to schedule a notification that already exists won't do anything
  36. *
  37. * @param {String} name - the name of the notification we want to schedule
  38. * @param {Integer} time - how long in milliseconds until the notification should be fired
  39. * @param {Function} cb - gets called when the notification has been scheduled
  40. */
  41. schedule: (name, time, cb, station) => {
  42. if (!cb) cb = ()=>{};
  43. time = Math.round(time);
  44. logger.stationIssue(`SCHEDULE - Time: ${time}; Name: ${name}; Key: ${crypto.createHash('md5').update(`_notification:${name}_`).digest('hex')}; StationId: ${station._id}; StationName: ${station.name}`);
  45. pub.set(crypto.createHash('md5').update(`_notification:${name}_`).digest('hex'), '', 'PX', time, 'NX', cb);
  46. },
  47. /**
  48. * Subscribes a callback function to be called when a notification gets called
  49. *
  50. * @param {String} name - the name of the notification we want to subscribe to
  51. * @param {Function} cb - gets called when the subscribed notification gets called
  52. * @param {Boolean} unique - only subscribe if another subscription with the same name doesn't already exist
  53. * @return {Object} - the subscription object
  54. */
  55. subscribe: (name, cb, unique = false, station) => {
  56. if (unique && subscriptions.find((subscription) => subscription.originalName == name)) return;
  57. logger.stationIssue(`SUBSCRIBE - Name: ${name}; Key: ${crypto.createHash('md5').update(`_notification:${name}_`).digest('hex')}, StationId: ${station._id}; StationName: ${station.name}`);
  58. let subscription = { originalName: name, name: crypto.createHash('md5').update(`_notification:${name}_`).digest('hex'), cb };
  59. subscriptions.push(subscription);
  60. return subscription;
  61. },
  62. /**
  63. * Remove a notification subscription
  64. *
  65. * @param {Object} subscription - the subscription object returned by {@link subscribe}
  66. */
  67. remove: (subscription) => {
  68. let index = subscriptions.indexOf(subscription);
  69. if (index) subscriptions.splice(index, 1);
  70. },
  71. unschedule: (name) => {
  72. logger.stationIssue(`UNSCHEDULE - Name: ${name}; Key: ${crypto.createHash('md5').update(`_notification:${name}_`).digest('hex')}`);
  73. pub.del(crypto.createHash('md5').update(`_notification:${name}_`).digest('hex'));
  74. },
  75. };
  76. module.exports = lib;