]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/fmode.cpp
m_spanningtree Netburst: Remove expiration check from SendXLines()
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / fmode.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009-2010 Daniel De Graaf <danieldg@inspircd.org>
5  *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
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 #include "commands.h"
23
24 #include "treesocket.h"
25 #include "treeserver.h"
26 #include "utils.h"
27
28 /** FMODE command - server mode with timestamp checks */
29 CmdResult CommandFMode::Handle(const std::vector<std::string>& params, User *who)
30 {
31         time_t TS = ConvToInt(params[1]);
32         if (!TS)
33         {
34                 ServerInstance->Logs->Log("m_spanningtree",LOG_DEFAULT,"*** BUG? *** TS of 0 sent to FMODE. Are some services authors smoking craq, or is it 1970 again?. Dropping link.");
35                 ServerInstance->SNO->WriteToSnoMask('d', "WARNING: The server %s is sending FMODE with a TS of zero. Total craq, dropping link.", who->server.c_str());
36                 return CMD_INVALID;
37         }
38
39         /* Extract the TS value of the object, either User or Channel */
40         time_t ourTS;
41         if (params[0][0] == '#')
42         {
43                 Channel* chan = ServerInstance->FindChan(params[0]);
44                 if (!chan)
45                         /* Oops, channel doesn't exist! */
46                         return CMD_FAILURE;
47
48                 ourTS = chan->age;
49         }
50         else
51         {
52                 User* user = ServerInstance->FindUUID(params[0]);
53                 if (!user)
54                         return CMD_FAILURE;
55
56                 if (IS_SERVER(user))
57                         return CMD_INVALID;
58
59                 ourTS = user->age;
60         }
61
62         /* TS is equal or less: Merge the mode changes into ours and pass on.
63          */
64         if (TS <= ourTS)
65         {
66                 std::vector<std::string> modelist;
67                 modelist.reserve(params.size()-1);
68                 /* Insert everything into modelist except the TS (params[1]) */
69                 modelist.push_back(params[0]);
70                 modelist.insert(modelist.end(), params.begin()+2, params.end());
71
72                 bool merge = (TS == ourTS) && IS_SERVER(who);
73                 ServerInstance->Modes->Process(modelist, who, merge);
74                 return CMD_SUCCESS;
75         }
76         /* If the TS is greater than ours, we drop the mode and dont pass it anywhere.
77          */
78         return CMD_FAILURE;
79 }
80
81