mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-16 10:13:26 +02:00
15 lines
692 B
Django/Jinja
15 lines
692 B
Django/Jinja
local MUC_NS = "http://jabber.org/protocol/muc";
|
|
local jid = require "util.jid";
|
|
|
|
module:hook("muc-occupant-pre-join", function (event)
|
|
local room, stanza = event.room, event.stanza;
|
|
|
|
local user, domain, res = jid.split(event.stanza.attr.from);
|
|
log("info", "--------------> user %s domain %s res %s pass %s", tostring(user),tostring(domain),tostring(res),tostring(room:get_password()));
|
|
|
|
if ( user == '{{ jitsi_jibri_recorder_xmpp_user }}' and domain == '{{ jitsi_jibri_xmpp_domain | default('recorder.' ~ jitsi_domain) }}' ) then
|
|
local join = stanza:get_child("x", MUC_NS);
|
|
join:tag("password", { xmlns = MUC_NS }):text(room:get_password());
|
|
end;
|
|
end);
|