aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2014-04-01 15:41:44 -0400
committerdaurnimator <quae@daurnimator.com>2014-04-01 15:41:44 -0400
commitb06bdb9b7d3da8b1c30ae09a8279396acbb8cad9 (patch)
tree7d7cc8c5ab5346f5d862e1015a324aeefaf45170 /plugins
parentfbae5113588b6dd2743d72c29290613c3b7f9812 (diff)
downloadprosody-b06bdb9b7d3da8b1c30ae09a8279396acbb8cad9.tar.gz
prosody-b06bdb9b7d3da8b1c30ae09a8279396acbb8cad9.zip
plugins/muc/muc.lib: Split up get_disco_info into events
This was done so we can split off functionality to other files later (e.g. plugins/muc/password)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/muc/muc.lib.lua55
1 files changed, 39 insertions, 16 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua
index d839786a..5f504d40 100644
--- a/plugins/muc/muc.lib.lua
+++ b/plugins/muc/muc.lib.lua
@@ -397,23 +397,46 @@ function room_mt:send_history(stanza)
end
function room_mt:get_disco_info(stanza)
- local count = 0; for _ in self:each_occupant() do count = count + 1; end
- return st.reply(stanza):query("http://jabber.org/protocol/disco#info")
- :tag("identity", {category="conference", type="text", name=self:get_name()}):up()
- :tag("feature", {var="http://jabber.org/protocol/muc"}):up()
- :tag("feature", {var=self:get_password() and "muc_passwordprotected" or "muc_unsecured"}):up()
- :tag("feature", {var=self:get_moderated() and "muc_moderated" or "muc_unmoderated"}):up()
- :tag("feature", {var=self:get_members_only() and "muc_membersonly" or "muc_open"}):up()
- :tag("feature", {var=self:get_persistent() and "muc_persistent" or "muc_temporary"}):up()
- :tag("feature", {var=self:get_hidden() and "muc_hidden" or "muc_public"}):up()
- :tag("feature", {var=self:get_whois() ~= "anyone" and "muc_semianonymous" or "muc_nonanonymous"}):up()
- :add_child(dataform.new({
- { name = "FORM_TYPE", type = "hidden", value = "http://jabber.org/protocol/muc#roominfo" },
- { name = "muc#roominfo_description", label = "Description", value = "" },
- { name = "muc#roominfo_occupants", label = "Number of occupants", value = tostring(count) }
- }):form({["muc#roominfo_description"] = self:get_description()}, 'result'))
- ;
+ local reply = st.reply(stanza):query("http://jabber.org/protocol/disco#info");
+ local form = dataform.new {
+ { name = "FORM_TYPE", type = "hidden", value = "http://jabber.org/protocol/muc#roominfo" };
+ };
+ module:fire_event("muc-disco#info", {room = self; reply = reply; form = form;});
+ reply:add_child(form:form(nil, "result"));
+ return reply;
end
+module:hook("muc-disco#info", function(event)
+ event.reply:tag("identity", {category="conference", type="text", name=event.room:get_name()}):up();
+end);
+module:hook("muc-disco#info", function(event)
+ event.reply:tag("feature", {var = "http://jabber.org/protocol/muc"}):up();
+end);
+module:hook("muc-disco#info", function(event)
+ event.reply:tag("feature", {var = event.room:get_password() and "muc_passwordprotected" or "muc_unsecured"}):up();
+end);
+module:hook("muc-disco#info", function(event)
+ event.reply:tag("feature", {var = event.room:get_moderated() and "muc_moderated" or "muc_unmoderated"}):up();
+end);
+module:hook("muc-disco#info", function(event)
+ event.reply:tag("feature", {var = event.room:get_members_only() and "muc_membersonly" or "muc_open"}):up();
+end);
+module:hook("muc-disco#info", function(event)
+ event.reply:tag("feature", {var = event.room:get_persistent() and "muc_persistent" or "muc_temporary"}):up();
+end);
+module:hook("muc-disco#info", function(event)
+ event.reply:tag("feature", {var = event.room:get_hidden() and "muc_hidden" or "muc_public"}):up();
+end);
+module:hook("muc-disco#info", function(event)
+ event.reply:tag("feature", {var = event.room:get_whois() ~= "anyone" and "muc_semianonymous" or "muc_nonanonymous"}):up();
+end);
+module:hook("muc-disco#info", function(event)
+ table.insert(event.form, { name = "muc#roominfo_description", label = "Description", value = event.room:get_description() });
+end);
+module:hook("muc-disco#info", function(event)
+ local count = 0; for _ in event.room:each_occupant() do count = count + 1; end
+ table.insert(event.form, { name = "muc#roominfo_occupants", label = "Number of occupants", value = tostring(count) });
+end);
+
function room_mt:get_disco_items(stanza)
local reply = st.reply(stanza):query("http://jabber.org/protocol/disco#items");
for room_jid in self:each_occupant() do