]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_who.cpp
Slightly modify WHO <port> p to allow a port range, e.g. "WHO 6660-6669,7000,7001...
[user/henk/code/inspircd.git] / src / cmd_who.cpp
index 39169b4ac4365e82fc32bf1b2b440a03152030fd..df209991a24948c67fc2dcf49cba1c8d0ce801f4 100644 (file)
@@ -44,6 +44,11 @@ bool cmd_who::whomatch(userrec* user, const char* matchtext)
        if (user->registered != REG_ALL)
                return false;
 
+       if (opt_local && !IS_LOCAL(user))
+               return false;
+       else if (opt_far && IS_LOCAL(user))
+               return false;
+
        if (opt_mode)
        {
                for (const char* n = matchtext; *n; n++)
@@ -83,7 +88,13 @@ bool cmd_who::whomatch(userrec* user, const char* matchtext)
                                        else
                                        {
                                                if (opt_port)
-                                                       port = (user->GetPort() == ConvToInt(matchtext));
+                                               {
+                                                       irc::portparser portrange(matchtext, false);
+                                                       long portno = -1;
+                                                       while ((portno = portrange.GetToken()))
+                                                               if (portno == user->GetPort())
+                                                                       port = true;
+                                               }
                                                else
                                                {
                                                        if (opt_away)
@@ -174,6 +185,8 @@ CmdResult cmd_who::Handle (const char** parameters, int pcnt, userrec *user)
        opt_metadata = false;
        opt_port = false;
        opt_away = false;
+       opt_local = false;
+       opt_far = false;
 
        chanrec *ch = NULL;
        std::vector<std::string> whoresults;
@@ -224,6 +237,12 @@ CmdResult cmd_who::Handle (const char** parameters, int pcnt, userrec *user)
                                case 'a':
                                        opt_away = true;
                                break;
+                               case 'l':
+                                       opt_local = true;
+                               break;
+                               case 'f':
+                                       opt_far = true;
+                               break;
                        }
 
                        *iter++;
@@ -246,14 +265,14 @@ 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 && !*(i->second)->oper)
+                               if (opt_viewopersonly && !IS_OPER(i->first))
                                        continue;
        
                                /* If we're not inside the channel, hide +i users */
-                               if (i->second->IsModeSet('i') && !inside)
+                               if (i->first->IsModeSet('i') && !inside)
                                        continue;
        
-                               SendWhoLine(user, initial, ch, i->second, whoresults);
+                               SendWhoLine(user, initial, ch, i->first, whoresults);
                        }
                }
        }
@@ -270,8 +289,10 @@ CmdResult cmd_who::Handle (const char** parameters, int pcnt, userrec *user)
 
                                if (whomatch(oper, matchtext))
                                {
-                                       if (!oper->IsModeSet('i'))
-                                               SendWhoLine(user, initial, NULL, oper, whoresults);
+                                       if ((!oper->IsModeSet('i')) && (!IS_OPER(user)))
+                                               continue;
+
+                                       SendWhoLine(user, initial, NULL, oper, whoresults);
                                }
                        }
                }
@@ -281,8 +302,10 @@ CmdResult cmd_who::Handle (const char** parameters, int pcnt, userrec *user)
                        {
                                if (whomatch(i->second, matchtext))
                                {
-                                       if (!i->second->IsModeSet('i'))
-                                               SendWhoLine(user, initial, NULL, i->second, whoresults);
+                                       if ((i->second->IsModeSet('i')) && (!IS_OPER(user)))
+                                               continue;
+
+                                       SendWhoLine(user, initial, NULL, i->second, whoresults);
                                }
                        }
                }