| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 | 
							- 'use strict';
 
- const crypto = require('crypto');
 
- const redis = require('redis');
 
- const logger = require('./logger');
 
- const subscriptions = [];
 
- let initialized = false;
 
- let lockdown = false;
 
- let errorCb;
 
- const lib = {
 
- 	pub: null,
 
- 	sub: null,
 
- 	errorCb: null,
 
- 	/**
 
- 	 * Initializes the notifications module
 
- 	 *
 
- 	 * @param {String} url - the url of the redis server
 
- 	 * @param {String} password - the password of the redis server
 
- 	 * @param {Function} cb - gets called once we're done initializing
 
- 	 */
 
- 	init: (url, password, errorCb, cb) => {
 
- 		lib.errorCb = errorCb;
 
- 		lib.pub = redis.createClient({ url, password });
 
- 		lib.sub = redis.createClient({ url, password });
 
- 		lib.sub.on('error', (err) => {
 
- 			errorCb('Cache connection error.', err, 'Notifications');
 
- 		});
 
- 		lib.sub.on('pmessage', (pattern, channel, expiredKey) => {
 
- 			logger.stationIssue(`PMESSAGE - Pattern: ${pattern}; Channel: ${channel}; ExpiredKey: ${expiredKey}`);
 
- 			subscriptions.forEach((sub) => {
 
- 				if (sub.name !== expiredKey) return;
 
- 				sub.cb();
 
- 			});
 
- 		});
 
- 		lib.sub.psubscribe('__keyevent@0__:expired');
 
- 		initialized = true;
 
- 		if (lockdown) return this._lockdown();
 
- 		cb();
 
- 	},
 
- 	/**
 
- 	 * Schedules a notification to be dispatched in a specific amount of milliseconds,
 
- 	 * notifications are unique by name, and the first one is always kept, as in
 
- 	 * attempting to schedule a notification that already exists won't do anything
 
- 	 *
 
- 	 * @param {String} name - the name of the notification we want to schedule
 
- 	 * @param {Integer} time - how long in milliseconds until the notification should be fired
 
- 	 * @param {Function} cb - gets called when the notification has been scheduled
 
- 	 */
 
- 	schedule: (name, time, cb, station) => {
 
- 		if (lockdown) return;
 
- 		if (!cb) cb = ()=>{};
 
- 		time = Math.round(time);
 
- 		logger.stationIssue(`SCHEDULE - Time: ${time}; Name: ${name}; Key: ${crypto.createHash('md5').update(`_notification:${name}_`).digest('hex')}; StationId: ${station._id}; StationName: ${station.name}`);
 
- 		lib.pub.set(crypto.createHash('md5').update(`_notification:${name}_`).digest('hex'), '', 'PX', time, 'NX', cb);
 
- 	},
 
- 	/**
 
- 	 * Subscribes a callback function to be called when a notification gets called
 
- 	 *
 
- 	 * @param {String} name - the name of the notification we want to subscribe to
 
- 	 * @param {Function} cb - gets called when the subscribed notification gets called
 
- 	 * @param {Boolean} unique - only subscribe if another subscription with the same name doesn't already exist
 
- 	 * @return {Object} - the subscription object
 
- 	 */
 
- 	subscribe: (name, cb, unique = false, station) => {
 
- 		if (lockdown) return;
 
- 		logger.stationIssue(`SUBSCRIBE - Name: ${name}; Key: ${crypto.createHash('md5').update(`_notification:${name}_`).digest('hex')}, StationId: ${station._id}; StationName: ${station.name}; Unique: ${unique}; SubscriptionExists: ${!!subscriptions.find((subscription) => subscription.originalName == name)};`);
 
- 		if (unique && !!subscriptions.find((subscription) => subscription.originalName == name)) return;
 
- 		let subscription = { originalName: name, name: crypto.createHash('md5').update(`_notification:${name}_`).digest('hex'), cb };
 
- 		subscriptions.push(subscription);
 
- 		return subscription;
 
- 	},
 
- 	/**
 
- 	 * Remove a notification subscription
 
- 	 *
 
- 	 * @param {Object} subscription - the subscription object returned by {@link subscribe}
 
- 	 */
 
- 	remove: (subscription) => {
 
- 		if (lockdown) return;
 
- 		let index = subscriptions.indexOf(subscription);
 
- 		if (index) subscriptions.splice(index, 1);
 
- 	},
 
- 	unschedule: (name) => {
 
- 		if (lockdown) return;
 
- 		logger.stationIssue(`UNSCHEDULE - Name: ${name}; Key: ${crypto.createHash('md5').update(`_notification:${name}_`).digest('hex')}`);
 
- 		lib.pub.del(crypto.createHash('md5').update(`_notification:${name}_`).digest('hex'));
 
- 	},
 
- 	_lockdown: () => {
 
- 		lib.pub.quit();
 
- 		lib.sub.quit();
 
- 		lockdown = true;
 
- 	}
 
- };
 
- module.exports = lib;
 
 
  |