]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/coremods/core_channel/cmd_names.cpp
986dbe01889d7daa65b3c5822603f0c20f586c6d
[user/henk/code/inspircd.git] / src / coremods / core_channel / cmd_names.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22 #include "core_channel.h"
23
24 CommandNames::CommandNames(Module* parent)
25         : SplitCommand(parent, "NAMES", 0, 0)
26         , secretmode(parent, "secret")
27         , privatemode(parent, "private")
28         , invisiblemode(parent, "invisible")
29 {
30         syntax = "{<channel>{,<channel>}}";
31 }
32
33 /** Handle /NAMES
34  */
35 CmdResult CommandNames::HandleLocal(const std::vector<std::string>& parameters, LocalUser* user)
36 {
37         Channel* c;
38
39         if (!parameters.size())
40         {
41                 user->WriteNumeric(RPL_ENDOFNAMES, "* :End of /NAMES list.");
42                 return CMD_SUCCESS;
43         }
44
45         if (CommandParser::LoopCall(user, this, parameters, 0))
46                 return CMD_SUCCESS;
47
48         c = ServerInstance->FindChan(parameters[0]);
49         if (c)
50         {
51                 // Show the NAMES list if one of the following is true:
52                 // - the channel is not secret
53                 // - the user doing the /NAMES is inside the channel
54                 // - the user doing the /NAMES has the channels/auspex privilege
55
56                 // If the user is inside the channel or has privs, instruct SendNames() to show invisible (+i) members
57                 bool show_invisible = ((c->HasUser(user)) || (user->HasPrivPermission("channels/auspex")));
58                 if ((show_invisible) || (!c->IsModeSet(secretmode)))
59                 {
60                         SendNames(user, c, show_invisible);
61                         return CMD_SUCCESS;
62                 }
63         }
64
65         user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", parameters[0].c_str());
66         return CMD_FAILURE;
67 }
68
69 void CommandNames::SendNames(LocalUser* user, Channel* chan, bool show_invisible)
70 {
71         Numeric::Builder<' '> reply(user, RPL_NAMREPLY, false);
72         std::string& list = reply.GetNumeric();
73         if (chan->IsModeSet(secretmode))
74                 list.push_back('@');
75         else if (chan->IsModeSet(privatemode))
76                 list.push_back('*');
77         else
78                 list.push_back('=');
79
80         list.push_back(' ');
81         list.append(chan->name).append(" :");
82         reply.SaveBeginPos();
83
84         std::string prefixlist;
85         std::string nick;
86         const Channel::MemberMap& members = chan->GetUsers();
87         for (Channel::MemberMap::const_iterator i = members.begin(); i != members.end(); ++i)
88         {
89                 if ((!show_invisible) && (i->first->IsModeSet(invisiblemode)))
90                 {
91                         // Member is invisible and we are not supposed to show them
92                         continue;
93                 }
94
95                 Membership* const memb = i->second;
96
97                 prefixlist.clear();
98                 char prefix = memb->GetPrefixChar();
99                 if (prefix)
100                         prefixlist.push_back(prefix);
101                 nick = i->first->nick;
102
103                 ModResult res;
104                 FIRST_MOD_RESULT(OnNamesListItem, res, (user, memb, prefixlist, nick));
105
106                 // See if a module wants us to exclude this user from NAMES
107                 if (res == MOD_RES_DENY)
108                         continue;
109
110                 reply.Add(prefixlist, nick);
111         }
112
113         reply.Flush();
114         user->WriteNumeric(RPL_ENDOFNAMES, "%s :End of /NAMES list.", chan->name.c_str());
115 }