mod_storage_*: Include timestamp of latest message in :summary API

Clients may want to show a list of conversations ordered by how
timestamp of most recent message.

The counts allow a badge with unread message counter.
This commit is contained in:
Kim Alvefur 2019-08-23 01:10:27 +02:00
parent 39cb87a158
commit d3c559bcc8
3 changed files with 12 additions and 3 deletions

View file

@ -171,11 +171,14 @@ function archive_store:summary(username, query)
local iter, err = self:find(username, query)
if not iter then return iter, err; end
local counts = {};
for _, _, _, with in iter do
local latest = {};
for _, _, when, with in iter do
counts[with] = (counts[with] or 0) + 1;
latest[with] = when;
end
return {
counts = counts;
latest = latest;
};
end