blob: 37fe12599e4234c4c77edda4397c729b44a59505 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
-- Prosody IM
-- Copyright (C) 2008-2010 Matthew Wild
-- Copyright (C) 2008-2010 Waqas Hussain
-- Copyright (C) 2014 Daurnimator
--
-- This project is MIT/X11 licensed. Please see the
-- COPYING file in the source package for more information.
--
local jid_split = require "util.jid".split;
local function get_name(room)
return room._data.name or jid_split(room.jid);
end
local function set_name(room, name)
if name == "" then name = nil; end
if room._data.name == name then return false; end
room._data.name = name;
return true;
end
local function insert_name_into_form(event)
table.insert(event.form, {
name = "muc#roomconfig_roomname";
type = "text-single";
label = "Title";
value = event.room._data.name;
});
end
module:hook("muc-disco#info", function(event)
event.reply:tag("identity", {category="conference", type="text", name=get_name(event.room)}):up();
insert_name_into_form(event);
end);
module:hook("muc-config-form", insert_name_into_form, 100-1);
module:hook("muc-config-submitted/muc#roomconfig_roomname", function(event)
if set_name(event.room, event.value) then
event.status_codes["104"] = true;
end
end);
return {
get = get_name;
set = set_name;
};
|