mod_storage_internal, mod_storage_memory: Add support for query.before

Previously returned all results.
This commit is contained in:
Matthew Wild 2020-06-12 16:55:35 +01:00
parent 371d05a0c6
commit 0919bb30d3
2 changed files with 10 additions and 4 deletions

View file

@ -101,7 +101,7 @@ function archive_store:find(username, query)
return function () end;
end
local count = nil;
local i = 0;
local i, last_key = 0;
if query then
items = array():append(items);
if query.key then
@ -142,6 +142,8 @@ function archive_store:find(username, query)
return nil, "item-not-found";
end
end
elseif query.before then
last_key = query.before;
elseif query.after then
local found = false;
for j = 1, #items do
@ -162,7 +164,7 @@ function archive_store:find(username, query)
return function ()
i = i + 1;
local item = items[i];
if not item then return; end
if not item or (last_key and item.key == last_key) then return; end
return item.key, item.value(), item.when, item.with;
end, count;
end