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