]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/override_stats.cpp
Add an event provider class for the event/messagetag event.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / override_stats.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2007 Craig Edwards <craigedwards@brainbox.cc>
6  *
7  * This file is part of InspIRCd.  InspIRCd is free software: you can
8  * redistribute it and/or modify it under the terms of the GNU General Public
9  * License as published by the Free Software Foundation, version 2.
10  *
11  * This program is distributed in the hope that it will be useful, but WITHOUT
12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20
21 #include "inspircd.h"
22
23 #include "main.h"
24 #include "utils.h"
25 #include "link.h"
26
27 ModResult ModuleSpanningTree::OnStats(Stats::Context& stats)
28 {
29         if ((stats.GetSymbol() == 'c') || (stats.GetSymbol() == 'n'))
30         {
31                 for (std::vector<reference<Link> >::iterator i = Utils->LinkBlocks.begin(); i != Utils->LinkBlocks.end(); ++i)
32                 {
33                         Link* L = *i;
34                         std::string ipaddr = "*@";
35                         if (L->HiddenFromStats)
36                                 ipaddr.append("<hidden>");
37                         else
38                                 ipaddr.append(L->IPAddr);
39
40                         const std::string hook = (L->Hook.empty() ? "plaintext" : L->Hook);
41                         stats.AddRow(213, stats.GetSymbol(), ipaddr, '*', L->Name, L->Port, hook);
42                         if (stats.GetSymbol() == 'c')
43                                 stats.AddRow(244, 'H', '*', '*', L->Name);
44                 }
45                 return MOD_RES_DENY;
46         }
47         else if (stats.GetSymbol() == 'U')
48         {
49                 ConfigTagList tags = ServerInstance->Config->ConfTags("uline");
50                 for (ConfigIter i = tags.first; i != tags.second; ++i)
51                 {
52                         std::string name = i->second->getString("server");
53                         if (!name.empty())
54                                 stats.AddRow(248, 'U', name);
55                 }
56                 return MOD_RES_DENY;
57         }
58         return MOD_RES_PASSTHRU;
59 }