view mod_csi_muc_priorities/mod_csi_muc_priorities.lua @ 3534:700340b57851

mod_csi_muc_priorities: Break out room jid into a variable
author Kim Alvefur <zash@zash.se>
date Mon, 01 Apr 2019 08:21:57 +0200
parents d8c4543f1b19
children bcb0eb9121a9
line wrap: on
line source

local jid_bare = require "util.jid".bare;

module:hook("csi-is-stanza-important", function (event)
	local stanza, session = event.stanza, event.session;
	if stanza.name == "message" then
		if stanza.attr.type == "groupchat" then
			local body = stanza:get_child_text("body");
			if not body then return end

			local room_jid = jid_bare(stanza.attr.from);

			local rooms = session.rooms_joined;
			if not rooms then return; end

			local room_nick = rooms[room_jid];
			if room_nick and body:find(room_nick, 1, true) then return true; end

			return false;
		end
	end
end);