]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/snomasks.cpp
Add global-routing snomask functions
[user/henk/code/inspircd.git] / src / snomasks.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2009 InspIRCd Development Team
6  * See: http://wiki.inspircd.org/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 /* $Core */
15
16 #include "inspircd.h"
17 #include <stdarg.h>
18 #include "snomasks.h"
19
20 SnomaskManager::SnomaskManager(InspIRCd* Instance) : ServerInstance(Instance)
21 {
22         SnoMasks.clear();
23         this->SetupDefaults();
24 }
25
26 SnomaskManager::~SnomaskManager()
27 {
28         for (std::map<char, Snomask *>::iterator i = SnoMasks.begin(); i != SnoMasks.end(); i++)
29         {
30                 delete i->second;
31         }
32         SnoMasks.clear();
33 }
34
35 void SnomaskManager::FlushSnotices()
36 {
37         for (std::map<char, Snomask *>::iterator i = SnoMasks.begin(); i != SnoMasks.end(); i++)
38         {
39                 i->second->Flush();
40         }
41 }
42
43 bool SnomaskManager::EnableSnomask(char letter, const std::string &type)
44 {
45         if (SnoMasks.find(letter) == SnoMasks.end())
46         {
47                 Snomask *s = new Snomask(ServerInstance, letter, type);
48                 SnoMasks[letter] = s;
49                 return true;
50         }
51         return false;
52 }
53
54 bool SnomaskManager::DisableSnomask(char letter)
55 {
56         SnoList::iterator n = SnoMasks.find(letter);
57         if (n != SnoMasks.end())
58         {
59                 delete n->second; // destroy the snomask
60                 SnoMasks.erase(n);
61                 return true;
62         }
63         return false;
64 }
65
66 void SnomaskManager::WriteToSnoMask(char letter, const std::string &text)
67 {
68         /* Only send to snomask chars which are enabled */
69         SnoList::iterator n = SnoMasks.find(letter);
70         if (n != SnoMasks.end())
71         {
72                 n->second->SendMessage(text);
73         }
74 }
75
76 void SnomaskManager::WriteGlobalSno(char letter, const std::string& text)
77 {
78         WriteToSnoMask(letter, text);
79         letter = toupper(letter);
80         ServerInstance->PI->SendSNONotice(std::string(1, letter), text);
81 }
82
83 void SnomaskManager::WriteToSnoMask(char letter, const char* text, ...)
84 {
85         char textbuffer[MAXBUF];
86         va_list argsPtr;
87
88         va_start(argsPtr, text);
89         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
90         va_end(argsPtr);
91
92         this->WriteToSnoMask(letter, std::string(textbuffer));
93 }
94
95 void SnomaskManager::WriteGlobalSno(char letter, const char* text, ...)
96 {
97         char textbuffer[MAXBUF];
98         va_list argsPtr;
99
100         va_start(argsPtr, text);
101         vsnprintf(textbuffer, MAXBUF, text, argsPtr);
102         va_end(argsPtr);
103
104         this->WriteGlobalSno(letter, std::string(textbuffer));
105 }
106
107 bool SnomaskManager::IsEnabled(char letter)
108 {
109         return (SnoMasks.find(letter) != SnoMasks.end());
110 }
111
112 void SnomaskManager::SetupDefaults()
113 {
114         this->EnableSnomask('c',"CONNECT");                     /* Local connect notices */
115         this->EnableSnomask('C',"REMOTECONNECT");       /* Remote connect notices */
116         this->EnableSnomask('q',"QUIT");                        /* Local quit notices */
117         this->EnableSnomask('Q',"REMOTEQUIT");          /* Remote quit notices */
118         this->EnableSnomask('k',"KILL");                        /* Kill notices */
119         this->EnableSnomask('K',"REMOTEKILL");          /* Remote kill notices */
120         this->EnableSnomask('l',"LINK");                        /* Linking notices */
121         this->EnableSnomask('L',"REMOTELINK");                  /* Remote linking notices */
122         this->EnableSnomask('o',"OPER");                        /* Oper up/down notices */
123         this->EnableSnomask('O',"REMOTEOPER");                  /* Remote oper up/down notices */
124         this->EnableSnomask('a',"ANNOUNCEMENT");        /* formerly WriteOpers() - generic notices to all opers */
125         this->EnableSnomask('A',"REMOTEANNOUNCEMENT");  /* formerly WriteOpers() - generic notices to all opers */
126         this->EnableSnomask('d',"DEBUG");                       /* Debug notices */
127         this->EnableSnomask('x',"XLINE");                       /* Xline notice (g/z/q/k/e) */
128         this->EnableSnomask('t',"STATS");                       /* Local or remote stats request */
129         this->EnableSnomask('f',"FLOOD");                       /* Flooding notices */
130 }
131
132 /*************************************************************************************/
133
134 void Snomask::SendMessage(const std::string &message)
135 {
136         if (message != LastMessage)
137         {
138                 this->Flush();
139                 LastMessage = message;
140
141                 std::string desc = this->Description;
142                 int MOD_RESULT = 0;
143                 char mysnomask = MySnomask;
144                 ServerInstance->Logs->Log("snomask", DEFAULT, "%s: %s", desc.c_str(), message.c_str());
145
146                 FOREACH_RESULT(I_OnSendSnotice, OnSendSnotice(mysnomask, desc, message));
147
148                 LastBlocked = (MOD_RESULT == 1); // 1 blocks the message
149
150                 if (!LastBlocked)
151                 {
152                         /* Only opers can receive snotices, so we iterate the oper list */
153                         std::list<User*>::iterator i = ServerInstance->Users->all_opers.begin();
154
155                         while (i != ServerInstance->Users->all_opers.end())
156                         {
157                                 User* a = *i;
158                                 if (IS_LOCAL(a) && a->IsModeSet('s') && a->IsNoticeMaskSet(mysnomask) && !a->quitting)
159                                 {
160                                         a->WriteServ("NOTICE %s :*** %s: %s", a->nick.c_str(), desc.c_str(), message.c_str());
161                                 }
162
163                                 i++;
164                         }
165                 }
166         }
167         Count++;
168 }
169
170 void Snomask::Flush()
171 {
172         if (Count > 1)
173         {
174                 std::string desc = this->Description;
175                 std::string mesg = "(last message repeated "+ConvToStr(Count)+" times)";
176                 char mysnomask = MySnomask;
177
178                 ServerInstance->Logs->Log("snomask", DEFAULT, "%s: %s", desc.c_str(), mesg.c_str());
179
180                 FOREACH_MOD(I_OnSendSnotice, OnSendSnotice(mysnomask, desc, mesg));
181
182                 if (!LastBlocked)
183                 {
184                         /* Only opers can receive snotices, so we iterate the oper list */
185                         std::list<User*>::iterator i = ServerInstance->Users->all_opers.begin();
186
187                         while (i != ServerInstance->Users->all_opers.end())
188                         {
189                                 User* a = *i;
190                                 if (IS_LOCAL(a) && a->IsModeSet('s') && a->IsNoticeMaskSet(mysnomask) && !a->quitting)
191                                 {
192                                         a->WriteServ("NOTICE %s :*** %s: %s", a->nick.c_str(), desc.c_str(), mesg.c_str());
193                                 }
194
195                                 i++;
196                         }
197                 }
198
199         }
200         LastMessage = "";
201         LastBlocked = false;
202         Count = 0;
203 }