Changeset

8218:2c75a5ba58fc

mod_pubsub: Pass 'user' to simple_itemstore
author Kim Alvefur <zash@zash.se>
date Wed, 26 Apr 2017 12:09:58 +0200
parents 8217:5f4e0d67b82a
children 8219:2e68ae095645
files plugins/mod_pep_plus.lua plugins/mod_pubsub/mod_pubsub.lua plugins/mod_pubsub/pubsub.lib.lua
diffstat 3 files changed, 7 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_pep_plus.lua	Wed Apr 26 12:06:41 2017 +0200
+++ b/plugins/mod_pep_plus.lua	Wed Apr 26 12:09:58 2017 +0200
@@ -36,8 +36,10 @@
 	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 @@
 		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
--- a/plugins/mod_pubsub/mod_pubsub.lua	Wed Apr 26 12:06:41 2017 +0200
+++ b/plugins/mod_pubsub/mod_pubsub.lua	Wed Apr 26 12:09:58 2017 +0200
@@ -39,7 +39,7 @@
 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)
--- a/plugins/mod_pubsub/pubsub.lib.lua	Wed Apr 26 12:06:41 2017 +0200
+++ b/plugins/mod_pubsub/pubsub.lib.lua	Wed Apr 26 12:09:58 2017 +0200
@@ -326,7 +326,7 @@
 	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()