Software /
code /
prosody
Changeset
11278:c3907f05bed4
mod_storage_internal: Support query for set of IDs
Based on implementation in mod_storage_memory
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 12 Jan 2021 18:06:55 +0100 |
parents | 11277:1256f32f21b6 |
children | 11279:f225070e2b8a |
files | plugins/mod_storage_internal.lua |
diffstat | 1 files changed, 8 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_storage_internal.lua Tue Jan 12 18:06:33 2021 +0100 +++ b/plugins/mod_storage_internal.lua Tue Jan 12 18:06:55 2021 +0100 @@ -6,6 +6,7 @@ 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 @@ quota = archive_item_limit; truncate = true; full_id_range = true; + ids = true; }; function archive:append(username, key, value, when, with) @@ -144,6 +146,12 @@ 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;