mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_storage_memory: Implement archive summary API
This commit is contained in:
parent
a32b5ceb45
commit
9b96017ca9
1 changed files with 10 additions and 0 deletions
|
@ -147,6 +147,16 @@ function archive_store:find(username, query)
|
|||
end, count;
|
||||
end
|
||||
|
||||
function archive:summary(username, query)
|
||||
local iter, err = self:find(username, query)
|
||||
if not iter then return iter, err; end
|
||||
local summary = {};
|
||||
for _, _, _, with in iter do
|
||||
summary[with] = (summary[with] or 0) + 1;
|
||||
end
|
||||
return summary;
|
||||
end
|
||||
|
||||
|
||||
function archive_store:delete(username, query)
|
||||
if not query or next(query) == nil then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue