]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/ftopic.cpp
Merge tag 'v2.0.27' into master.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / ftopic.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 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 /** FTOPIC command */
25 CmdResult CommandFTopic::Handle(User* user, Params& params)
26 {
27         Channel* c = ServerInstance->FindChan(params[0]);
28         if (!c)
29                 return CMD_FAILURE;
30
31         if (c->age < ServerCommand::ExtractTS(params[1]))
32                 // Our channel TS is older, nothing to do
33                 return CMD_FAILURE;
34
35         // Channel::topicset is initialized to 0 on channel creation, so their ts will always win if we never had a topic
36         time_t ts = ServerCommand::ExtractTS(params[2]);
37         if (ts < c->topicset)
38                 return CMD_FAILURE;
39
40         // The topic text is always the last parameter
41         const std::string& newtopic = params.back();
42
43         // If there is a setter in the message use that, otherwise use the message source
44         const std::string& setter = ((params.size() > 4) ? params[3] : (ServerInstance->Config->FullHostInTopic ? user->GetFullHost() : user->nick));
45
46         /*
47          * If the topics were updated at the exact same second, accept
48          * the remote only when it's "bigger" than ours as defined by
49          * string comparision, so non-empty topics always overridde
50          * empty topics if their timestamps are equal
51          *
52          * Similarly, if the topic texts are equal too, keep one topic
53          * setter and discard the other
54          */
55         if (ts == c->topicset)
56         {
57                 // Discard if their topic text is "smaller"
58                 if (c->topic > newtopic)
59                         return CMD_FAILURE;
60
61                 // If the texts are equal in addition to the timestamps, decide which setter to keep
62                 if ((c->topic == newtopic) && (c->setby >= setter))
63                         return CMD_FAILURE;
64         }
65
66         c->SetTopic(user, newtopic, ts, &setter);
67         return CMD_SUCCESS;
68 }
69
70 // Used when bursting and in reply to RESYNC, contains topic setter as the 4th parameter
71 CommandFTopic::Builder::Builder(Channel* chan)
72         : CmdBuilder("FTOPIC")
73 {
74         push(chan->name);
75         push_int(chan->age);
76         push_int(chan->topicset);
77         push(chan->setby);
78         push_last(chan->topic);
79 }
80
81 // Used when changing the topic, the setter is the message source
82 CommandFTopic::Builder::Builder(User* user, Channel* chan)
83         : CmdBuilder(user, "FTOPIC")
84 {
85         push(chan->name);
86         push_int(chan->age);
87         push_int(chan->topicset);
88         push_last(chan->topic);
89 }