notifications.js 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. time = Math.round(time);
  43. logger.stationIssue(`SCHEDULE - Time: ${time}; Name: ${name}; Key: ${crypto.createHash('md5').update(`_notification:${name}_`).digest('hex')}; StationId: ${station._id}; StationName: ${station.name}`);
  44. pub.set(crypto.createHash('md5').update(`_notification:${name}_`).digest('hex'), '', 'PX', time, 'NX', cb);
  45. },
  46. /**
  47. * Subscribes a callback function to be called when a notification gets called
  48. *
  49. * @param {String} name - the name of the notification we want to subscribe to
  50. * @param {Function} cb - gets called when the subscribed notification gets called
  51. * @param {Boolean} unique - only subscribe if another subscription with the same name doesn't already exist
  52. * @return {Object} - the subscription object
  53. */
  54. subscribe: (name, cb, unique = false, station) => {
  55. if (unique && subscriptions.find((subscription) => subscription.originalName == name)) return;
  56. logger.stationIssue(`SUBSCRIBE - Name: ${name}; Key: ${crypto.createHash('md5').update(`_notification:${name}_`).digest('hex')}, StationId: ${station._id}; StationName: ${station.name}`);
  57. let subscription = { originalName: name, name: crypto.createHash('md5').update(`_notification:${name}_`).digest('hex'), cb };
  58. subscriptions.push(subscription);
  59. return subscription;
  60. },
  61. /**
  62. * Remove a notification subscription
  63. *
  64. * @param {Object} subscription - the subscription object returned by {@link subscribe}
  65. */
  66. remove: (subscription) => {
  67. let index = subscriptions.indexOf(subscription);
  68. if (index) subscriptions.splice(index, 1);
  69. },
  70. unschedule: (name) => {
  71. logger.stationIssue(`UNSCHEDULE - Name: ${name}; Key: ${crypto.createHash('md5').update(`_notification:${name}_`).digest('hex')}`);
  72. pub.del(crypto.createHash('md5').update(`_notification:${name}_`).digest('hex'));
  73. },
  74. };
  75. module.exports = lib;