The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Rocket.Chat/packages/rocketchat-lib/lib/promises.js

85 lines
2.6 KiB

import { Meteor } from 'meteor/meteor';
import { Random } from 'meteor/random';
import _ from 'underscore';
9 years ago
/*
* Callback hooks provide an easy way to add extra steps to common operations.
* @namespace RocketChat.promises
*/
RocketChat.promises = {};
/*
* Callback priorities
*/
RocketChat.promises.priority = {
HIGH: -1000,
MEDIUM: 0,
LOW: 1000,
9 years ago
};
const getHook = (hookName) => RocketChat.promises[hookName] || [];
9 years ago
/*
* Add a callback function to a hook
* @param {String} hook - The name of the hook
* @param {Function} callback - The callback function
*/
RocketChat.promises.add = function(hook, callback, p = RocketChat.promises.priority.MEDIUM, id) {
callback.priority = _.isNumber(p) ? p : RocketChat.promises.priority.MEDIUM;
9 years ago
callback.id = id || Random.id();
RocketChat.promises[hook] = getHook(hook);
if (RocketChat.promises[hook].find((cb) => cb.id === callback.id)) {
9 years ago
return;
}
RocketChat.promises[hook].push(callback);
RocketChat.promises[hook] = _.sortBy(RocketChat.promises[hook], (callback) => callback.priority || RocketChat.promises.priority.MEDIUM);
9 years ago
};
/*
* Remove a callback from a hook
* @param {string} hook - The name of the hook
* @param {string} id - The callback's id
*/
RocketChat.promises.remove = function(hook, id) {
RocketChat.promises[hook] = getHook(hook).filter((callback) => callback.id !== id);
9 years ago
};
/*
* Successively run all of a hook's callbacks on an item
* @param {String} hook - The name of the hook
* @param {Object} item - The post, comment, modifier, etc. on which to run the callbacks
* @param {Object} [constant] - An optional constant that will be passed along to each callback
* @returns {Object} Returns the item after it's been through all the callbacks for this hook
*/
RocketChat.promises.run = function(hook, item, constant) {
const callbacks = RocketChat.promises[hook];
9 years ago
if (callbacks == null || callbacks.length === 0) {
return Promise.resolve(item);
}
return callbacks.reduce((previousPromise, callback) => previousPromise.then((result) => callback(result, constant)), Promise.resolve(item));
9 years ago
};
/*
* Successively run all of a hook's callbacks on an item, in async mode (only works on server)
* @param {String} hook - The name of the hook
* @param {Object} item - The post, comment, modifier, etc. on which to run the callbacks
* @param {Object} [constant] - An optional constant that will be passed along to each callback
*/
RocketChat.promises.runAsync = function(hook, item, constant) {
const callbacks = RocketChat.promises[hook];
if (!Meteor.isServer || callbacks == null || callbacks.length === 0) {
return item;
}
Meteor.defer(() => callbacks.forEach((callback) => callback(item, constant)));
9 years ago
};