You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
692 B
14 lines
692 B
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);
|
|
|