mod_storage_none: A null-like storage provider that returns all stores as empty, and fails to save anything to them
authorMatthew Wild <mwild1@gmail.com>
Fri, 05 Apr 2013 10:01:02 +0100
changeset 5425 b00812c6daf8
parent 5424 7318527c6dea
child 5430 0ad8c623a81a
mod_storage_none: A null-like storage provider that returns all stores as empty, and fails to save anything to them
plugins/mod_storage_none.lua
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/plugins/mod_storage_none.lua	Fri Apr 05 10:01:02 2013 +0100
@@ -0,0 +1,23 @@
+local driver = {};
+local driver_mt = { __index = driver };
+
+function driver:open(store)
+	return setmetatable({ store = store }, driver_mt);
+end
+function driver:get(user)
+	return {};
+end
+
+function driver:set(user, data)
+	return nil, "Storage disabled";
+end
+
+function driver:stores(username)
+	return { "roster" };
+end
+
+function driver:purge(user)
+	return true;
+end
+
+module:provides("storage", driver);