mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_internal: Allow truncating deletion at the beginning or end of an archive store
This commit is contained in:
parent
bd3b534ab9
commit
cb209b0f1e
1 changed files with 15 additions and 0 deletions
|
@ -191,6 +191,21 @@ function archive:delete(username, query)
|
|||
return item.when > query["end"];
|
||||
end);
|
||||
end
|
||||
if query.truncate then
|
||||
if query.reverse then
|
||||
-- Before: { 1, 2, 3, 4, 5, }
|
||||
-- After: { 1, 2, 3 }
|
||||
while #items > query.truncate do
|
||||
table.remove(items);
|
||||
end
|
||||
else
|
||||
-- Before: { 1, 2, 3, 4, 5, }
|
||||
-- After: { 3, 4, 5 }
|
||||
while #items > query.truncate do
|
||||
table.remove(items, 1);
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
local count = count_before - #items;
|
||||
local ok, err = datamanager.list_store(username, host, self.store, items);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue