mod_storage_internal: Add the dates method
authorKim Alvefur <zash@zash.se>
Fri, 31 Mar 2017 17:49:51 +0200
changeset 8026 5a9d491cc714
parent 8025 05e201468f27
child 8027 8eec715c13a6
mod_storage_internal: Add the dates method
plugins/mod_storage_internal.lua
--- a/plugins/mod_storage_internal.lua	Fri Mar 31 17:48:50 2017 +0200
+++ b/plugins/mod_storage_internal.lua	Fri Mar 31 17:49:51 2017 +0200
@@ -120,6 +120,12 @@
 	end, count;
 end
 
+function archive:dates(username)
+	local items, err = datamanager.list_load(username, host, self.store);
+	if not items then return items, err; end
+	return array(items):pluck("when"):map(datetime.date):unique();
+end
+
 function archive:delete(username, query)
 	if not query or next(query) == nil then
 		return datamanager.list_store(username, host, self.store, nil);