aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-04-26 12:09:58 +0200
committerKim Alvefur <zash@zash.se>2017-04-26 12:09:58 +0200
commitd00c4eecc2c0fe02b1fbff12a472a650d602c4de (patch)
tree703466d8e1092c6fed347639d6c96b1e896f692c /plugins
parent3512924a628064a09bfa8ba5e0beed3c89601f5b (diff)
downloadprosody-d00c4eecc2c0fe02b1fbff12a472a650d602c4de.tar.gz
prosody-d00c4eecc2c0fe02b1fbff12a472a650d602c4de.zip
mod_pubsub: Pass 'user' to simple_itemstore
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_pep_plus.lua8
-rw-r--r--plugins/mod_pubsub/mod_pubsub.lua2
-rw-r--r--plugins/mod_pubsub/pubsub.lib.lua2
3 files changed, 7 insertions, 5 deletions
diff --git a/plugins/mod_pep_plus.lua b/plugins/mod_pep_plus.lua
index 49def4e3..7872c03f 100644
--- a/plugins/mod_pep_plus.lua
+++ b/plugins/mod_pep_plus.lua
@@ -36,8 +36,10 @@ local function subscription_presence(user_bare, recipient)
return is_contact_subscribed(username, host, recipient_bare);
end
-local function simple_itemstore(config, node)
- return lib_pubsub.simple_itemstore(archive, config, node, false);
+local function simple_itemstore(user)
+ return function (config, node)
+ return lib_pubsub.simple_itemstore(archive, config, user, node, false);
+ end
end
local function get_broadcaster(name)
@@ -166,7 +168,7 @@ function get_pep_service(name)
autocreate_on_publish = true;
autocreate_on_subscribe = true;
- itemstore = simple_itemstore;
+ itemstore = simple_itemstore(name);
broadcaster = get_broadcaster(name);
get_affiliation = function (jid)
if jid_bare(jid) == name then
diff --git a/plugins/mod_pubsub/mod_pubsub.lua b/plugins/mod_pubsub/mod_pubsub.lua
index 8bbebcf9..649ba89d 100644
--- a/plugins/mod_pubsub/mod_pubsub.lua
+++ b/plugins/mod_pubsub/mod_pubsub.lua
@@ -39,7 +39,7 @@ function handle_pubsub_iq(event)
end
local function simple_itemstore(config, node)
- return lib_pubsub.simple_itemstore(archive, config, node, expose_publisher);
+ return lib_pubsub.simple_itemstore(archive, config, nil, node, expose_publisher);
end
function simple_broadcast(kind, node, jids, item, actor)
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua
index 810f608a..d298d6ac 100644
--- a/plugins/mod_pubsub/pubsub.lib.lua
+++ b/plugins/mod_pubsub/pubsub.lib.lua
@@ -326,7 +326,7 @@ local function create_encapsulating_item(id, payload, publisher, expose_publishe
return item;
end
-local function simple_itemstore(archive, config, node, expose_publisher)
+local function simple_itemstore(archive, config, user, node, expose_publisher)
module:log("debug", "Creation of itemstore for node %s with config %s", node, config);
local get_set = {};
function get_set:items()