]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/override_stats.cpp
14b3f5ef74b10a6936eb26d9859d4eb6c78421db
[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(char statschar, User* user, string_list &results)
28 {
29         if ((statschar == 'c') || (statschar == 'n'))
30         {
31                 for (std::vector<reference<Link> >::iterator i = Utils->LinkBlocks.begin(); i != Utils->LinkBlocks.end(); ++i)
32                 {
33                         Link* L = *i;
34                         results.push_back("213 "+user->nick+" "+statschar+" *@"+(L->HiddenFromStats ? "<hidden>" : L->IPAddr)+" * "+(*i)->Name.c_str()+" "+ConvToStr(L->Port)+" "+(L->Hook.empty() ? "plaintext" : L->Hook));
35                         if (statschar == 'c')
36                                 results.push_back("244 "+user->nick+" H * * "+L->Name.c_str());
37                 }
38                 return MOD_RES_DENY;
39         }
40         else if (statschar == 'U')
41         {
42                 ConfigTagList tags = ServerInstance->Config->ConfTags("uline");
43                 for (ConfigIter i = tags.first; i != tags.second; ++i)
44                 {
45                         std::string name = i->second->getString("server");
46                         if (!name.empty())
47                                 results.push_back("248 "+user->nick+" U "+name);
48                 }
49                 return MOD_RES_DENY;
50         }
51         return MOD_RES_PASSTHRU;
52 }