mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_internal: Add more extensive query support to archive:delete method
This commit is contained in:
parent
2477d1c269
commit
5091ef0c46
1 changed files with 22 additions and 6 deletions
|
@ -160,9 +160,6 @@ function archive:delete(username, query)
|
|||
if not query or next(query) == nil then
|
||||
return datamanager.list_store(username, host, self.store, nil);
|
||||
end
|
||||
for k in pairs(query) do
|
||||
if k ~= "end" then return nil, "unsupported-query-field"; end
|
||||
end
|
||||
local items, err = datamanager.list_load(username, host, self.store);
|
||||
if not items then
|
||||
if err then
|
||||
|
@ -173,9 +170,28 @@ function archive:delete(username, query)
|
|||
end
|
||||
items = array(items);
|
||||
local count_before = #items;
|
||||
items:filter(function (item)
|
||||
return item.when > query["end"];
|
||||
end);
|
||||
if query then
|
||||
if query.key then
|
||||
items:filter(function (item)
|
||||
return item.key ~= query.key;
|
||||
end);
|
||||
end
|
||||
if query.with then
|
||||
items:filter(function (item)
|
||||
return item.with ~= query.with;
|
||||
end);
|
||||
end
|
||||
if query.start then
|
||||
items:filter(function (item)
|
||||
return item.when < query.start;
|
||||
end);
|
||||
end
|
||||
if query["end"] then
|
||||
items:filter(function (item)
|
||||
return item.when > query["end"];
|
||||
end);
|
||||
end
|
||||
end
|
||||
local count = count_before - #items;
|
||||
local ok, err = datamanager.list_store(username, host, self.store, items);
|
||||
if not ok then return ok, err; end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue