diff options
author | Kim Alvefur <zash@zash.se> | 2013-04-19 16:14:06 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-04-19 16:14:06 +0200 |
commit | 968ea7ee25380c09bc8eacfa4cc52f6947d1dcc2 (patch) | |
tree | 3ef0a2ea8688663d800d608db52155b26d6124e1 /plugins/mod_vcard.lua | |
parent | 10e527173b98b7a479df576145e80afb6f3da6fb (diff) | |
download | prosody-968ea7ee25380c09bc8eacfa4cc52f6947d1dcc2.tar.gz prosody-968ea7ee25380c09bc8eacfa4cc52f6947d1dcc2.zip |
mod_auth_internal_hashed, mod_auth_internal_plain, mod_privacy, mod_private, mod_register, mod_vcard, mod_muc: Use module:open_store()
Diffstat (limited to 'plugins/mod_vcard.lua')
-rw-r--r-- | plugins/mod_vcard.lua | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/plugins/mod_vcard.lua b/plugins/mod_vcard.lua index d3c27cc0..26b30e3a 100644 --- a/plugins/mod_vcard.lua +++ b/plugins/mod_vcard.lua @@ -8,7 +8,8 @@ local st = require "util.stanza" local jid_split = require "util.jid".split; -local datamanager = require "util.datamanager" + +local vcards = module:open_store(); module:add_feature("vcard-temp"); @@ -19,9 +20,9 @@ local function handle_vcard(event) local vCard; if to then local node, host = jid_split(to); - vCard = st.deserialize(datamanager.load(node, host, "vcard")); -- load vCard for user or server + vCard = st.deserialize(vcards:get(node)); -- load vCard for user or server else - vCard = st.deserialize(datamanager.load(session.username, session.host, "vcard"));-- load user's own vCard + vCard = st.deserialize(vcards:get(session.username));-- load user's own vCard end if vCard then session.send(st.reply(stanza):add_child(vCard)); -- send vCard! @@ -30,7 +31,7 @@ local function handle_vcard(event) end else if not to then - if datamanager.store(session.username, session.host, "vcard", st.preserialize(stanza.tags[1])) then + if vcards:set(session.username, st.preserialize(stanza.tags[1])) then session.send(st.reply(stanza)); else -- TODO unable to write file, file may be locked, etc, what's the correct error? |