diff options
author | Kim Alvefur <zash@zash.se> | 2021-01-12 19:00:44 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-01-12 19:00:44 +0100 |
commit | 2d03793897dcdb9f3b6463cdbfb7b35bb97e7a2c (patch) | |
tree | 1a3b1422e9f3c1e98bed6811725f7ae33d5b1727 /plugins/mod_mam | |
parent | 3c919b0ad4b2d2aad3ff5a32487f0c131d70b1b8 (diff) | |
download | prosody-2d03793897dcdb9f3b6463cdbfb7b35bb97e7a2c.tar.gz prosody-2d03793897dcdb9f3b6463cdbfb7b35bb97e7a2c.zip |
mod_mam: Allow querying by set of IDs
Diffstat (limited to 'plugins/mod_mam')
-rw-r--r-- | plugins/mod_mam/mod_mam.lua | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/plugins/mod_mam/mod_mam.lua b/plugins/mod_mam/mod_mam.lua index 2e38cf8a..38ef35f6 100644 --- a/plugins/mod_mam/mod_mam.lua +++ b/plugins/mod_mam/mod_mam.lua @@ -88,6 +88,11 @@ if archive.caps and archive.caps.full_id_range then table.insert(query_form, { name = "after-id"; type = "text-single"; }); end +if archive.caps and archive.caps.ids then + table.insert(query_form, { name = "ids"; type = "list-multi"; }); +end + + -- Serve form module:hook("iq-get/self/"..xmlns_mam..":query", function(event) local origin, stanza = event.origin, event.stanza; @@ -107,7 +112,7 @@ module:hook("iq-set/self/"..xmlns_mam..":query", function(event) get_prefs(origin.username, true); -- Search query parameters - local qwith, qstart, qend, qbefore, qafter; + local qwith, qstart, qend, qbefore, qafter, qids; local form = query:get_child("x", "jabber:x:data"); if form then local form_type, err = get_form_type(form); @@ -125,6 +130,7 @@ module:hook("iq-set/self/"..xmlns_mam..":query", function(event) end qwith, qstart, qend = form["with"], form["start"], form["end"]; qbefore, qafter = form["before-id"], form["after-id"]; + qids = form["ids"]; qwith = qwith and jid_bare(qwith); -- dataforms does jidprep end @@ -164,6 +170,7 @@ module:hook("iq-set/self/"..xmlns_mam..":query", function(event) with = qwith; limit = qmax == 0 and 0 or qmax + 1; before = before; after = after; + ids = qids; reverse = reverse; total = use_total or qmax == 0; }); @@ -561,7 +568,6 @@ module:hook("message/bare", message_handler, 0); module:hook("message/full", message_handler, 0); local advertise_extended = module:get_option_boolean("mam_advertise_extend", false); --- TODO ids -- TODO delete feature flag option module:hook("account-disco-info", function(event) |