mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
mod_mam: Allow plugging into archive decision
Similar procedure as mod_csi_simple
This commit is contained in:
parent
dd1e42f499
commit
84ef8a73eb
1 changed files with 13 additions and 4 deletions
|
@ -311,7 +311,7 @@ local function strip_stanza_id(stanza, user)
|
||||||
return stanza;
|
return stanza;
|
||||||
end
|
end
|
||||||
|
|
||||||
local function should_store(stanza, c2s) --> boolean, reason: string
|
local function should_store(stanza) --> boolean, reason: string
|
||||||
local st_type = stanza.attr.type or "normal";
|
local st_type = stanza.attr.type or "normal";
|
||||||
-- FIXME pass direction of stanza and use that along with bare/full JID addressing
|
-- FIXME pass direction of stanza and use that along with bare/full JID addressing
|
||||||
-- for more accurate MUC / type=groupchat check
|
-- for more accurate MUC / type=groupchat check
|
||||||
|
@ -320,7 +320,7 @@ local function should_store(stanza, c2s) --> boolean, reason: string
|
||||||
-- Headline messages are ephemeral by definition
|
-- Headline messages are ephemeral by definition
|
||||||
return false, "headline";
|
return false, "headline";
|
||||||
end
|
end
|
||||||
if st_type == "error" and not c2s then
|
if st_type == "error" then
|
||||||
-- Errors not sent sent from a local client
|
-- Errors not sent sent from a local client
|
||||||
-- Why would a client send an error anyway?
|
-- Why would a client send an error anyway?
|
||||||
if jid_resource(stanza.attr.to) then
|
if jid_resource(stanza.attr.to) then
|
||||||
|
@ -380,6 +380,12 @@ local function should_store(stanza, c2s) --> boolean, reason: string
|
||||||
return false, "default";
|
return false, "default";
|
||||||
end
|
end
|
||||||
|
|
||||||
|
module:hook("archive-should-store", function (event)
|
||||||
|
local should, why = should_store(event.stanza);
|
||||||
|
event.reason = why;
|
||||||
|
return should;
|
||||||
|
end, -1)
|
||||||
|
|
||||||
-- Handle messages
|
-- Handle messages
|
||||||
local function message_handler(event, c2s)
|
local function message_handler(event, c2s)
|
||||||
local origin, stanza = event.origin, event.stanza;
|
local origin, stanza = event.origin, event.stanza;
|
||||||
|
@ -396,9 +402,12 @@ local function message_handler(event, c2s)
|
||||||
-- Filter out <stanza-id> that claim to be from us
|
-- Filter out <stanza-id> that claim to be from us
|
||||||
event.stanza = strip_stanza_id(stanza, store_user);
|
event.stanza = strip_stanza_id(stanza, store_user);
|
||||||
|
|
||||||
local should, why = should_store(stanza, c2s);
|
local event_payload = { stanza = stanza; session = origin };
|
||||||
|
local should = module:fire_event("archive-should-store", event_payload);
|
||||||
|
local why = event_payload.reason;
|
||||||
|
|
||||||
if not should then
|
if not should then
|
||||||
log("debug", "Not archiving stanza: %s (%s)", stanza:top_tag(), why);
|
log("debug", "Not archiving stanza: %s (%s)", stanza:top_tag(), event_payload.reason);
|
||||||
return;
|
return;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue