]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_delaymsg.cpp
Enable the LINK snomask from m_spanningtree, remove unused FLOOD snomask
[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 class DelayMsgMode : public ModeHandler
23 {
24  public:
25         LocalIntExt jointime;
26         DelayMsgMode(Module* Parent) : ModeHandler(Parent, "delaymsg", 'd', PARAM_SETONLY, MODETYPE_CHANNEL)
27                 , jointime("delaymsg", Parent)
28         {
29                 levelrequired = OP_VALUE;
30         }
31
32         bool ResolveModeConflict(std::string &their_param, const std::string &our_param, Channel*)
33         {
34                 return (atoi(their_param.c_str()) < atoi(our_param.c_str()));
35         }
36
37         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding);
38 };
39
40 class ModuleDelayMsg : public Module
41 {
42         DelayMsgMode djm;
43  public:
44         ModuleDelayMsg() : djm(this)
45         {
46         }
47
48         void init() CXX11_OVERRIDE
49         {
50                 ServerInstance->Modules->AddService(djm);
51                 ServerInstance->Modules->AddService(djm.jointime);
52                 Implementation eventlist[] = { I_OnUserJoin, I_OnUserPreMessage};
53                 ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation));
54         }
55         Version GetVersion() CXX11_OVERRIDE;
56         void OnUserJoin(Membership* memb, bool sync, bool created, CUList&) CXX11_OVERRIDE;
57         ModResult OnUserPreMessage(User* user, void* dest, int target_type, std::string& text, char status, CUList& exempt_list, MessageType msgtype) CXX11_OVERRIDE;
58 };
59
60 ModeAction DelayMsgMode::OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
61 {
62         if (adding)
63         {
64                 if ((channel->IsModeSet(this)) && (channel->GetModeParameter(this) == parameter))
65                         return MODEACTION_DENY;
66
67                 /* Setting a new limit, sanity check */
68                 long limit = atoi(parameter.c_str());
69
70                 /* Wrap low values at 32768 */
71                 if (limit < 0)
72                         limit = 0x7FFF;
73
74                 parameter = ConvToStr(limit);
75         }
76         else
77         {
78                 if (!channel->IsModeSet(this))
79                         return MODEACTION_DENY;
80
81                 /*
82                  * Clean up metadata
83                  */
84                 const UserMembList* names = channel->GetUsers();
85                 for (UserMembCIter n = names->begin(); n != names->end(); ++n)
86                         jointime.set(n->second, 0);
87         }
88         return MODEACTION_ALLOW;
89 }
90
91 Version ModuleDelayMsg::GetVersion()
92 {
93         return Version("Provides channelmode +d <int>, to deny messages to a channel until <int> seconds.", VF_VENDOR);
94 }
95
96 void ModuleDelayMsg::OnUserJoin(Membership* memb, bool sync, bool created, CUList&)
97 {
98         if ((IS_LOCAL(memb->user)) && (memb->chan->IsModeSet(djm)))
99         {
100                 djm.jointime.set(memb, ServerInstance->Time());
101         }
102 }
103
104 ModResult ModuleDelayMsg::OnUserPreMessage(User* user, void* dest, int target_type, std::string& text, char status, CUList& exempt_list, MessageType msgtype)
105 {
106         /* Server origin */
107         if ((!user) || (!IS_LOCAL(user)))
108                 return MOD_RES_PASSTHRU;
109
110         if ((target_type != TYPE_CHANNEL) || (msgtype != MSG_PRIVMSG))
111                 return MOD_RES_PASSTHRU;
112
113         Channel* channel = (Channel*) dest;
114         Membership* memb = channel->GetUser(user);
115
116         if (!memb)
117                 return MOD_RES_PASSTHRU;
118
119         time_t ts = djm.jointime.get(memb);
120
121         if (ts == 0)
122                 return MOD_RES_PASSTHRU;
123
124         std::string len = channel->GetModeParameter(&djm);
125
126         if (ts + atoi(len.c_str()) > ServerInstance->Time())
127         {
128                 if (channel->GetPrefixValue(user) < VOICE_VALUE)
129                 {
130                         user->WriteNumeric(404, "%s %s :You must wait %s seconds after joining to send to channel (+d)",
131                                 user->nick.c_str(), channel->name.c_str(), len.c_str());
132                         return MOD_RES_DENY;
133                 }
134         }
135         else
136         {
137                 /* Timer has expired, we can stop checking now */
138                 djm.jointime.set(memb, 0);
139         }
140         return MOD_RES_PASSTHRU;
141 }
142
143 MODULE_INIT(ModuleDelayMsg)