view plugins/muc/affiliation_notify.lib.lua @ 8942:ecb5e13d97bb

MUC: Remove 'affiliation notify' config option, as it's irrelevant to room owners, always notify instead
author Matthew Wild <mwild1@gmail.com>
date Wed, 27 Jun 2018 15:25:35 +0100
parents 3d17b2bf0e0c
children 3a416b866c94
line wrap: on
line source

-- Prosody IM
-- Copyright (C) 2014 Daurnimator
--
-- This project is MIT/X11 licensed. Please see the
-- COPYING file in the source package for more information.
--

--[[
Out of courtesy, a MUC service MAY send an out-of-room <message/>
if a user's affiliation changes while the user is not in the room;
the message SHOULD be sent from the room to the user's bare JID,
MAY contain a <body/> element describing the affiliation change,
and MUST contain a status code of 101.
]]


local st = require "util.stanza";

module:hook("muc-set-affiliation", function(event)
	local room = event.room;
	if not event.in_room then
		local body = string.format("Your affiliation in room %s is now %s.", room.jid, event.affiliation);
		local stanza = st.message({
				type = "headline";
				from = room.jid;
				to = event.jid;
			}, body)
			:tag("x", {xmlns = "http://jabber.org/protocol/muc#user"})
				:tag("status", {code="101"}):up()
			:up();
		room:route_stanza(stanza);
	end
end);