MUC: Added config option 'restrict_room_creation' to allow restricting room creation to admins.

Wed, 21 Oct 2009 11:58:33 +0500

author
Waqas Hussain <waqas20@gmail.com>
date
Wed, 21 Oct 2009 11:58:33 +0500
changeset 2033
38d32c154cec
parent 2032
2714ccde2569
child 2034
38d4694828e6

MUC: Added config option 'restrict_room_creation' to allow restricting room creation to admins.

plugins/muc/mod_muc.lua file | annotate | diff | comparison | revisions
--- a/plugins/muc/mod_muc.lua	Wed Oct 21 11:41:11 2009 +0500
+++ b/plugins/muc/mod_muc.lua	Wed Oct 21 11:58:33 2009 +0500
@@ -14,20 +14,28 @@
 local muc_host = module:get_host();
 local muc_name = module:get_option("name");
 if type(muc_name) ~= "string" then muc_name = "Prosody Chatrooms"; end
+local restrict_room_creation = module:get_option("restrict_room_creation");
+if restrict_room_creation and restrict_room_creation ~= true then restrict_room_creation = nil; end
 local history_length = 20;
 
 local muc_new_room = module:require "muc".new_room;
 local register_component = require "core.componentmanager".register_component;
 local deregister_component = require "core.componentmanager".deregister_component;
 local jid_split = require "util.jid".split;
+local jid_bare = require "util.jid".bare;
 local st = require "util.stanza";
 local uuid_gen = require "util.uuid".generate;
 local datamanager = require "util.datamanager";
+local um_is_admin = require "core.usermanager".is_admin;
 
 local rooms = {};
 local persistent_rooms = datamanager.load(nil, muc_host, "persistent") or {};
 local component;
 
+local function is_admin(jid)
+	return um_is_admin(jid) or um_is_admin(jid, module.host);
+end
+
 local function room_route_stanza(room, stanza) core_post_stanza(component, stanza); end
 local function room_save(room, forced)
 	local node = jid_split(room.jid);
@@ -105,14 +113,20 @@
 		if to_host == muc_host or bare == muc_host then
 			local room = rooms[bare];
 			if not room then
-				room = muc_new_room(bare);
-				room.route_stanza = room_route_stanza;
-				room.save = room_save;
-				rooms[bare] = room;
+				if not(restrict_room_creation) or is_admin(stanza.attr.from) then
+					room = muc_new_room(bare);
+					room.route_stanza = room_route_stanza;
+					room.save = room_save;
+					rooms[bare] = room;
+				end
 			end
-			room:handle_stanza(origin, stanza);
-			if not next(room._occupants) and not persistent_rooms[room.jid] then -- empty, non-persistent room
-				rooms[bare] = nil; -- discard room
+			if room then
+				room:handle_stanza(origin, stanza);
+				if not next(room._occupants) and not persistent_rooms[room.jid] then -- empty, non-persistent room
+					rooms[bare] = nil; -- discard room
+				end
+			else
+				origin.send(st.error_reply(stanza, "cancel", "not-allowed"));
 			end
 		else --[[not for us?]] end
 		return;

mercurial