diff mod_stanzadebug/mod_stanzadebug.lua @ 2488:590ac12b7671

mod_stanzadebug: Like mod_rawdebug but stanzas instead of the raw bytes
author Kim Alvefur <zash@zash.se>
date Thu, 09 Feb 2017 10:47:24 +0100
parents mod_rawdebug/mod_rawdebug.lua@c5c583fae25d
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mod_stanzadebug/mod_stanzadebug.lua	Thu Feb 09 10:47:24 2017 +0100
@@ -0,0 +1,29 @@
+module:set_global();
+
+local tostring = tostring;
+local filters = require "util.filters";
+
+local function log_send(t, session)
+	if t and t ~= "" and t ~= " " then
+		session.log("debug", "SEND: %s", tostring(t));
+	end
+	return t;
+end
+
+local function log_recv(t, session)
+	if t and t ~= "" and t ~= " " then
+		session.log("debug", "RECV: %s", tostring(t));
+	end
+	return t;
+end
+
+local function init_raw_logging(session)
+	filters.add_filter(session, "stanzas/in",  log_recv, -10000);
+	filters.add_filter(session, "stanzas/out", log_send,  10000);
+end
+
+filters.add_filter_hook(init_raw_logging);
+
+function module.unload() -- luacheck: ignore
+	filters.remove_filter_hook(init_raw_logging);
+end