mod_block_strangers/mod_block_strangers.lua
author Philipp Hancke <fippo@goodadvice.pages.de>
Wed, 28 Aug 2013 10:31:15 +0100
changeset 1168 0b6b33688b75
parent 774 52caf54fc270
child 1324 853a382c9bd6
permissions -rw-r--r--
mod_turncredentials: use smarter timestamp expiry from draft-uberti-behave-turn-rest-00


local jid_split = require "util.jid".split;
local jid_bare = require "util.jid".bare;
local is_contact_subscribed = require "core.rostermanager".is_contact_subscribed;

function check_subscribed(event)
	local stanza = event.stanza;
	local to_user, to_host, to_resource = jid_split(stanza.attr.to);
	local from_jid = jid_bare(stanza.attr.from);
	if to_user and not is_contact_subscribed(to_user, to_host, from_jid) then
		if to_resource and stanza.attr.type == "groupchat" then
			return nil; -- Pass through
		end
		return true; -- Drop stanza
	end
end

module:hook("message/bare", check_subscribed, 200);
module:hook("message/full", check_subscribed, 200);
module:hook("iq/full", check_subscribed, 200);