]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/fmode.cpp
m_spanningtree Send and receive full version strings via SINFO
[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(User* who, std::vector<std::string>& params)
26 {
27         time_t TS = ServerCommand::ExtractTS(params[1]);
28
29         /* Extract the TS value of the object, either User or Channel */
30         time_t ourTS;
31         if (params[0][0] == '#')
32         {
33                 Channel* chan = ServerInstance->FindChan(params[0]);
34                 if (!chan)
35                         /* Oops, channel doesn't exist! */
36                         return CMD_FAILURE;
37
38                 ourTS = chan->age;
39         }
40         else
41         {
42                 User* user = ServerInstance->FindUUID(params[0]);
43                 if (!user)
44                         return CMD_FAILURE;
45
46                 if (IS_SERVER(user))
47                         throw ProtocolException("Invalid target");
48
49                 ourTS = user->age;
50         }
51
52         /* If the TS is greater than ours, we drop the mode and don't pass it anywhere.
53          */
54         if (TS > ourTS)
55                 return CMD_FAILURE;
56
57         /* TS is equal or less: Merge the mode changes into ours and pass on.
58          */
59         std::vector<std::string> modelist;
60         modelist.reserve(params.size()-1);
61         /* Insert everything into modelist except the TS (params[1]) */
62         modelist.push_back(params[0]);
63         modelist.insert(modelist.end(), params.begin()+2, params.end());
64
65         ModeParser::ModeProcessFlag flags = ModeParser::MODE_LOCALONLY;
66         if ((TS == ourTS) && IS_SERVER(who))
67                 flags |= ModeParser::MODE_MERGE;
68
69         ServerInstance->Modes->Process(modelist, who, flags);
70         return CMD_SUCCESS;
71 }