Software /
code /
prosody
Annotate
plugins/mod_roster.lua @ 90:da468ed49a7b
Stanza preserialize/deserialize helpers, to strip and restore stanzas respectively. Fixed mod_vcard to use these.
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 09 Oct 2008 00:50:45 +0100 |
parent | 79:2766e23c4d7d |
child | 102:a5b914370db5 |
rev | line source |
---|---|
30 | 1 |
2 local st = require "util.stanza" | |
3 local send = require "core.sessionmanager".send_to_session | |
4 | |
5 add_iq_handler("c2s", "jabber:iq:roster", | |
6 function (session, stanza) | |
7 if stanza.attr.type == "get" then | |
8 local roster = st.reply(stanza) | |
9 :query("jabber:iq:roster"); | |
10 for jid in pairs(session.roster) do | |
11 roster:tag("item", { jid = jid, subscription = "none" }):up(); | |
12 end | |
13 send(session, roster); | |
14 return true; | |
15 end | |
16 end); |