]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/compat.cpp
Change modules to use the MODNAME constant when logging.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / compat.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 #include "inspircd.h"
21 #include "main.h"
22 #include "treesocket.h"
23 #include "treeserver.h"
24
25 static std::string newline("\n");
26
27 void TreeSocket::WriteLine(std::string line)
28 {
29         if (LinkState == CONNECTED)
30         {
31                 if (line[0] != ':')
32                 {
33                         ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "Sending line without server prefix!");
34                         line = ":" + ServerInstance->Config->GetSID() + " " + line;
35                 }
36                 if (proto_version != ProtocolVersion)
37                 {
38                         std::string::size_type a = line.find(' ');
39                         std::string::size_type b = line.find(' ', a + 1);
40                         std::string command = line.substr(a + 1, b-a-1);
41                         // now try to find a translation entry
42                         // TODO a more efficient lookup method will be needed later
43                         if (proto_version < 1205)
44                         {
45                                 if (command == "IJOIN")
46                                 {
47                                         // Convert
48                                         // :<uid> IJOIN <chan> [<ts> [<flags>]]
49                                         // to
50                                         // :<sid> FJOIN <chan> <ts> + [<flags>],<uuid>
51                                         std::string::size_type c = line.find(' ', b + 1);
52                                         if (c == std::string::npos)
53                                         {
54                                                 // No TS or modes in the command
55                                                 // :22DAAAAAB IJOIN #chan
56                                                 const std::string channame = line.substr(b+1, c-b-1);
57                                                 Channel* chan = ServerInstance->FindChan(channame);
58                                                 if (!chan)
59                                                         return;
60
61                                                 line.push_back(' ');
62                                                 line.append(ConvToStr(chan->age));
63                                                 line.append(" + ,");
64                                         }
65                                         else
66                                         {
67                                                 std::string::size_type d = line.find(' ', c + 1);
68                                                 if (d == std::string::npos)
69                                                 {
70                                                         // TS present, no modes
71                                                         // :22DAAAAAC IJOIN #chan 12345
72                                                         line.append(" + ,");
73                                                 }
74                                                 else
75                                                 {
76                                                         // Both TS and modes are present
77                                                         // :22DAAAAAC IJOIN #chan 12345 ov
78                                                         std::string::size_type e = line.find(' ', d + 1);
79                                                         if (e != std::string::npos)
80                                                                 line.erase(e);
81
82                                                         line.insert(d, " +");
83                                                         line.push_back(',');
84                                                 }
85                                         }
86
87                                         // Move the uuid to the end and replace the I with an F
88                                         line.append(line.substr(1, 9));
89                                         line.erase(4, 6);
90                                         line[5] = 'F';
91                                 }
92                                 else if (command == "RESYNC")
93                                         return;
94                                 else if (command == "METADATA")
95                                 {
96                                         // Drop TS for channel METADATA
97                                         // :sid METADATA #target TS extname ...
98                                         //     A        B       C  D
99                                         if (b == std::string::npos)
100                                                 return;
101
102                                         std::string::size_type c = line.find(' ', b + 1);
103                                         if (c == std::string::npos)
104                                                 return;
105
106                                         if (line[b + 1] == '#')
107                                         {
108                                                 // We're sending channel metadata
109                                                 std::string::size_type d = line.find(' ', c + 1);
110                                                 if (d == std::string::npos)
111                                                         return;
112
113                                                 line.erase(c, d-c);
114                                         }
115                                 }
116                                 else if (command == "FTOPIC")
117                                 {
118                                         // Drop channel TS for FTOPIC
119                                         // :sid FTOPIC #target TS TopicTS ...
120                                         //     A      B       C  D
121                                         if (b == std::string::npos)
122                                                 return;
123
124                                         std::string::size_type c = line.find(' ', b + 1);
125                                         if (c == std::string::npos)
126                                                 return;
127
128                                         std::string::size_type d = line.find(' ', c + 1);
129                                         if (d == std::string::npos)
130                                                 return;
131
132                                         line.erase(c, d-c);
133                                 }
134                                 else if ((command == "PING") || (command == "PONG"))
135                                 {
136                                         // :22D PING 20D
137                                         if (line.length() < 13)
138                                                 return;
139
140                                         // Insert the source SID (and a space) between the command and the first parameter
141                                         line.insert(10, line.substr(1, 4));
142                                 }
143                                 else if (command == "OPERTYPE")
144                                 {
145                                         std::string::size_type colon = line.find(':', b);
146                                         if (colon != std::string::npos)
147                                         {
148                                                 for (std::string::iterator i = line.begin()+colon; i != line.end(); ++i)
149                                                 {
150                                                         if (*i == ' ')
151                                                                 *i = '_';
152                                                 }
153                                                 line.erase(colon, 1);
154                                         }
155                                 }
156                         }
157                 }
158         }
159
160         ServerInstance->Logs->Log(MODNAME, LOG_RAWIO, "S[%d] O %s", this->GetFd(), line.c_str());
161         this->WriteData(line);
162         this->WriteData(newline);
163 }
164
165 namespace
166 {
167         bool InsertCurrentChannelTS(std::vector<std::string>& params)
168         {
169                 Channel* chan = ServerInstance->FindChan(params[0]);
170                 if (!chan)
171                         return false;
172
173                 // Insert the current TS of the channel between the first and the second parameters
174                 params.insert(params.begin()+1, ConvToStr(chan->age));
175                 return true;
176         }
177 }
178
179 bool TreeSocket::PreProcessOldProtocolMessage(User*& who, std::string& cmd, std::vector<std::string>& params)
180 {
181         if ((cmd == "METADATA") && (params.size() >= 3) && (params[0][0] == '#'))
182         {
183                 // :20D METADATA #channel extname :extdata
184                 return InsertCurrentChannelTS(params);
185         }
186         else if ((cmd == "FTOPIC") && (params.size() >= 4))
187         {
188                 // :20D FTOPIC #channel 100 Attila :topic text
189                 return InsertCurrentChannelTS(params);
190         }
191         else if ((cmd == "PING") || (cmd == "PONG"))
192         {
193                 if (params.size() == 1)
194                 {
195                         // If it's a PING with 1 parameter, reply with a PONG now, if it's a PONG with 1 parameter (weird), do nothing
196                         if (cmd[1] == 'I')
197                                 this->WriteData(":" + ServerInstance->Config->GetSID() + " PONG " + params[0] + newline);
198
199                         // Don't process this message further
200                         return false;
201                 }
202
203                 // :20D PING 20D 22D
204                 // :20D PONG 20D 22D
205                 // Drop the first parameter
206                 params.erase(params.begin());
207
208                 // If the target is a server name, translate it to a SID
209                 if (!InspIRCd::IsSID(params[0]))
210                 {
211                         TreeServer* server = Utils->FindServer(params[0]);
212                         if (!server)
213                         {
214                                 // We've no idea what this is, log and stop processing
215                                 ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "Received a " + cmd + " with an unknown target: \"" + params[0] + "\", command dropped");
216                                 return false;
217                         }
218
219                         params[0] = server->GetID();
220                 }
221         }
222         else if ((cmd == "GLINE") || (cmd == "KLINE") || (cmd == "ELINE") || (cmd == "ZLINE") || (cmd == "QLINE"))
223         {
224                 // Fix undocumented protocol usage: translate GLINE, ZLINE, etc. into ADDLINE or DELLINE
225                 if ((params.size() != 1) && (params.size() != 3))
226                         return false;
227
228                 parameterlist p;
229                 p.push_back(cmd.substr(0, 1));
230                 p.push_back(params[0]);
231
232                 if (params.size() == 3)
233                 {
234                         cmd = "ADDLINE";
235                         p.push_back(who->nick);
236                         p.push_back(ConvToStr(ServerInstance->Time()));
237                         p.push_back(ConvToStr(InspIRCd::Duration(params[1])));
238                         p.push_back(params[2]);
239                 }
240                 else
241                         cmd = "DELLINE";
242
243                 params.swap(p);
244         }
245         else if (cmd == "SVSMODE")
246         {
247                 cmd = "MODE";
248         }
249
250         return true; // Passthru
251 }