mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_internal: Implement a summary API returning message counts per contact
This commit is contained in:
parent
3c50aa4902
commit
582fa3f46f
2 changed files with 13 additions and 0 deletions
|
@ -47,6 +47,9 @@ interface archive_store
|
|||
|
||||
-- Array of dates which do have messages (Optional?)
|
||||
dates : ( self, string? ) -> ({ string }) | (nil, string)
|
||||
|
||||
-- Map of counts per "with" field
|
||||
summary : ( self, string?, archive_query? ) -> ( { string : integer } ) | (nil, string)
|
||||
end
|
||||
|
||||
-- This represents moduleapi
|
||||
|
|
|
@ -196,6 +196,16 @@ function archive:dates(username)
|
|||
return array(items):pluck("when"):map(datetime.date):unique();
|
||||
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:delete(username, query)
|
||||
local cache_key = jid_join(username, host, self.store);
|
||||
if not query or next(query) == nil then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue