Merge 0.10->trunk
[prosody.git] / plugins / muc / muc.lib.lua
index 75caa233938f49d627df9aefae1c84d2d67935f7..b797619952c10a8359b1e06c19e1ed993869d071 100644 (file)
@@ -8,7 +8,7 @@
 --
 
 local select = select;
-local pairs, ipairs = pairs, ipairs;
+local pairs = pairs;
 local next = next;
 local setmetatable = setmetatable;
 
@@ -75,7 +75,8 @@ do
                if next_occupant_jid == nil then return nil end
                return next_occupant_jid, occupant_lib.copy(raw_occupant);
        end
-       function room_mt:each_occupant(read_only)
+       -- FIXME Explain what 'read_only' is supposed to be
+       function room_mt:each_occupant(read_only) -- luacheck: ignore 212
                return next_copied_occupant, self._occupants, nil;
        end
 end
@@ -123,7 +124,7 @@ end
 
 function room_mt:route_to_occupant(occupant, stanza)
        local to = stanza.attr.to;
-       for jid, pr in occupant:each_session() do
+       for jid in occupant:each_session() do
                stanza.attr.to = jid;
                self:route_stanza(stanza);
        end
@@ -150,7 +151,7 @@ function room_mt:build_item_list(occupant, x, is_anonymous, nick, actor_nick, ac
        if is_anonymous then
                add_item(x, affiliation, role, nil, nick, actor_nick, actor_jid, reason);
        else
-               for real_jid, session in occupant:each_session() do
+               for real_jid in occupant:each_session() do
                        add_item(x, affiliation, role, real_jid, nick, actor_nick, actor_jid, reason);
                end
        end
@@ -187,15 +188,15 @@ end
 -- Takes the x element that goes into the stanzas
 function room_mt:publicise_occupant_status(occupant, base_x, nick, actor, reason)
        -- Build real jid and (optionally) occupant jid template presences
-       local base_presence;
-       if occupant.role ~= nil then
+       local base_presence do
                -- Try to use main jid's presence
                local pr = occupant:get_presence();
-               if pr ~= nil then
+               if pr and (pr.attr.type ~= "unavailable" or occupant.role == nil) then
                        base_presence = st.clone(pr);
+               else -- user is leaving but didn't send a leave presence. make one for them
+                       base_presence = st.presence {from = occupant.nick; type = "unavailable";};
                end
        end
-       base_presence = base_presence or st.presence {from = occupant.nick; type = "unavailable";};
 
        -- Fire event (before full_p and anon_p are created)
        local event = {
@@ -249,8 +250,8 @@ function room_mt:publicise_occupant_status(occupant, base_x, nick, actor, reason
        end
 
        -- General populance
-       for nick, n_occupant in self:each_occupant() do
-               if nick ~= occupant.nick then
+       for occupant_nick, n_occupant in self:each_occupant() do
+               if occupant_nick ~= occupant.nick then
                        local pr;
                        if can_see_real_jids(whois, n_occupant) then
                                pr = get_full_p();
@@ -329,7 +330,7 @@ function room_mt:get_disco_items(stanza)
        return reply;
 end
 
-function room_mt:handle_kickable(origin, stanza)
+function room_mt:handle_kickable(origin, stanza) -- luacheck: ignore 212
        local real_jid = stanza.attr.from;
        local occupant = self:get_occupant_by_real_jid(real_jid);
        if occupant == nil then return nil; end
@@ -388,7 +389,8 @@ function room_mt:handle_presence_to_occupant(origin, stanza)
                        if type == "unavailable" and orig_occupant == nil then return true; end -- Unavailable from someone not in the room
                end
                local is_first_dest_session;
-               if type == "unavailable" then
+               if type == "unavailable" then -- luacheck: ignore 542
+                       -- FIXME Why the empty if branch?
                        -- dest_occupant = nil
                elseif orig_occupant and orig_occupant.nick == stanza.attr.to then -- Just a presence update
                        log("debug", "presence update for %s from session %s", orig_occupant.nick, real_jid);
@@ -504,7 +506,7 @@ function room_mt:handle_presence_to_occupant(origin, stanza)
 
                        if orig_occupant == nil then
                                -- Send occupant list to newly joined user
-                               self:send_occupant_list(real_jid, function(nick, occupant)
+                               self:send_occupant_list(real_jid, function(nick, occupant) -- luacheck: ignore 212
                                        -- Don't include self
                                        return occupant:get_presence(real_jid) == nil;
                                end)
@@ -546,7 +548,7 @@ function room_mt:handle_iq_to_occupant(origin, stanza)
        if (type == "error" or type == "result") then
                do -- deconstruct_stanza_id
                        if not occupant then return nil; end
-                       local from_jid, id, to_jid_hash = (base64.decode(stanza.attr.id) or ""):match("^(.+)%z(.*)%z(.+)$");
+                       local from_jid, orig_id, to_jid_hash = (base64.decode(id) or ""):match("^(%Z+)%z(%Z*)%z(.+)$");
                        if not(from == from_jid or from == jid_bare(from_jid)) then return nil; end
                        local from_occupant_jid = self:get_occupant_jid(from_jid);
                        if from_occupant_jid == nil then return nil; end
@@ -558,7 +560,7 @@ function room_mt:handle_iq_to_occupant(origin, stanza)
                                end
                        end
                        if session_jid == nil then return nil; end
-                       stanza.attr.from, stanza.attr.to, stanza.attr.id = from_occupant_jid, session_jid, id;
+                       stanza.attr.from, stanza.attr.to, stanza.attr.id = from_occupant_jid, session_jid, orig_id;
                end
                log("debug", "%s sent private iq stanza to %s (%s)", from, to, stanza.attr.to);
                self:route_stanza(stanza);
@@ -644,11 +646,11 @@ function room_mt:process_form(origin, stanza)
        if form.attr.type == "cancel" then
                origin.send(st.reply(stanza));
        elseif form.attr.type == "submit" then
-               local fields;
+               local fields, errors, present;
                if form.tags[1] == nil then -- Instant room
-                       fields = {};
+                       fields, present = {}, {};
                else
-                       fields = self:get_form_layout(stanza.attr.from):data(form);
+                       fields, errors, present = self:get_form_layout(stanza.attr.from):data(form);
                        if fields.FORM_TYPE ~= "http://jabber.org/protocol/muc#roomconfig" then
                                origin.send(st.error_reply(stanza, "cancel", "bad-request", "Form is not of type room configuration"));
                                return true;
@@ -666,6 +668,11 @@ function room_mt:process_form(origin, stanza)
                        return true;
                end
                module:fire_event("muc-config-submitted", event);
+               for submitted_field in pairs(present) do
+                       event.field, event.value = submitted_field, fields[submitted_field];
+                       module:fire_event("muc-config-submitted/"..submitted_field, event);
+               end
+               event.field, event.value = nil, nil;
 
                if self.save then self:save(true); end
                origin.send(st.reply(stanza));
@@ -689,7 +696,7 @@ end
 function room_mt:clear(x)
        x = x or st.stanza("x", {xmlns='http://jabber.org/protocol/muc#user'});
        local occupants_updated = {};
-       for nick, occupant in self:each_occupant() do
+       for nick, occupant in self:each_occupant() do -- luacheck: ignore 213
                occupant.role = nil;
                self:save_occupant(occupant);
                occupants_updated[occupant] = true;
@@ -723,6 +730,9 @@ end
 
 function room_mt:handle_admin_query_set_command(origin, stanza)
        local item = stanza.tags[1].tags[1];
+       if not item then
+               origin.send(st.error_reply(stanza, "cancel", "bad-request"));
+       end
        if item.attr.jid then -- Validate provided JID
                item.attr.jid = jid_prep(item.attr.jid);
                if not item.attr.jid then
@@ -747,8 +757,11 @@ function room_mt:handle_admin_query_set_command(origin, stanza)
        else
                success, errtype, err = nil, "cancel", "bad-request";
        end
-       if not success then origin.send(st.error_reply(stanza, errtype, err)); end
-       origin.send(st.reply(stanza));
+       if not success then
+               origin.send(st.error_reply(stanza, errtype, err));
+       else
+               origin.send(st.reply(stanza));
+       end
        return true;
 end
 
@@ -762,7 +775,7 @@ function room_mt:handle_admin_query_get_command(origin, stanza)
        if _aff and _aff_rank and not _rol then
                -- You need to be at least an admin, and be requesting info about your affifiliation or lower
                -- e.g. an admin can't ask for a list of owners
-               local affiliation_rank = valid_affiliations[affiliation];
+               local affiliation_rank = valid_affiliations[affiliation or "none"];
                if affiliation_rank >= valid_affiliations.admin and affiliation_rank >= _aff_rank then
                        local reply = st.reply(stanza):query("http://jabber.org/protocol/muc#admin");
                        for jid in self:each_affiliation(_aff or "none") do
@@ -872,7 +885,7 @@ end
 -- Need visitor role or higher to invite
 module:hook("muc-pre-invite", function(event)
        local room, stanza = event.room, event.stanza;
-       local _from, _to = stanza.attr.from, stanza.attr.to;
+       local _from = stanza.attr.from;
        local inviter = room:get_occupant_by_real_jid(_from);
        local role = inviter and inviter.role or room:get_default_role(room:get_affiliation(_from));
        if valid_roles[role or "none"] <= valid_roles.visitor then
@@ -944,7 +957,7 @@ function room_mt:handle_mediated_decline(origin, stanza)
                        :up()
                :up();
        if not module:fire_event("muc-decline", {room = self, stanza = decline, origin = origin, incoming = stanza}) then
-               local declinee = decline.attr.to; -- re-fetch, in case event modified it
+               declinee = decline.attr.to; -- re-fetch, in case event modified it
                local occupant
                if jid_bare(declinee) == self.jid then -- declinee jid is already an in-room jid
                        occupant = self:get_occupant_by_nick(declinee);
@@ -980,7 +993,7 @@ function room_mt:handle_message_to_room(origin, stanza)
                local x = stanza:get_child("x", "http://jabber.org/protocol/muc#user");
                if x then
                        local payload = x.tags[1];
-                       if payload == nil then
+                       if payload == nil then --luacheck: ignore 542
                                -- fallthrough
                        elseif payload.name == "invite" and payload.attr.to then
                                return self:handle_mediated_invite(origin, stanza)
@@ -993,7 +1006,7 @@ function room_mt:handle_message_to_room(origin, stanza)
        end
 end
 
-function room_mt:route_stanza(stanza)
+function room_mt:route_stanza(stanza) -- luacheck: ignore 212
        module:send(stanza);
 end
 
@@ -1067,7 +1080,7 @@ function room_mt:set_affiliation(actor, jid, affiliation, reason)
        local role = self:get_default_role(affiliation);
        local role_rank = valid_roles[role or "none"];
        local occupants_updated = {}; -- Filled with old roles
-       for nick, occupant in self:each_occupant() do
+       for nick, occupant in self:each_occupant() do -- luacheck: ignore 213
                if occupant.bare_jid == jid or (
                        -- Outcast can be by host.
                        is_host_only and affiliation == "outcast" and select(2, jid_split(occupant.bare_jid)) == host
@@ -1103,7 +1116,7 @@ function room_mt:set_affiliation(actor, jid, affiliation, reason)
                        (old_role ~= "moderator" and occupant.role == "moderator") then -- Has gained or lost moderator status
                        -- Send everyone else's presences (as jid visibility has changed)
                        for real_jid in occupant:each_session() do
-                               self:send_occupant_list(real_jid, function(occupant_jid, occupant)
+                               self:send_occupant_list(real_jid, function(occupant_jid, occupant) --luacheck: ignore 212 433
                                        return occupant.bare_jid ~= jid;
                                end);
                        end
@@ -1146,7 +1159,7 @@ function room_mt:set_role(actor, occupant_jid, role, reason)
        else
                -- Can't do anything to other owners or admins
                local occupant_affiliation = self:get_affiliation(occupant.bare_jid);
-               if occupant_affiliation == "owner" and occupant_affiliation == "admin" then
+               if occupant_affiliation == "owner" or occupant_affiliation == "admin" then
                        return nil, "cancel", "not-allowed";
                end
 
@@ -1178,61 +1191,14 @@ function room_mt:set_role(actor, occupant_jid, role, reason)
        return true;
 end
 
-local affiliation_notify = module:require "muc/affiliation_notify";
-
-local name = module:require "muc/name";
-room_mt.get_name = name.get;
-room_mt.set_name = name.set;
-
-local description = module:require "muc/description";
-room_mt.get_description = description.get;
-room_mt.set_description = description.set;
-
-local hidden = module:require "muc/hidden";
-room_mt.get_hidden = hidden.get;
-room_mt.set_hidden = hidden.set;
-function room_mt:get_public()
-       return not self:get_hidden();
-end
-function room_mt:set_public(public)
-       return self:set_hidden(not public);
-end
-
-local password = module:require "muc/password";
-room_mt.get_password = password.get;
-room_mt.set_password = password.set;
-
 local whois = module:require "muc/whois";
 room_mt.get_whois = whois.get;
 room_mt.set_whois = whois.set;
 
-local members_only = module:require "muc/members_only";
-room_mt.get_members_only = members_only.get;
-room_mt.set_members_only = members_only.set;
-
-local moderated = module:require "muc/moderated";
-room_mt.get_moderated = moderated.get;
-room_mt.set_moderated = moderated.set;
-
-local persistent = module:require "muc/persistent";
-room_mt.get_persistent = persistent.get;
-room_mt.set_persistent = persistent.set;
-
-local subject = module:require "muc/subject";
-room_mt.get_changesubject = subject.get_changesubject;
-room_mt.set_changesubject = subject.set_changesubject;
-room_mt.get_subject = subject.get;
-room_mt.set_subject = subject.set;
-room_mt.send_subject = subject.send;
-
-local history = module:require "muc/history";
-room_mt.send_history = history.send;
-room_mt.get_historylength = history.get_length;
-room_mt.set_historylength = history.set_length;
-
 local _M = {}; -- module "muc"
 
-function _M.new_room(jid, config)
+function _M.new_room(jid, config) -- luacheck: ignore 212
+       -- TODO use config?
        return setmetatable({
                jid = jid;
                _jid_nick = {};