util.pubsub: Pass subscribers trough a filter callback 0.11
authorKim Alvefur <zash@zash.se>
Thu, 06 Jun 2019 18:13:46 +0200
branch0.11
changeset 10523 641e3b7a6a39
parent 10522 9f50489c2033
child 10524 225fade2ab4d
util.pubsub: Pass subscribers trough a filter callback
util/pubsub.lua
--- a/util/pubsub.lua	Thu Jun 06 17:37:15 2019 +0200
+++ b/util/pubsub.lua	Thu Jun 06 18:13:46 2019 +0200
@@ -6,6 +6,7 @@
 local default_config = {
 	itemstore = function (config, _) return cache.new(config["max_items"]) end;
 	broadcaster = function () end;
+	subscriber_filter = function (subs) return subs end;
 	itemcheck = function () return true; end;
 	get_affiliation = function () end;
 	normalize_jid = function (jid) return jid; end;
@@ -567,6 +568,7 @@
 end
 
 function service:broadcast(event, node, subscribers, item, actor, node_obj)
+	subscribers = self.config.subscriber_filter(subscribers, node, event);
 	return self.config.broadcaster(event, node, subscribers, item, actor, node_obj, self);
 end