mod_csi_muc_priorities/mod_csi_muc_priorities.lua
author Kim Alvefur <zash@zash.se>
Mon, 01 Apr 2019 08:21:57 +0200
changeset 3538 700340b57851
parent 3537 d8c4543f1b19
child 3539 bcb0eb9121a9
permissions -rw-r--r--
mod_csi_muc_priorities: Break out room jid into a variable

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);