Software /
code /
prosody
Changeset
3279:8b0a4a7d2c6e
MUC: Added room:can_set_role().
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Sat, 19 Jun 2010 23:35:53 +0500 |
parents | 3278:5ca2ed58788f |
children | 3280:eef4f31f2d7b |
files | plugins/muc/muc.lib.lua |
diffstat | 1 files changed, 17 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/muc/muc.lib.lua Fri Jun 18 14:29:28 2010 +0500 +++ b/plugins/muc/muc.lib.lua Sat Jun 19 23:35:53 2010 +0500 @@ -881,6 +881,23 @@ local session = self._occupants[nick]; return session and session.role or nil; end +function room_mt:can_set_role(actor_jid, occupant_jid, role) + local actor = self._occupants[self._jid_nick[actor_jid]]; + local occupant = self._occupants[occupant_jid]; + + if not occupant or not actor then return nil, "modify", "not-acceptable"; end + + if actor.role == "moderator" then + if occupant.affiliation ~= "owner" and occupant.affiliation ~= "admin" then + if actor.affiliation == "owner" or actor.affiliation == "admin" then + return true; + elseif occupant.role ~= "moderator" and role ~= "moderator" then + return true; + end + end + end + return nil, "cancel", "not-allowed"; +end function room_mt:set_role(actor, occupant_jid, role, callback, reason) if role == "none" then role = nil; end if role and role ~= "moderator" and role ~= "participant" and role ~= "visitor" then return nil, "modify", "not-acceptable"; end