diff options
author | Kim Alvefur <zash@zash.se> | 2019-06-06 18:13:46 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-06-06 18:13:46 +0200 |
commit | b9a80e5643ba79038c4e29525f837ce5a368e61d (patch) | |
tree | 2282024f1d3297cd10023a935a79a8c7ad22232d /util | |
parent | d615cd34845b4b0de21ec9659291b0ec0fb30efe (diff) | |
download | prosody-b9a80e5643ba79038c4e29525f837ce5a368e61d.tar.gz prosody-b9a80e5643ba79038c4e29525f837ce5a368e61d.zip |
util.pubsub: Pass subscribers trough a filter callback
Diffstat (limited to 'util')
-rw-r--r-- | util/pubsub.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/pubsub.lua b/util/pubsub.lua index 24f1f41d..1674b9a7 100644 --- a/util/pubsub.lua +++ b/util/pubsub.lua @@ -6,6 +6,7 @@ local service_mt = {}; 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 @@ function service:publish(node, actor, id, item, requested_config) --> ok, err 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 |