mod_csi_simple: Consider messages encrypted payload as important (fixes part of ...
[prosody.git] / plugins / mod_private.lua
blob6046d490715183557bf8b35b7af6f041c8499f10
1 -- Prosody IM
2 -- Copyright (C) 2008-2010 Matthew Wild
3 -- Copyright (C) 2008-2010 Waqas Hussain
4 --
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
7 --
10 local st = require "util.stanza"
12 local private_storage = module:open_store("private", "map");
14 module:add_feature("jabber:iq:private");
16 module:hook("iq/self/jabber:iq:private:query", function(event)
17 local origin, stanza = event.origin, event.stanza;
18 local query = stanza.tags[1];
19 if #query.tags ~= 1 then
20 origin.send(st.error_reply(stanza, "modify", "bad-format"));
21 return true;
22 end
23 local tag = query.tags[1];
24 local key = tag.name..":"..tag.attr.xmlns;
25 if stanza.attr.type == "get" then
26 local data, err = private_storage:get(origin.username, key);
27 if data then
28 origin.send(st.reply(stanza):query("jabber:iq:private"):add_child(st.deserialize(data)));
29 elseif err then
30 origin.send(st.error_reply(stanza, "wait", "internal-server-error", err));
31 else
32 origin.send(st.reply(stanza):add_child(query));
33 end
34 return true;
35 else -- stanza.attr.type == "set"
36 local data;
37 if #tag ~= 0 then
38 data = st.preserialize(tag);
39 end
40 -- TODO delete datastore if empty
41 local ok, err = private_storage:set(origin.username, key, data);
42 if not ok then
43 origin.send(st.error_reply(stanza, "wait", "internal-server-error", err));
44 return true;
45 end
46 origin.send(st.reply(stanza));
47 return true;
48 end
49 end);