mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_storage_internal: Separate driver from keyval implementation
This commit is contained in:
parent
72018f7be7
commit
0ca328a00c
1 changed files with 10 additions and 6 deletions
|
@ -3,19 +3,23 @@ local datamanager = require "core.storagemanager".olddm;
|
|||
local host = module.host;
|
||||
|
||||
local driver = {};
|
||||
local driver_mt = { __index = driver };
|
||||
|
||||
function driver:open(store, typ)
|
||||
if typ and typ ~= "keyval" then
|
||||
local mt = self[typ or "keyval"]
|
||||
if not mt then
|
||||
return nil, "unsupported-store";
|
||||
end
|
||||
return setmetatable({ store = store, type = typ }, driver_mt);
|
||||
return setmetatable({ store = store, type = typ }, mt);
|
||||
end
|
||||
function driver:get(user)
|
||||
|
||||
local keyval = { };
|
||||
driver.keyval = { __index = keyval };
|
||||
|
||||
function keyval:get(user)
|
||||
return datamanager.load(user, host, self.store);
|
||||
end
|
||||
|
||||
function driver:set(user, data)
|
||||
function keyval:set(user, data)
|
||||
return datamanager.store(user, host, self.store, data);
|
||||
end
|
||||
|
||||
|
@ -23,7 +27,7 @@ function driver:stores(username)
|
|||
return datamanager.stores(username, host);
|
||||
end
|
||||
|
||||
function driver:users()
|
||||
function keyval:users()
|
||||
return datamanager.users(host, self.store, self.type);
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue