Software /
code /
prosody-modules
Changeset
3137:178ebea5097c
mod_measure_message_e2ee: Get statistics about message encryption status.
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> |
---|---|
date | Fri, 22 Jun 2018 11:12:34 +0200 |
parents | 3136:fdbf7c2aed7b |
children | 3138:9817e45a79e6 |
files | mod_measure_message_e2ee/README.markdown mod_measure_message_e2ee/mod_measure_message_e2ee.lua |
diffstat | 2 files changed, 63 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_measure_message_e2ee/README.markdown Fri Jun 22 11:12:34 2018 +0200 @@ -0,0 +1,9 @@ +--- +summary: Collect statistics on message encryption +--- + +Description +=========== + +This module measures the rate at which text messages are exchanged, and their +encryption status.
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mod_measure_message_e2ee/mod_measure_message_e2ee.lua Fri Jun 22 11:12:34 2018 +0200 @@ -0,0 +1,54 @@ +module:set_global(); + +local count_message = module:measure("message", "rate"); +local count_plain = module:measure("plain", "rate"); +local count_openpgp = module:measure("openpgp", "rate"); +local count_otr = module:measure("otr", "rate"); +local count_ox = module:measure("ox", "rate"); +local count_omemo = module:measure("omemo", "rate"); +local count_encrypted = module:measure("encrypted", "rate"); + +local function message_handler(event) + local origin, stanza = event.origin, event.stanza; + + -- This counts every message, even those with no body-like content. + count_message(); + + -- Annotates that a message is encrypted, using any of the following methods. + if stanza:get_child("encryption", "urn:xmpp:eme:0") then + count_encrypted(); + end + + if stanza:get_child("openpgp", "urn:xmpp:openpgp:0") then + count_ox(); + return; + end + + if stanza:get_child("encrypted", "eu.siacs.conversations.axolotl") then + count_omemo(); + return; + end + + if stanza:get_child("x", "jabber:x:encrypted") then + count_openpgp(); + return; + end + + local body = stanza:get_child("body"); + if body ~= nil then + local otr_index = body:find("?OTR", 1, true); + if otr_index == 1 then + count_otr(); + return; + end + + count_plain(); + end +end + +function module.add_host(host_module) + module:log("debug", "Loaded on host %s", host_module); + host_module:hook("pre-message/host", message_handler, 2); + host_module:hook("pre-message/bare", message_handler, 2); + host_module:hook("pre-message/full", message_handler, 2); +end