aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_pep_plus.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-10-12 01:37:35 +0200
committerKim Alvefur <zash@zash.se>2017-10-12 01:37:35 +0200
commitbfd1f93fbf82b038852ee1a21acac1e125a557d4 (patch)
tree2d165ff8fab8a0bc6bfc9be07e48eb457653ac9b /plugins/mod_pep_plus.lua
parent5d5432daf78f1fabb5ad9f54a1e096f092c8d81e (diff)
downloadprosody-bfd1f93fbf82b038852ee1a21acac1e125a557d4.tar.gz
prosody-bfd1f93fbf82b038852ee1a21acac1e125a557d4.zip
mod_pep_plus: Make node persistence configurable via pubsub#persist_items
Diffstat (limited to 'plugins/mod_pep_plus.lua')
-rw-r--r--plugins/mod_pep_plus.lua16
1 files changed, 12 insertions, 4 deletions
diff --git a/plugins/mod_pep_plus.lua b/plugins/mod_pep_plus.lua
index ce5fa231..db42fbc9 100644
--- a/plugins/mod_pep_plus.lua
+++ b/plugins/mod_pep_plus.lua
@@ -6,6 +6,7 @@ local set_new = require "util.set".new;
local st = require "util.stanza";
local calculate_hash = require "util.caps".calculate_hash;
local is_contact_subscribed = require "core.rostermanager".is_contact_subscribed;
+local cache = require "util.cache";
local xmlns_pubsub = "http://jabber.org/protocol/pubsub";
local xmlns_pubsub_event = "http://jabber.org/protocol/pubsub#event";
@@ -42,10 +43,16 @@ end
local function simple_itemstore(username)
return function (config, node)
- module:log("debug", "new simple_itemstore(%q, %q)", username, node);
- known_nodes_map:set(username, node, true);
- local archive = module:open_store("pep_"..node, "archive");
- return lib_pubsub.archive_itemstore(archive, config, username, node, false);
+ if config["pubsub#persist_items"] then
+ module:log("debug", "Creating new persistent item store for user %s, node %q", username, node);
+ known_nodes_map:set(username, node, true);
+ local archive = module:open_store("pep_"..node, "archive");
+ return lib_pubsub.archive_itemstore(archive, config, username, node, false);
+ else
+ module:log("debug", "Creating new ephemeral item store for user %s, node %q", username, node);
+ known_nodes_map:set(username, node, nil);
+ return cache.new(tonumber(config["pubsub#max_items"]));
+ end
end
end
@@ -173,6 +180,7 @@ function get_pep_service(username)
node_defaults = {
["pubsub#max_items"] = "1";
+ ["pubsub#persist_items"] = true;
};
autocreate_on_publish = true;