view mod_audit_register/mod_audit_register.lua @ 5742:645de410dbca

mod_storage_xmlarchive: Support using requested archive-id However diverging from the date-prefixed format means it will need to look through the whole archive to find a particular ID.
author Kim Alvefur <zash@zash.se>
date Wed, 29 Nov 2023 11:14:21 +0100
parents dde83f6043e6
children b4607c5dfcac
line wrap: on
line source

module:depends("audit");
-- luacheck: read globals module.audit

local jid = require "util.jid";
local st = require "util.stanza";

module:hook("user-registered", function(event)
	local session = event.session;
	local custom = {};
	local invite = event.validated_invite or (event.session and event.session.validated_invite);
	if invite then
		table.insert(custom, st.stanza(
			"invite-used",
			{
				xmlns = "xmpp:prosody.im/audit",
				token = invite.token,
			}
		))
	end
	module:audit(jid.join(event.username, module.host), "user-registered", {
		session = session,
		custom = custom,
	});
end);