]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/snomasks.cpp
Remove InspIRCd* parameters and fields
[user/henk/code/inspircd.git] / src / snomasks.cpp
index 787d98b0a361e4aa1b102ee5492cc182291d240d..742214a6d60888c24646689105bcaa580e21b6e7 100644 (file)
@@ -3,7 +3,7 @@
  *       +------------------------------------+
  *
  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
- * See: http://www.inspircd.org/wiki/index.php/Credits
+ * See: http://wiki.inspircd.org/Credits
  *
  * This program is free but copyrighted software; see
  *            the file COPYING for details.
@@ -17,7 +17,7 @@
 #include <stdarg.h>
 #include "snomasks.h"
 
-SnomaskManager::SnomaskManager(InspIRCd* Instance) : ServerInstance(Instance)
+SnomaskManager::SnomaskManager()
 {
        SnoMasks.clear();
        this->SetupDefaults();
@@ -44,7 +44,7 @@ bool SnomaskManager::EnableSnomask(char letter, const std::string &type)
 {
        if (SnoMasks.find(letter) == SnoMasks.end())
        {
-               Snomask *s = new Snomask(ServerInstance, letter, type);
+               Snomask *s = new Snomask(letter, type);
                SnoMasks[letter] = s;
                return true;
        }
@@ -73,6 +73,13 @@ void SnomaskManager::WriteToSnoMask(char letter, const std::string &text)
        }
 }
 
+void SnomaskManager::WriteGlobalSno(char letter, const std::string& text)
+{
+       WriteToSnoMask(letter, text);
+       letter = toupper(letter);
+       ServerInstance->PI->SendSNONotice(std::string(1, letter), text);
+}
+
 void SnomaskManager::WriteToSnoMask(char letter, const char* text, ...)
 {
        char textbuffer[MAXBUF];
@@ -85,6 +92,18 @@ void SnomaskManager::WriteToSnoMask(char letter, const char* text, ...)
        this->WriteToSnoMask(letter, std::string(textbuffer));
 }
 
+void SnomaskManager::WriteGlobalSno(char letter, const char* text, ...)
+{
+       char textbuffer[MAXBUF];
+       va_list argsPtr;
+
+       va_start(argsPtr, text);
+       vsnprintf(textbuffer, MAXBUF, text, argsPtr);
+       va_end(argsPtr);
+
+       this->WriteGlobalSno(letter, std::string(textbuffer));
+}
+
 bool SnomaskManager::IsEnabled(char letter)
 {
        return (SnoMasks.find(letter) != SnoMasks.end());
@@ -102,9 +121,11 @@ void SnomaskManager::SetupDefaults()
        this->EnableSnomask('L',"REMOTELINK");                  /* Remote linking notices */
        this->EnableSnomask('o',"OPER");                        /* Oper up/down notices */
        this->EnableSnomask('O',"REMOTEOPER");                  /* Remote oper up/down notices */
-       this->EnableSnomask('A',"ANNOUNCEMENT");        /* formerly WriteOpers() - generic notices to all opers */
+       this->EnableSnomask('a',"ANNOUNCEMENT");        /* formerly WriteOpers() - generic notices to all opers */
+       this->EnableSnomask('A',"REMOTEANNOUNCEMENT");  /* formerly WriteOpers() - generic notices to all opers */
        this->EnableSnomask('d',"DEBUG");                       /* Debug notices */
        this->EnableSnomask('x',"XLINE");                       /* Xline notice (g/z/q/k/e) */
+       this->EnableSnomask('X',"REMOTEXLINE");                 /* Remove Xline notice (g/z/q/k/e) */
        this->EnableSnomask('t',"STATS");                       /* Local or remote stats request */
        this->EnableSnomask('f',"FLOOD");                       /* Flooding notices */
 }
@@ -119,13 +140,13 @@ void Snomask::SendMessage(const std::string &message)
                LastMessage = message;
 
                std::string desc = this->Description;
-               int MOD_RESULT = 0;
+               ModResult MOD_RESULT;
                char mysnomask = MySnomask;
                ServerInstance->Logs->Log("snomask", DEFAULT, "%s: %s", desc.c_str(), message.c_str());
 
-               FOREACH_RESULT(I_OnSendSnotice, OnSendSnotice(mysnomask, desc, message));
+               FIRST_MOD_RESULT(OnSendSnotice, MOD_RESULT, (mysnomask, desc, message));
 
-               LastBlocked = (MOD_RESULT == 1); // 1 blocks the message
+               LastBlocked = (MOD_RESULT == MOD_RES_DENY);
 
                if (!LastBlocked)
                {