]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/coremods/core_channel/cmode_l.cpp
Release v3.8.0.
[user/henk/code/inspircd.git] / src / coremods / core_channel / cmode_l.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2017, 2019 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2014 Attila Molnar <attilamolnar@hush.com>
6  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
7  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
8  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
9  *   Copyright (C) 2006, 2010 Craig Edwards <brain@inspircd.org>
10  *
11  * This file is part of InspIRCd.  InspIRCd is free software: you can
12  * redistribute it and/or modify it under the terms of the GNU General Public
13  * License as published by the Free Software Foundation, version 2.
14  *
15  * This program is distributed in the hope that it will be useful, but WITHOUT
16  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
18  * details.
19  *
20  * You should have received a copy of the GNU General Public License
21  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22  */
23
24
25 #include "inspircd.h"
26 #include "core_channel.h"
27
28 ModeChannelLimit::ModeChannelLimit(Module* Creator)
29         : ParamMode<ModeChannelLimit, LocalIntExt>(Creator, "limit", 'l')
30         , minlimit(0)
31 {
32         syntax = "<limit>";
33 }
34
35 bool ModeChannelLimit::ResolveModeConflict(std::string &their_param, const std::string &our_param, Channel*)
36 {
37         /* When TS is equal, the higher channel limit wins */
38         return ConvToNum<intptr_t>(their_param) < ConvToNum<intptr_t>(our_param);
39 }
40
41 ModeAction ModeChannelLimit::OnSet(User* user, Channel* chan, std::string& parameter)
42 {
43         size_t limit = ConvToNum<size_t>(parameter);
44         if (limit < minlimit)
45                 return MODEACTION_DENY;
46
47         ext.set(chan, limit);
48         return MODEACTION_ALLOW;
49 }
50
51 void ModeChannelLimit::SerializeParam(Channel* chan, intptr_t n, std::string& out)
52 {
53         out += ConvToStr(n);
54 }