mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +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 };
|
local driver_mt = { __index = driver };
|
||||||
|
|
||||||
function driver:open(store, typ)
|
function driver:open(store, typ)
|
||||||
|
if typ and typ ~= "keyval" then
|
||||||
|
return nil, "unsupported-store";
|
||||||
|
end
|
||||||
return setmetatable({ store = store, type = typ }, driver_mt);
|
return setmetatable({ store = store, type = typ }, driver_mt);
|
||||||
end
|
end
|
||||||
function driver:get(user)
|
function driver:get(user)
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
local driver = {};
|
local driver = {};
|
||||||
local driver_mt = { __index = driver };
|
local driver_mt = { __index = driver };
|
||||||
|
|
||||||
function driver:open(store)
|
function driver:open(store, typ)
|
||||||
return setmetatable({ store = store }, driver_mt);
|
if typ and typ ~= "keyval" then
|
||||||
|
return nil, "unsupported-store";
|
||||||
|
end
|
||||||
|
return setmetatable({ store = store, type = typ }, driver_mt);
|
||||||
end
|
end
|
||||||
function driver:get(user)
|
function driver:get(user)
|
||||||
return {};
|
return {};
|
||||||
|
|
|
@ -380,10 +380,10 @@ end
|
||||||
local driver = {};
|
local driver = {};
|
||||||
|
|
||||||
function driver:open(store, typ)
|
function driver:open(store, typ)
|
||||||
if not typ then -- default key-value store
|
if typ and typ ~= "keyval" then
|
||||||
return setmetatable({ store = store }, keyval_store);
|
return nil, "unsupported-store";
|
||||||
end
|
end
|
||||||
return nil, "unsupported-store";
|
return setmetatable({ store = store }, keyval_store);
|
||||||
end
|
end
|
||||||
|
|
||||||
function driver:stores(username)
|
function driver:stores(username)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue