mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_muc: Add muc-add-history event to allow modules to override default history storage
This commit is contained in:
parent
f32bdb0049
commit
3ce10e3af3
1 changed files with 8 additions and 1 deletions
|
@ -135,7 +135,7 @@ module:hook("muc-occupant-session-new", function(event)
|
||||||
end, 50); -- Before subject(20)
|
end, 50); -- Before subject(20)
|
||||||
|
|
||||||
-- add to history
|
-- add to history
|
||||||
module:hook("muc-broadcast-message", function(event)
|
module:hook("muc-add-history", function(event)
|
||||||
local historic = event.stanza:get_child("body");
|
local historic = event.stanza:get_child("body");
|
||||||
if historic then
|
if historic then
|
||||||
local room = event.room
|
local room = event.room
|
||||||
|
@ -151,6 +151,13 @@ module:hook("muc-broadcast-message", function(event)
|
||||||
table.insert(history, entry);
|
table.insert(history, entry);
|
||||||
while #history > get_historylength(room) do table.remove(history, 1) end
|
while #history > get_historylength(room) do table.remove(history, 1) end
|
||||||
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);
|
end);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue