Changeset

8311:df8c82d285dc

mod_pubsub: Restore persistence with one archive per node
author Kim Alvefur <zash@zash.se>
date Mon, 09 Oct 2017 01:45:20 +0200
parents 8310:1759491b53db
children 8312:6fd36e73082b
files plugins/mod_pubsub/mod_pubsub.lua
diffstat 1 files changed, 1 insertions(+), 8 deletions(-) [+]
line wrap: on
line diff
--- a/plugins/mod_pubsub/mod_pubsub.lua	Mon Oct 09 01:02:17 2017 +0200
+++ b/plugins/mod_pubsub/mod_pubsub.lua	Mon Oct 09 01:45:20 2017 +0200
@@ -21,10 +21,6 @@
 module:add_identity("pubsub", "service", pubsub_disco_name);
 module:add_feature("http://jabber.org/protocol/pubsub");
 
---[[ TODO Disabled until config persistence is implemented
-local archive = module:open_store("pubsub", "archive");
---]]
-
 function handle_pubsub_iq(event)
 	local origin, stanza = event.origin, event.stanza;
 	local pubsub_tag = stanza.tags[1];
@@ -40,11 +36,10 @@
 	end
 end
 
---[[ TODO Disabled until config persistence is implemented
 local function simple_itemstore(config, node)
+	local archive = module:open_store("pubsub_"..node, "archive");
 	return lib_pubsub.simple_itemstore(archive, config, nil, node, expose_publisher);
 end
---]]
 
 function simple_broadcast(kind, node, jids, item, actor)
 	if item then
@@ -234,9 +229,7 @@
 		autocreate_on_publish = autocreate_on_publish;
 		autocreate_on_subscribe = autocreate_on_subscribe;
 
-		--[[ TODO Disabled until config persistence is implemented
 		itemstore = simple_itemstore;
-		--]]
 		broadcaster = simple_broadcast;
 		get_affiliation = get_affiliation;