]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/fmode.cpp
Introduce ModeProcessFlags, can be passed to ModeParser::Process() to indicate local...
[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 /** FMODE command - server mode with timestamp checks */
25 CmdResult CommandFMode::Handle(const std::vector<std::string>& params, User *who)
26 {
27         time_t TS = ConvToInt(params[1]);
28         if (!TS)
29         {
30                 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.");
31                 ServerInstance->SNO->WriteToSnoMask('d', "WARNING: The server %s is sending FMODE with a TS of zero. Total craq, dropping link.", who->server.c_str());
32                 return CMD_INVALID;
33         }
34
35         /* Extract the TS value of the object, either User or Channel */
36         time_t ourTS;
37         if (params[0][0] == '#')
38         {
39                 Channel* chan = ServerInstance->FindChan(params[0]);
40                 if (!chan)
41                         /* Oops, channel doesn't exist! */
42                         return CMD_FAILURE;
43
44                 ourTS = chan->age;
45         }
46         else
47         {
48                 User* user = ServerInstance->FindUUID(params[0]);
49                 if (!user)
50                         return CMD_FAILURE;
51
52                 if (IS_SERVER(user))
53                         return CMD_INVALID;
54
55                 ourTS = user->age;
56         }
57
58         /* If the TS is greater than ours, we drop the mode and don't pass it anywhere.
59          */
60         if (TS > ourTS)
61                 return CMD_FAILURE;
62
63         /* TS is equal or less: Merge the mode changes into ours and pass on.
64          */
65         std::vector<std::string> modelist;
66         modelist.reserve(params.size()-1);
67         /* Insert everything into modelist except the TS (params[1]) */
68         modelist.push_back(params[0]);
69         modelist.insert(modelist.end(), params.begin()+2, params.end());
70
71         ModeParser::ModeProcessFlag flags = ModeParser::MODE_LOCALONLY;
72         if ((TS == ourTS) && IS_SERVER(who))
73                 flags |= ModeParser::MODE_MERGE;
74
75         ServerInstance->Modes->Process(modelist, who, flags);
76         return CMD_SUCCESS;
77 }
78
79