]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modes/cmode_l.cpp
Forward-port r10257, fixes bug #599 reported by mixx941.
[user/henk/code/inspircd.git] / src / modes / cmode_l.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2008 InspIRCd Development Team
6  * See: http://www.inspircd.org/wiki/index.php/Credits
7  *
8  * This program is free but copyrighted software; see
9  *            the file COPYING for details.
10  *
11  * ---------------------------------------------------
12  */
13
14 #include "inspircd.h"
15 #include "mode.h"
16 #include "channels.h"
17 #include "users.h"
18 #include "modes/cmode_l.h"
19
20 ModeChannelLimit::ModeChannelLimit(InspIRCd* Instance) : ModeHandler(Instance, 'l', 1, 0, false, MODETYPE_CHANNEL, false)
21 {
22 }
23
24 ModePair ModeChannelLimit::ModeSet(User*, User*, Channel* channel, const std::string &parameter)
25 {
26         std::string climit = channel->GetModeParameter('l');
27         if (!climit.empty())
28         {
29                 return std::make_pair(true, climit);
30         }
31         else
32         {
33                 return std::make_pair(false, parameter);
34         }
35 }
36
37 bool ModeChannelLimit::CheckTimeStamp(time_t, time_t, const std::string &their_param, const std::string &our_param, Channel*)
38 {
39         /* When TS is equal, the higher channel limit wins */
40         return (atoi(their_param.c_str()) < atoi(our_param.c_str()));
41 }
42
43 ModeAction ModeChannelLimit::OnModeChange(User*, User*, Channel* channel, std::string &parameter, bool adding, bool servermode)
44 {
45         if (adding)
46         {
47                 /* Setting a new limit, sanity check */
48                 long limit = atoi(parameter.c_str());
49
50                 /* Wrap low values at 32768 */
51                 if (limit < 0)
52                         limit = 0x7FFF;
53
54                 /* If the new limit is the same as the old limit,
55                  * and the old limit isnt 0, disallow */
56                 std::string oldlimit = channel->GetModeParameter('l');
57                 if (limit == atoi(oldlimit.c_str()) && oldlimit != "0")
58                 {
59                         parameter = "";
60                         return MODEACTION_DENY;
61                 }
62
63                 /* They must have specified an invalid number.
64                  * Dont allow +l 0.
65                  */
66                 if (!limit)
67                 {
68                         parameter = "";
69                         return MODEACTION_DENY;
70                 }
71
72                 parameter = ConvToStr(limit);
73
74                 /* Set new limit */
75                 channel->SetModeParam('l', parameter.c_str(), true);
76                 channel->modes[CM_LIMIT] = 1;
77
78                 return MODEACTION_ALLOW;
79         }
80         else
81         {
82                 /* Check if theres a limit here to remove.
83                  * If there isnt, dont allow the -l
84                  */
85                 if (channel->GetModeParameter('l').empty())
86                 {
87                         parameter = "";
88                         return MODEACTION_DENY;
89                 }
90
91                 /* Removing old limit, no checks here */
92                 channel->SetModeParam('l', "", false);
93                 channel->modes[CM_LIMIT] = 0;
94
95                 return MODEACTION_ALLOW;
96         }
97 }