# HG changeset patch # User Waqas Hussain # Date 1285599074 -18000 # Node ID 72cb8b6536b92f77dc37cf23232aaa9093e539ff # Parent 0f46acca11ccbece8f7ae7d48766097a3f8f564c# Parent 9e4c2b048f9a12246c743ee1c365d89424a7d012 Merge with trunk. diff -r 0f46acca11cc -r 72cb8b6536b9 plugins/muc/muc.lib.lua --- a/plugins/muc/muc.lib.lua Mon Sep 27 19:00:11 2010 +0500 +++ b/plugins/muc/muc.lib.lua Mon Sep 27 19:51:14 2010 +0500 @@ -212,7 +212,7 @@ function room_mt:get_disco_info(stanza) return st.reply(stanza):query("http://jabber.org/protocol/disco#info") - :tag("identity", {category="conference", type="text"}):up() + :tag("identity", {category="conference", type="text", name=self:get_name()}):up() :tag("feature", {var="http://jabber.org/protocol/muc"}):up() :tag("feature", {var=self:get_password() and "muc_passwordprotected" or "muc_unsecured"}):up() :tag("feature", {var=self:is_moderated() and "muc_moderated" or "muc_unmoderated"}):up() @@ -220,6 +220,14 @@ :tag("feature", {var=self:is_persistent() and "muc_persistent" or "muc_temporary"}):up() :tag("feature", {var=self:is_hidden() and "muc_hidden" or "muc_public"}):up() :tag("feature", {var=self._data.whois ~= "anyone" and "muc_semianonymous" or "muc_nonanonymous"}):up() + :tag("x", {xmlns="jabber:x:data", type="result"}) + :tag("field", {var="FORM_TYPE", type="hidden"}) + :tag("value"):text("http://jabber.org/protocol/muc#roominfo"):up() + :up() + :tag("field", {var="muc#roominfo_description", label="Description"}) + :tag("value"):text(self:get_description()):up() + :up() + :up() ; end function room_mt:get_disco_items(stanza) @@ -251,6 +259,26 @@ :tag('status'):text(error_message); end +function room_mt:set_name(name) + if name == "" or type(name) ~= "string" then name = nil; end + if self._data.name ~= name then + self._data.name = name; + if self.save then self:save(true); end + end +end +function room_mt:get_name() + return self._data.name; +end +function room_mt:set_description(description) + if description == "" or type(description) ~= "string" then description = nil; end + if self._data.description ~= description then + self._data.description = description; + if self.save then self:save(true); end + end +end +function room_mt:get_description() + return self._data.description; +end function room_mt:set_password(password) if password == "" or type(password) ~= "string" then password = nil; end if self._data.password ~= password then @@ -502,6 +530,12 @@ :tag("title"):text(title):up() :tag("instructions"):text(title):up() :tag("field", {type='hidden', var='FORM_TYPE'}):tag("value"):text("http://jabber.org/protocol/muc#roomconfig"):up():up() + :tag("field", {type='text-single', label='Name', var='muc#roomconfig_roomname'}) + :tag("value"):text(self:get_name() or ""):up() + :up() + :tag("field", {type='text-single', label='Description', var='muc#roomconfig_roomdesc'}) + :tag("value"):text(self:get_description() or ""):up() + :up() :tag("field", {type='boolean', label='Make Room Persistent?', var='muc#roomconfig_persistentroom'}) :tag("value"):text(self:is_persistent() and "1" or "0"):up() :up() @@ -551,6 +585,16 @@ local dirty = false + local name = fields['muc#roomconfig_roomname']; + if name then + self:set_name(name); + end + + local description = fields['muc#roomconfig_roomdesc']; + if description then + self:set_description(description); + end + local persistent = fields['muc#roomconfig_persistentroom']; if persistent == "0" or persistent == "false" then persistent = nil; elseif persistent == "1" or persistent == "true" then persistent = true; else origin.send(st.error_reply(stanza, "cancel", "bad-request")); return; end