diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-04-09 14:57:42 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-04-09 14:57:42 +0200 |
commit | 6dc4436ae48e6cc4b309d3cec609047920916cde (patch) | |
tree | e74afc57c53bd0fd1021c8cdb9554c0c5c717327 /src/coremods | |
parent | b4a7847bb8f39b466161c5fde7e58d41e81275d7 (diff) |
Move checks determining whether a user is allowed to view the NAMES list of a channel from Channel::UserList() to cmd_names
Diffstat (limited to 'src/coremods')
-rw-r--r-- | src/coremods/core_channel/cmd_names.cpp | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/src/coremods/core_channel/cmd_names.cpp b/src/coremods/core_channel/cmd_names.cpp index 13d912376..558ad8407 100644 --- a/src/coremods/core_channel/cmd_names.cpp +++ b/src/coremods/core_channel/cmd_names.cpp @@ -46,12 +46,19 @@ CmdResult CommandNames::Handle (const std::vector<std::string>& parameters, User c = ServerInstance->FindChan(parameters[0]); if (c) { - c->UserList(user); - } - else - { - user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", parameters[0].c_str()); + // Show the NAMES list if one of the following is true: + // - the channel is not secret + // - the user doing the /NAMES is inside the channel + // - the user doing the /NAMES has the channels/auspex privilege + + bool has_user = c->HasUser(user); + if ((!c->IsModeSet(secretmode)) || (has_user) || (user->HasPrivPermission("channels/auspex"))) + { + c->UserList(user); + return CMD_SUCCESS; + } } - return CMD_SUCCESS; + user->WriteNumeric(ERR_NOSUCHNICK, "%s :No such nick/channel", parameters[0].c_str()); + return CMD_FAILURE; } |