aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authordaurnimator <quae@daurnimator.com>2014-03-31 12:21:43 -0400
committerdaurnimator <quae@daurnimator.com>2014-03-31 12:21:43 -0400
commiteb0739676fb5a91c11583764f1198999893f94ba (patch)
treebea23e3c36a3a4aace1b96821bb75346c39ed893 /plugins
parentd0e5de9af2239bd57d91a7c30e0a4d335b668a7b (diff)
downloadprosody-eb0739676fb5a91c11583764f1198999893f94ba.tar.gz
prosody-eb0739676fb5a91c11583764f1198999893f94ba.zip
plugins/muc/muc.lib: Remove top level pre-join event. Assign event priorities for other handlers
Diffstat (limited to 'plugins')
-rw-r--r--plugins/muc/muc.lib.lua20
1 files changed, 7 insertions, 13 deletions
diff --git a/plugins/muc/muc.lib.lua b/plugins/muc/muc.lib.lua
index 684539bd..9f7ba8d3 100644
--- a/plugins/muc/muc.lib.lua
+++ b/plugins/muc/muc.lib.lua
@@ -585,12 +585,6 @@ module:hook("muc-room-pre-create", function(event)
end, -1);
module:hook("muc-occupant-pre-join", function(event)
- return module:fire_event("muc-occupant-pre-join/affiliation", event)
- or module:fire_event("muc-occupant-pre-join/password", event)
- or module:fire_event("muc-occupant-pre-join/locked", event);
-end, -1)
-
-module:hook("muc-occupant-pre-join/password", function(event)
local room, stanza = event.room, event.stanza;
local password = stanza:get_child("x", "http://jabber.org/protocol/muc");
password = password and password:get_child_text("password", "http://jabber.org/protocol/muc");
@@ -603,17 +597,17 @@ module:hook("muc-occupant-pre-join/password", function(event)
event.origin.send(reply:tag("x", {xmlns = "http://jabber.org/protocol/muc"}));
return true;
end
-end, -1);
+end, -20);
-module:hook("muc-occupant-pre-join/locked", function(event)
+module:hook("muc-occupant-pre-join", function(event)
if event.room:is_locked() then -- Deny entry
event.origin.send(st.error_reply(event.stanza, "cancel", "item-not-found"));
return true;
end
-end, -1);
+end, -30);
-- registration required for entering members-only room
-module:hook("muc-occupant-pre-join/affiliation", function(event)
+module:hook("muc-occupant-pre-join", function(event)
local room, stanza = event.room, event.stanza;
local affiliation = room:get_affiliation(stanza.attr.from);
if affiliation == nil and event.room:get_members_only() then
@@ -622,10 +616,10 @@ module:hook("muc-occupant-pre-join/affiliation", function(event)
event.origin.send(reply:tag("x", {xmlns = "http://jabber.org/protocol/muc"}));
return true;
end
-end, -1);
+end, -5);
-- check if user is banned
-module:hook("muc-occupant-pre-join/affiliation", function(event)
+module:hook("muc-occupant-pre-join", function(event)
local room, stanza = event.room, event.stanza;
local affiliation = room:get_affiliation(stanza.attr.from);
if affiliation == "outcast" then
@@ -634,7 +628,7 @@ module:hook("muc-occupant-pre-join/affiliation", function(event)
event.origin.send(reply:tag("x", {xmlns = "http://jabber.org/protocol/muc"}));
return true;
end
-end, -1);
+end, -10);
module:hook("muc-occupant-joined", function(event)
local room, stanza = event.room, event.stanza;