aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2019-01-28 01:41:42 +0100
committerKim Alvefur <zash@zash.se>2019-01-28 01:41:42 +0100
commit805ce7001514ac42d93c8ed10dde99e708e0b0b0 (patch)
treed44d8cdffa83285835de95fa47023ffe3726cb1e
parentcca227b28bdb2d843ca4eb86a52c130476f9098d (diff)
downloadprosody-805ce7001514ac42d93c8ed10dde99e708e0b0b0.tar.gz
prosody-805ce7001514ac42d93c8ed10dde99e708e0b0b0.zip
mod_pubsub: Support requests for multiple items (fixes #1305)
-rw-r--r--plugins/mod_pubsub/pubsub.lib.lua12
1 files changed, 9 insertions, 3 deletions
diff --git a/plugins/mod_pubsub/pubsub.lib.lua b/plugins/mod_pubsub/pubsub.lib.lua
index 1bd5fa33..50ef7ddf 100644
--- a/plugins/mod_pubsub/pubsub.lib.lua
+++ b/plugins/mod_pubsub/pubsub.lib.lua
@@ -295,14 +295,20 @@ end
function handlers.get_items(origin, stanza, items, service)
local node = items.attr.node;
- local item = items:get_child("item");
- local item_id = item and item.attr.id;
+
+ local requested_items = {};
+ for item in items:childtags("item") do
+ table.insert(requested_items, item.attr.id);
+ end
+ if requested_items[1] == nil then
+ requested_items = nil;
+ end
if not node then
origin.send(pubsub_error_reply(stanza, "nodeid-required"));
return true;
end
- local ok, results = service:get_items(node, stanza.attr.from, item_id);
+ local ok, results = service:get_items(node, stanza.attr.from, requested_items);
if not ok then
origin.send(pubsub_error_reply(stanza, results));
return true;