mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_storage_{none,internal,sql}: Return error for unsupported (everything but keyval) store types
This commit is contained in:
parent
578ceff99e
commit
2ba9c6ce77
3 changed files with 11 additions and 5 deletions
|
@ -6,6 +6,9 @@ local driver = {};
|
|||
local driver_mt = { __index = driver };
|
||||
|
||||
function driver:open(store, typ)
|
||||
if typ and typ ~= "keyval" then
|
||||
return nil, "unsupported-store";
|
||||
end
|
||||
return setmetatable({ store = store, type = typ }, driver_mt);
|
||||
end
|
||||
function driver:get(user)
|
||||
|
|
|
@ -1,8 +1,11 @@
|
|||
local driver = {};
|
||||
local driver_mt = { __index = driver };
|
||||
|
||||
function driver:open(store)
|
||||
return setmetatable({ store = store }, driver_mt);
|
||||
function driver:open(store, typ)
|
||||
if typ and typ ~= "keyval" then
|
||||
return nil, "unsupported-store";
|
||||
end
|
||||
return setmetatable({ store = store, type = typ }, driver_mt);
|
||||
end
|
||||
function driver:get(user)
|
||||
return {};
|
||||
|
|
|
@ -380,10 +380,10 @@ end
|
|||
local driver = {};
|
||||
|
||||
function driver:open(store, typ)
|
||||
if not typ then -- default key-value store
|
||||
return setmetatable({ store = store }, keyval_store);
|
||||
if typ and typ ~= "keyval" then
|
||||
return nil, "unsupported-store";
|
||||
end
|
||||
return nil, "unsupported-store";
|
||||
return setmetatable({ store = store }, keyval_store);
|
||||
end
|
||||
|
||||
function driver:stores(username)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue