Software /
code /
prosody-modules
File
mod_smacks_offline/mod_smacks_offline.lua @ 3571:f5ea0b886c7c
mod_storage_xmlarchive: Limit search to smallest time range in case of inexact match
This should improve performance in case the exact days in the 'start'
and 'end' range are missing from the index.
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Fri, 03 May 2019 18:59:38 +0200 |
parent | 1731:b912cb8e0b3c |
child | 3936:a3693e0d26b8 |
line wrap: on
line source
local t_insert = table.insert; local mod_smacks = module:depends"smacks" local function store_unacked_stanzas(session) local queue = session.outgoing_stanza_queue; local replacement_queue = {}; session.outgoing_stanza_queue = replacement_queue; for _, stanza in ipairs(queue) do if stanza.name == "message" and stanza.attr.xmlns == nil and ( stanza.attr.type == "chat" or ( stanza.attr.type or "normal" ) == "normal" ) then module:fire_event("message/offline/handle", { origin = session, stanza = stanza } ) else t_insert(replacement_queue, stanza); end end end local handle_unacked_stanzas = mod_smacks.handle_unacked_stanzas; local host_sessions = prosody.hosts[module.host].sessions; mod_smacks.handle_unacked_stanzas = function (session) if session.username then local sessions = host_sessions[session.username].sessions; if next(sessions) == session.resource and next(sessions, session.resource) == nil then store_unacked_stanzas(session) end end return handle_unacked_stanzas(session); end function module.unload() mod_smacks.handle_unacked_stanzas = handle_unacked_stanzas; end