mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_pubsub,mod_pep: Implement 'send_last_published_item' option #1436
Default left as 'never' in mod_pubsub to preserve the previous behavior. Unclear if this is desirable, but can always be changed later. In mod_pep this allows turning off the automatic resending of most recent item.
This commit is contained in:
parent
3e55057a85
commit
4b05d0f240
8 changed files with 226 additions and 0 deletions
|
@ -187,6 +187,7 @@ function get_pep_service(username)
|
|||
["max_items"] = 1;
|
||||
["persist_items"] = true;
|
||||
["access_model"] = "presence";
|
||||
["send_last_published_item"] = "on_sub_and_presence";
|
||||
};
|
||||
|
||||
autocreate_on_publish = true;
|
||||
|
@ -260,6 +261,8 @@ local function get_caps_hash_from_presence(stanza, current)
|
|||
end
|
||||
|
||||
local function resend_last_item(jid, node, service)
|
||||
local ok, config = service:get_node_config(node, true);
|
||||
if ok and config.send_last_published_item ~= "on_sub_and_presence" then return end
|
||||
local ok, id, item = service:get_last_item(node, jid);
|
||||
if not (ok and id) then return; end
|
||||
service.config.broadcaster("items", node, { [jid] = true }, item);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue