aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2015-01-06 19:33:25 +0000
committerMatthew Wild <mwild1@gmail.com>2015-01-06 19:33:25 +0000
commitdc851debfaea80873071689070ef994c46fb8a02 (patch)
treee1dadd72e9c4cccb091b00a98e3790bfe4568680 /plugins
parent6db8f941f1437a02b380710df0e22e2a5e76568d (diff)
downloadprosody-dc851debfaea80873071689070ef994c46fb8a02.tar.gz
prosody-dc851debfaea80873071689070ef994c46fb8a02.zip
mod_muc: Add muc-add-history event to allow modules to override default history storage
Diffstat (limited to 'plugins')
-rw-r--r--plugins/muc/history.lib.lua9
1 files changed, 8 insertions, 1 deletions
diff --git a/plugins/muc/history.lib.lua b/plugins/muc/history.lib.lua
index 4129e7fa..d685abf2 100644
--- a/plugins/muc/history.lib.lua
+++ b/plugins/muc/history.lib.lua
@@ -135,7 +135,7 @@ module:hook("muc-occupant-session-new", function(event)
end, 50); -- Before subject(20)
-- add to history
-module:hook("muc-broadcast-message", function(event)
+module:hook("muc-add-history", function(event)
local historic = event.stanza:get_child("body");
if historic then
local room = event.room
@@ -151,6 +151,13 @@ module:hook("muc-broadcast-message", function(event)
table.insert(history, entry);
while #history > get_historylength(room) do table.remove(history, 1) end
end
+ return true;
+end, -1);
+
+-- Have a single muc-add-history event, so that plugins can mark it
+-- as handled without stopping other muc-broadcast-message handlers
+module:hook("muc-broadcast-message", function(event)
+ module:fire_event("muc-add-history", event);
end);
return {