mod_storage_{none,internal,sql}: Return error for unsupported (everything but keyval) store types

This commit is contained in:
Kim Alvefur 2014-06-20 16:22:23 +02:00
parent 578ceff99e
commit 2ba9c6ce77
3 changed files with 11 additions and 5 deletions

View file

@ -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)

View file

@ -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 {};

View file

@ -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)