X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fcmd_who.cpp;h=07370f31eddaa422f7dafc03f68cb8ce54bee1a3;hb=4c83624ed825ca123401a45c8d2844ba6453a85b;hp=b8f0684fff6a5d8389d91b8e505c6c125d44b7b2;hpb=ddbde2059831e1532cfc0c453d61633bdccc8b2d;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/cmd_who.cpp b/src/cmd_who.cpp index b8f0684ff..07370f31e 100644 --- a/src/cmd_who.cpp +++ b/src/cmd_who.cpp @@ -12,9 +12,6 @@ */ #include "inspircd.h" -#include "configreader.h" -#include "users.h" -#include "modules.h" #include "wildcard.h" #include "commands/cmd_who.h" @@ -120,15 +117,17 @@ bool cmd_who::CanView(chanrec* chan, userrec* user) if (!user || !chan) return false; - /* Execute items in fastest-to-execute first order */ - + /* Bug #383 - moved higher up the list, because if we are in the channel + * we can see all its users + */ + if (chan->HasUser(user)) + return true; /* Opers see all */ if (IS_OPER(user)) return true; + /* Cant see inside a +s or a +p channel unless we are a member (see above) */ else if (!chan->IsModeSet('s') && !chan->IsModeSet('p')) return true; - else if (chan->HasUser(user)) - return true; return false; } @@ -193,12 +192,22 @@ CmdResult cmd_who::Handle (const char** parameters, int pcnt, userrec *user) std::string initial = "352 " + std::string(user->nick) + " "; const char* matchtext = NULL; + bool usingwildcards = false; /* Change '0' into '*' so the wildcard matcher can grok it */ matchtext = parameters[0]; if (!strcmp(matchtext,"0")) matchtext = "*"; + for (const char* check = matchtext; *check; check++) + { + if (*check == '*' || *check == '?') + { + usingwildcards = true; + break; + } + } + if (pcnt > 1) { /* parse flags */ @@ -264,13 +273,17 @@ CmdResult cmd_who::Handle (const char** parameters, int pcnt, userrec *user) for (CUList::iterator i = cu->begin(); i != cu->end(); i++) { - /* opers only, please */ - if (opt_viewopersonly && !IS_OPER(i->first)) - continue; + /* None of this applies if we WHO ourselves */ + if (user != i->first) + { + /* opers only, please */ + if (opt_viewopersonly && !IS_OPER(i->first)) + continue; - /* If we're not inside the channel, hide +i users */ - if (i->first->IsModeSet('i') && !inside) - continue; + /* If we're not inside the channel, hide +i users */ + if (i->first->IsModeSet('i') && !inside) + continue; + } SendWhoLine(user, initial, ch, i->first, whoresults); } @@ -279,7 +292,6 @@ CmdResult cmd_who::Handle (const char** parameters, int pcnt, userrec *user) else { /* Match against wildcard of nick, server or host */ - if (opt_viewopersonly) { /* Showing only opers */ @@ -289,8 +301,11 @@ CmdResult cmd_who::Handle (const char** parameters, int pcnt, userrec *user) if (whomatch(oper, matchtext)) { - if ((!oper->IsModeSet('i')) && (!IS_OPER(user))) - continue; + if (!user->SharesChannelWith(oper)) + { + if (usingwildcards && (!oper->IsModeSet('i')) && (!IS_OPER(user))) + continue; + } SendWhoLine(user, initial, NULL, oper, whoresults); } @@ -302,8 +317,11 @@ CmdResult cmd_who::Handle (const char** parameters, int pcnt, userrec *user) { if (whomatch(i->second, matchtext)) { - if ((i->second != user) && (i->second->IsModeSet('i')) && (!IS_OPER(user))) - continue; + if (!user->SharesChannelWith(i->second)) + { + if (usingwildcards && (i->second->IsModeSet('i')) && (!IS_OPER(user))) + continue; + } SendWhoLine(user, initial, NULL, i->second, whoresults); } @@ -325,3 +343,4 @@ CmdResult cmd_who::Handle (const char** parameters, int pcnt, userrec *user) return CMD_FAILURE; } } +