]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/coremods/core_whois.cpp
Implement support for multi-prefix on WHOIS.
[user/henk/code/inspircd.git] / src / coremods / core_whois.cpp
index 0755f66f7ae075047c28fb040cec06f82abaf346..c1c4777ef24c397b4bcaff5c555ed290a47ce811 100644 (file)
@@ -1,9 +1,17 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
+ *   Copyright (C) 2019 Matt Schatz <genius3000@g3k.solutions>
+ *   Copyright (C) 2018 linuxdaemon <linuxdaemon.irc@gmail.com>
+ *   Copyright (C) 2018 Dylan Frank <b00mx0r@aureus.pw>
+ *   Copyright (C) 2017-2018, 2020 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2012-2016 Attila Molnar <attilamolnar@hush.com>
+ *   Copyright (C) 2012, 2019 Robby <robby@chatbelgie.be>
+ *   Copyright (C) 2009 Uli Schlachter <psychon@inspircd.org>
  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
- *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
  *   Copyright (C) 2007 Robin Burchell <robin+git@viroteck.net>
+ *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
+ *   Copyright (C) 2006-2008, 2010 Craig Edwards <brain@inspircd.org>
  *
  * This file is part of InspIRCd.  InspIRCd is free software: you can
  * redistribute it and/or modify it under the terms of the GNU General Public
 #include "inspircd.h"
 #include "modules/whois.h"
 
-enum
-{
-       // From RFC 1459.
-       RPL_WHOISUSER = 311,
-       RPL_WHOISOPERATOR = 313,
-       RPL_WHOISIDLE = 317,
-       RPL_WHOISCHANNELS = 319,
-
-       // From UnrealIRCd.
-       RPL_WHOISHOST = 378,
-       RPL_WHOISMODES = 379,
-
-       // InspIRCd-specific.
-       RPL_CHANNELSMSG = 651
-};
-
 enum SplitWhoisState
 {
        // Don't split private/secret channels into a separate RPL_WHOISCHANNELS numeric.
@@ -304,8 +296,8 @@ CmdResult CommandWhois::HandleLocal(LocalUser* user, const Params& parameters)
                return CMD_SUCCESS;
 
        /*
-        * If 2 paramters are specified (/whois nick nick), ignore the first one like spanningtree
-        * does, and use the second one, otherwise, use the only paramter. -- djGrrr
+        * If 2 parameters are specified (/whois nick nick), ignore the first one like spanningtree
+        * does, and use the second one, otherwise, use the only parameter. -- djGrrr
         */
        if (parameters.size() > 1)
                userindex = 1;
@@ -356,7 +348,7 @@ class CoreModWhois : public Module
        void ReadConfig(ConfigStatus&) CXX11_OVERRIDE
        {
                ConfigTag* tag = ServerInstance->Config->ConfValue("options");
-               const std::string splitwhois = tag->getString("splitwhois", "no");
+               const std::string splitwhois = tag->getString("splitwhois", "no", 1);
                SplitWhoisState newsplitstate;
                if (stdalgo::string::equalsci(splitwhois, "no"))
                        newsplitstate = SPLITWHOIS_NONE;
@@ -365,7 +357,7 @@ class CoreModWhois : public Module
                else if (stdalgo::string::equalsci(splitwhois, "splitmsg"))
                        newsplitstate = SPLITWHOIS_SPLITMSG;
                else
-                       throw ModuleException(splitwhois + " is an invalid <security:splitwhois> value, at " + tag->getTagLocation());
+                       throw ModuleException(splitwhois + " is an invalid <options:splitwhois> value, at " + tag->getTagLocation());
 
                ConfigTag* security = ServerInstance->Config->ConfValue("security");
                cmd.genericoper = security->getBool("genericoper");