mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
MUC: Add sections in room config form
This commit is contained in:
parent
1a0e7d5a10
commit
1f50e15c8e
10 changed files with 12 additions and 10 deletions
|
@ -22,11 +22,11 @@ module:hook("muc-config-form", function(event)
|
||||||
table.insert(event.form, {
|
table.insert(event.form, {
|
||||||
name = "muc#roomconfig_publicroom";
|
name = "muc#roomconfig_publicroom";
|
||||||
type = "boolean";
|
type = "boolean";
|
||||||
label = "Include room in public lists";
|
label = "Include room information in public lists";
|
||||||
desc = "Enable this to allow people to find the room";
|
desc = "Enable this to allow people to find the room";
|
||||||
value = not get_hidden(event.room);
|
value = not get_hidden(event.room);
|
||||||
});
|
});
|
||||||
end, 100-5);
|
end, 100-9);
|
||||||
|
|
||||||
module:hook("muc-config-submitted/muc#roomconfig_publicroom", function(event)
|
module:hook("muc-config-submitted/muc#roomconfig_publicroom", function(event)
|
||||||
if set_hidden(event.room, not event.value) then
|
if set_hidden(event.room, not event.value) then
|
||||||
|
|
|
@ -59,7 +59,7 @@ module:hook("muc-config-form", function(event)
|
||||||
desc = "Specify the number of previous messages sent to new users when they join the room";
|
desc = "Specify the number of previous messages sent to new users when they join the room";
|
||||||
value = tostring(get_defaulthistorymessages(event.room))
|
value = tostring(get_defaulthistorymessages(event.room))
|
||||||
});
|
});
|
||||||
end, 100-10);
|
end, 70-5);
|
||||||
|
|
||||||
module:hook("muc-config-submitted/muc#roomconfig_historylength", function(event)
|
module:hook("muc-config-submitted/muc#roomconfig_historylength", function(event)
|
||||||
if set_historylength(event.room, event.value) then
|
if set_historylength(event.room, event.value) then
|
||||||
|
|
|
@ -37,7 +37,7 @@ local function add_form_option(event)
|
||||||
end
|
end
|
||||||
|
|
||||||
module:hook("muc-disco#info", add_disco_form);
|
module:hook("muc-disco#info", add_disco_form);
|
||||||
module:hook("muc-config-form", add_form_option, 100-9.5);
|
module:hook("muc-config-form", add_form_option, 100-3);
|
||||||
|
|
||||||
module:hook("muc-config-submitted/muc#roomconfig_lang", function(event)
|
module:hook("muc-config-submitted/muc#roomconfig_lang", function(event)
|
||||||
if set_language(event.room, event.value) then
|
if set_language(event.room, event.value) then
|
||||||
|
|
|
@ -85,7 +85,7 @@ module:hook("muc-config-form", function(event)
|
||||||
label = "Allow members to invite new members";
|
label = "Allow members to invite new members";
|
||||||
value = get_allow_member_invites(event.room);
|
value = get_allow_member_invites(event.room);
|
||||||
});
|
});
|
||||||
end, 100-6);
|
end, 90-3);
|
||||||
|
|
||||||
module:hook("muc-config-submitted/muc#roomconfig_membersonly", function(event)
|
module:hook("muc-config-submitted/muc#roomconfig_membersonly", function(event)
|
||||||
if set_members_only(event.room, event.value) then
|
if set_members_only(event.room, event.value) then
|
||||||
|
|
|
@ -85,6 +85,8 @@ local st = require "util.stanza";
|
||||||
local cache = require "util.cache";
|
local cache = require "util.cache";
|
||||||
local um_is_admin = require "core.usermanager".is_admin;
|
local um_is_admin = require "core.usermanager".is_admin;
|
||||||
|
|
||||||
|
module:require "muc/config_form_sections";
|
||||||
|
|
||||||
module:depends("disco");
|
module:depends("disco");
|
||||||
module:add_identity("conference", "text", module:get_option_string("name", "Prosody Chatrooms"));
|
module:add_identity("conference", "text", module:get_option_string("name", "Prosody Chatrooms"));
|
||||||
module:add_feature("http://jabber.org/protocol/muc");
|
module:add_feature("http://jabber.org/protocol/muc");
|
||||||
|
|
|
@ -30,7 +30,7 @@ module:hook("muc-config-form", function(event)
|
||||||
desc = "In moderated rooms occupants must be given permission to speak by a room moderator";
|
desc = "In moderated rooms occupants must be given permission to speak by a room moderator";
|
||||||
value = get_moderated(event.room);
|
value = get_moderated(event.room);
|
||||||
});
|
});
|
||||||
end, 100-4);
|
end, 80-3);
|
||||||
|
|
||||||
module:hook("muc-config-submitted/muc#roomconfig_moderatedroom", function(event)
|
module:hook("muc-config-submitted/muc#roomconfig_moderatedroom", function(event)
|
||||||
if set_moderated(event.room, event.value) then
|
if set_moderated(event.room, event.value) then
|
||||||
|
|
|
@ -31,7 +31,7 @@ module:hook("muc-config-form", function(event)
|
||||||
label = "Password";
|
label = "Password";
|
||||||
value = get_password(event.room) or "";
|
value = get_password(event.room) or "";
|
||||||
});
|
});
|
||||||
end, 100-7);
|
end, 90-2);
|
||||||
|
|
||||||
module:hook("muc-config-submitted/muc#roomconfig_roomsecret", function(event)
|
module:hook("muc-config-submitted/muc#roomconfig_roomsecret", function(event)
|
||||||
if set_password(event.room, event.value) then
|
if set_password(event.room, event.value) then
|
||||||
|
|
|
@ -26,7 +26,7 @@ module:hook("muc-config-form", function(event)
|
||||||
desc = "Rooms are automatically deleted when they are empty, unless this option is enabled";
|
desc = "Rooms are automatically deleted when they are empty, unless this option is enabled";
|
||||||
value = get_persistent(event.room);
|
value = get_persistent(event.room);
|
||||||
});
|
});
|
||||||
end, 100-3);
|
end, 100-5);
|
||||||
|
|
||||||
module:hook("muc-config-submitted/muc#roomconfig_persistentroom", function(event)
|
module:hook("muc-config-submitted/muc#roomconfig_persistentroom", function(event)
|
||||||
if set_persistent(event.room, event.value) then
|
if set_persistent(event.room, event.value) then
|
||||||
|
|
|
@ -45,7 +45,7 @@ module:hook("muc-config-form", function(event)
|
||||||
desc = "Choose whether anyone, or only moderators, may set the room's subject";
|
desc = "Choose whether anyone, or only moderators, may set the room's subject";
|
||||||
value = get_changesubject(event.room);
|
value = get_changesubject(event.room);
|
||||||
});
|
});
|
||||||
end, 100-8);
|
end, 80-1);
|
||||||
|
|
||||||
module:hook("muc-config-submitted/muc#roomconfig_changesubject", function(event)
|
module:hook("muc-config-submitted/muc#roomconfig_changesubject", function(event)
|
||||||
if set_changesubject(event.room, event.value) then
|
if set_changesubject(event.room, event.value) then
|
||||||
|
|
|
@ -38,7 +38,7 @@ module:hook("muc-config-form", function(event)
|
||||||
{ value = 'anyone', label = 'Anyone', default = whois == 'anyone' }
|
{ value = 'anyone', label = 'Anyone', default = whois == 'anyone' }
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
end, 100-9);
|
end, 80-4);
|
||||||
|
|
||||||
module:hook("muc-config-submitted/muc#roomconfig_whois", function(event)
|
module:hook("muc-config-submitted/muc#roomconfig_whois", function(event)
|
||||||
if set_whois(event.room, event.value) then
|
if set_whois(event.room, event.value) then
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue