view mod_csi_muc_priorities/mod_csi_muc_priorities.lua @ 3533:d8c4543f1b19

mod_csi_muc_priorities: Remove dependency on mod_track_muc_joins Load it manually to enable mention support.
author Kim Alvefur <zash@zash.se>
date Mon, 01 Apr 2019 08:07:41 +0200
parents 85c357b69eec
children 700340b57851
line wrap: on
line source

local jid = require "util.jid";

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 rooms = session.rooms_joined;
			if not rooms then return; end

			local room_nick = rooms[jid.bare(stanza.attr.from)];
			if room_nick and body:find(room_nick, 1, true) then return true; end

			return false;
		end
	end
end);