IMPORTANT: due to a drive failure, as of 13-Mar-2021, the Mercurial repository had to be re-mirrored, which changed every commit SHA. The old SHAs and trees are backed up in the vault branches. Please migrate to the new branches as soon as you can.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
prosody/plugins/mod_storage_none.lua

40 lines
699 B

-- luacheck: ignore 212
local driver = {};
local driver_mt = { __index = driver };
function driver:open(store, typ)
if typ and typ ~= "keyval" and typ ~= "archive" then
return nil, "unsupported-store";
end
return setmetatable({ store = store, type = typ }, 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
function driver:append()
return nil, "Storage disabled";
end
function driver:find()
return function () end, 0;
end
function driver:delete()
return true;
end
module:provides("storage", driver);