mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_internal: Support query for set of IDs
Based on implementation in mod_storage_memory
This commit is contained in:
parent
5d5615daff
commit
768d52008a
1 changed files with 8 additions and 0 deletions
|
@ -6,6 +6,7 @@ local st = require "util.stanza";
|
|||
local now = require "util.time".now;
|
||||
local id = require "util.id".medium;
|
||||
local jid_join = require "util.jid".join;
|
||||
local set = require "util.set";
|
||||
|
||||
local host = module.host;
|
||||
|
||||
|
@ -53,6 +54,7 @@ archive.caps = {
|
|||
quota = archive_item_limit;
|
||||
truncate = true;
|
||||
full_id_range = true;
|
||||
ids = true;
|
||||
};
|
||||
|
||||
function archive:append(username, key, value, when, with)
|
||||
|
@ -144,6 +146,12 @@ function archive:find(username, query)
|
|||
return item.key == query.key;
|
||||
end);
|
||||
end
|
||||
if query.ids then
|
||||
local ids = set.new(query.ids);
|
||||
items:filter(function (item)
|
||||
return ids:contains(item.key);
|
||||
end);
|
||||
end
|
||||
if query.with then
|
||||
items:filter(function (item)
|
||||
return item.with == query.with;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue