]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/override_map.cpp
Make all User::IsModeSet() methods const, accept const ModeHandler
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / override_map.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2014 Adam <Adam@anope.org>
5  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
6  *   Copyright (C) 2007-2008 Craig Edwards <craigedwards@brainbox.cc>
7  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
8  *
9  * This file is part of InspIRCd.  InspIRCd is free software: you can
10  * redistribute it and/or modify it under the terms of the GNU General Public
11  * License as published by the Free Software Foundation, version 2.
12  *
13  * This program is distributed in the hope that it will be useful, but WITHOUT
14  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22
23 #include "inspircd.h"
24
25 #include "main.h"
26 #include "utils.h"
27 #include "treeserver.h"
28 #include "commands.h"
29
30 CommandMap::CommandMap(Module* Creator)
31         : Command(Creator, "MAP", 0, 1)
32 {
33         Penalty = 2;
34 }
35
36 static inline bool IsHidden(User* user, TreeServer* server)
37 {
38         if (!user->IsOper())
39         {
40                 if (server->Hidden)
41                         return true;
42                 if (Utils->HideULines && server->IsULine())
43                         return true;
44         }
45
46         return false;
47 }
48
49 // Calculate the map depth the servers go, and the longest server name
50 static void GetDepthAndLen(TreeServer* current, unsigned int depth, unsigned int& max_depth, unsigned int& max_len)
51 {
52         if (depth > max_depth)
53                 max_depth = depth;
54         if (current->GetName().length() > max_len)
55                 max_len = current->GetName().length();
56
57         const TreeServer::ChildServers& servers = current->GetChildren();
58         for (TreeServer::ChildServers::const_iterator i = servers.begin(); i != servers.end(); ++i)
59         {
60                 TreeServer* child = *i;
61                 GetDepthAndLen(child, depth + 1, max_depth, max_len);
62         }
63 }
64
65 static std::vector<std::string> GetMap(User* user, TreeServer* current, unsigned int max_len, unsigned int depth)
66 {
67         float percent = 0;
68
69         const user_hash& users = ServerInstance->Users->GetUsers();
70         if (!users.empty())
71         {
72                 // If there are no users, WHO THE HELL DID THE /MAP?!?!?!
73                 percent = current->UserCount * 100.0 / users.size();
74         }
75
76         std::string buffer = current->GetName();
77         if (user->IsOper())
78         {
79                 buffer += " (" + current->GetID() + ")";
80         }
81
82         // Pad with spaces until its at max len, max_len must always be >= my names length
83         buffer.append(max_len - current->GetName().length(), ' ');
84
85         buffer += InspIRCd::Format("%5d [%5.2f%%]", current->UserCount, percent);
86
87         if (user->IsOper())
88         {
89                 time_t secs_up = ServerInstance->Time() - current->age;
90                 buffer += " [Up: " + ModuleSpanningTree::TimeToStr(secs_up) + (current->rtt == 0 ? "]" : " Lag: " + ConvToStr(current->rtt) + "ms]");
91         }
92
93         std::vector<std::string> map;
94         map.push_back(buffer);
95
96         const TreeServer::ChildServers& servers = current->GetChildren();
97         for (TreeServer::ChildServers::const_iterator i = servers.begin(); i != servers.end(); ++i)
98         {
99                 TreeServer* child = *i;
100
101                 if (IsHidden(user, child))
102                         continue;
103
104                 bool last = true;
105                 for (TreeServer::ChildServers::const_iterator j = i + 1; last && j != servers.end(); ++j)
106                         if (!IsHidden(user, *j))
107                                 last = false;
108
109                 unsigned int next_len;
110
111                 if (user->IsOper() || !Utils->FlatLinks)
112                 {
113                         // This child is indented by us, so remove the depth from the max length to align the users properly
114                         next_len = max_len - 2;
115                 }
116                 else
117                 {
118                         // This user can not see depth, so max_len remains constant
119                         next_len = max_len;
120                 }
121
122                 // Build the map for this child
123                 std::vector<std::string> child_map = GetMap(user, child, next_len, depth + 1);
124
125                 for (std::vector<std::string>::const_iterator j = child_map.begin(); j != child_map.end(); ++j)
126                 {
127                         const char* prefix;
128
129                         if (user->IsOper() || !Utils->FlatLinks)
130                         {
131                                 // If this server is not the root child
132                                 if (j != child_map.begin())
133                                 {
134                                         // If this child is not my last child, then add |
135                                         // to be able to "link" the next server in my list to me, and to indent this childs servers
136                                         if (!last)
137                                                 prefix = "| ";
138                                         // Otherwise this is my last child, so just use a space as theres nothing else linked to me below this
139                                         else
140                                                 prefix = "  ";
141                                 }
142                                 // If we get here, this server must be the root child
143                                 else
144                                 {
145                                         // If this is the last child, it gets a `-
146                                         if (last)
147                                                 prefix = "`-";
148                                         // Otherwise this isn't the last child, so it gets |-
149                                         else
150                                                 prefix = "|-";
151                                 }
152                         }
153                         else
154                                 // User can't see depth, so use no prefix
155                                 prefix = "";
156
157                         // Add line to the map
158                         map.push_back(prefix + *j);
159                 }
160         }
161
162         return map;
163 }
164
165 CmdResult CommandMap::Handle(const std::vector<std::string>& parameters, User* user)
166 {
167         if (parameters.size() > 0)
168         {
169                 // Remote MAP, the target server is the 1st parameter
170                 TreeServer* s = Utils->FindServerMask(parameters[0]);
171                 if (!s)
172                 {
173                         user->WriteNumeric(ERR_NOSUCHSERVER, parameters[0], "No such server");
174                         return CMD_FAILURE;
175                 }
176
177                 if (!s->IsRoot())
178                         return CMD_SUCCESS;
179         }
180
181         // Max depth and max server name length
182         unsigned int max_depth = 0;
183         unsigned int max_len = 0;
184         GetDepthAndLen(Utils->TreeRoot, 0, max_depth, max_len);
185
186         unsigned int max;
187         if (user->IsOper() || !Utils->FlatLinks)
188         {
189                 // Each level of the map is indented by 2 characters, making the max possible line (max_depth * 2) + max_len
190                 max = (max_depth * 2) + max_len;
191         }
192         else
193         {
194                 // This user can't see any depth
195                 max = max_len;
196         }
197
198         std::vector<std::string> map = GetMap(user, Utils->TreeRoot, max, 0);
199         for (std::vector<std::string>::const_iterator i = map.begin(); i != map.end(); ++i)
200                 user->WriteRemoteNumeric(RPL_MAP, *i);
201
202         size_t totusers = ServerInstance->Users->GetUsers().size();
203         float avg_users = (float) totusers / Utils->serverlist.size();
204
205         user->WriteRemoteNumeric(RPL_MAPUSERS, InspIRCd::Format("%u server%s and %u user%s, average %.2f users per server",
206                 (unsigned int)Utils->serverlist.size(), (Utils->serverlist.size() > 1 ? "s" : ""), (unsigned int)totusers, (totusers > 1 ? "s" : ""), avg_users));
207         user->WriteRemoteNumeric(RPL_ENDMAP, "End of /MAP");
208
209         return CMD_SUCCESS;
210 }
211
212 RouteDescriptor CommandMap::GetRouting(User* user, const std::vector<std::string>& parameters)
213 {
214         if (!parameters.empty())
215                 return ROUTE_UNICAST(parameters[0]);
216         return ROUTE_LOCALONLY;
217 }