]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_delaymsg.cpp
Call Channel::SetModeParam() from the mode parser when needed instead of requiring...
[user/henk/code/inspircd.git] / src / modules / m_delaymsg.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
5  *
6  * This file is part of InspIRCd.  InspIRCd is free software: you can
7  * redistribute it and/or modify it under the terms of the GNU General Public
8  * License as published by the Free Software Foundation, version 2.
9  *
10  * This program is distributed in the hope that it will be useful, but WITHOUT
11  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
12  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
13  * details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19
20 #include "inspircd.h"
21
22 /* $ModDesc: Provides channelmode +d <int>, to deny messages to a channel until <int> seconds. */
23
24 class DelayMsgMode : public ModeHandler
25 {
26  public:
27         LocalIntExt jointime;
28         DelayMsgMode(Module* Parent) : ModeHandler(Parent, "delaymsg", 'd', PARAM_SETONLY, MODETYPE_CHANNEL)
29                 , jointime("delaymsg", Parent)
30         {
31                 levelrequired = OP_VALUE;
32         }
33
34         bool ResolveModeConflict(std::string &their_param, const std::string &our_param, Channel*)
35         {
36                 return (atoi(their_param.c_str()) < atoi(our_param.c_str()));
37         }
38
39         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding);
40 };
41
42 class ModuleDelayMsg : public Module
43 {
44         DelayMsgMode djm;
45  public:
46         ModuleDelayMsg() : djm(this)
47         {
48         }
49
50         void init() CXX11_OVERRIDE
51         {
52                 ServerInstance->Modules->AddService(djm);
53                 ServerInstance->Modules->AddService(djm.jointime);
54                 Implementation eventlist[] = { I_OnUserJoin, I_OnUserPreMessage};
55                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
56         }
57         Version GetVersion() CXX11_OVERRIDE;
58         void OnUserJoin(Membership* memb, bool sync, bool created, CUList&) CXX11_OVERRIDE;
59         ModResult OnUserPreMessage(User* user, void* dest, int target_type, std::string& text, char status, CUList& exempt_list, MessageType msgtype) CXX11_OVERRIDE;
60 };
61
62 ModeAction DelayMsgMode::OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
63 {
64         if (adding)
65         {
66                 if ((channel->IsModeSet('d')) && (channel->GetModeParameter('d') == parameter))
67                         return MODEACTION_DENY;
68
69                 /* Setting a new limit, sanity check */
70                 long limit = atoi(parameter.c_str());
71
72                 /* Wrap low values at 32768 */
73                 if (limit < 0)
74                         limit = 0x7FFF;
75
76                 parameter = ConvToStr(limit);
77         }
78         else
79         {
80                 if (!channel->IsModeSet('d'))
81                         return MODEACTION_DENY;
82
83                 /*
84                  * Clean up metadata
85                  */
86                 const UserMembList* names = channel->GetUsers();
87                 for (UserMembCIter n = names->begin(); n != names->end(); ++n)
88                         jointime.set(n->second, 0);
89         }
90         return MODEACTION_ALLOW;
91 }
92
93 Version ModuleDelayMsg::GetVersion()
94 {
95         return Version("Provides channelmode +d <int>, to deny messages to a channel until <int> seconds.", VF_VENDOR);
96 }
97
98 void ModuleDelayMsg::OnUserJoin(Membership* memb, bool sync, bool created, CUList&)
99 {
100         if ((IS_LOCAL(memb->user)) && (memb->chan->IsModeSet('d')))
101         {
102                 djm.jointime.set(memb, ServerInstance->Time());
103         }
104 }
105
106 ModResult ModuleDelayMsg::OnUserPreMessage(User* user, void* dest, int target_type, std::string& text, char status, CUList& exempt_list, MessageType msgtype)
107 {
108         /* Server origin */
109         if ((!user) || (!IS_LOCAL(user)))
110                 return MOD_RES_PASSTHRU;
111
112         if ((target_type != TYPE_CHANNEL) || (msgtype != MSG_PRIVMSG))
113                 return MOD_RES_PASSTHRU;
114
115         Channel* channel = (Channel*) dest;
116         Membership* memb = channel->GetUser(user);
117
118         if (!memb)
119                 return MOD_RES_PASSTHRU;
120
121         time_t ts = djm.jointime.get(memb);
122
123         if (ts == 0)
124                 return MOD_RES_PASSTHRU;
125
126         std::string len = channel->GetModeParameter('d');
127
128         if (ts + atoi(len.c_str()) > ServerInstance->Time())
129         {
130                 if (channel->GetPrefixValue(user) < VOICE_VALUE)
131                 {
132                         user->WriteNumeric(404, "%s %s :You must wait %s seconds after joining to send to channel (+d)",
133                                 user->nick.c_str(), channel->name.c_str(), len.c_str());
134                         return MOD_RES_DENY;
135                 }
136         }
137         else
138         {
139                 /* Timer has expired, we can stop checking now */
140                 djm.jointime.set(memb, 0);
141         }
142         return MOD_RES_PASSTHRU;
143 }
144
145 MODULE_INIT(ModuleDelayMsg)