mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_private: Use map store
This commit is contained in:
parent
8bbf7d4e1f
commit
0437582ce0
1 changed files with 9 additions and 12 deletions
|
@ -9,7 +9,7 @@
|
|||
|
||||
local st = require "util.stanza"
|
||||
|
||||
local private_storage = module:open_store();
|
||||
local private_storage = module:open_store("private", "map");
|
||||
|
||||
module:add_feature("jabber:iq:private");
|
||||
|
||||
|
@ -21,25 +21,22 @@ module:hook("iq/self/jabber:iq:private:query", function(event)
|
|||
end
|
||||
local tag = query.tags[1];
|
||||
local key = tag.name..":"..tag.attr.xmlns;
|
||||
local data, err = private_storage:get(origin.username);
|
||||
if err then
|
||||
return origin.send(st.error_reply(stanza, "wait", "internal-server-error", err));
|
||||
end
|
||||
if stanza.attr.type == "get" then
|
||||
if data and data[key] then
|
||||
local data, err = private_storage:get(origin.username, key);
|
||||
if data then
|
||||
return origin.send(st.reply(stanza):query("jabber:iq:private"):add_child(st.deserialize(data)));
|
||||
elseif err then
|
||||
return origin.send(st.error_reply(stanza, "wait", "internal-server-error", err));
|
||||
else
|
||||
return origin.send(st.reply(stanza):add_child(query));
|
||||
end
|
||||
else -- type == set
|
||||
if not data then data = {}; end;
|
||||
if #tag == 0 then
|
||||
data[key] = nil;
|
||||
else
|
||||
data[key] = st.preserialize(tag);
|
||||
local data;
|
||||
if #tag ~= 0 then
|
||||
data = st.preserialize(tag);
|
||||
end
|
||||
-- TODO delete datastore if empty
|
||||
local ok, err = private_storage:set(origin.username, data);
|
||||
local ok, err = private_storage:set(origin.username, key, data);
|
||||
if not ok then
|
||||
return origin.send(st.error_reply(stanza, "wait", "internal-server-error", err));
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue