]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_blockcolor.cpp
Merge pull request #215 from attilamolnar/insp20+modfixes
[user/henk/code/inspircd.git] / src / modules / m_blockcolor.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2004-2006, 2008 Craig Edwards <craigedwards@brainbox.cc>
5  *   Copyright (C) 2008 Thomas Stagner <aquanight@inspircd.org>
6  *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
7  *   Copyright (C) 2005, 2007 Robin Burchell <robin+git@viroteck.net>
8  *   Copyright (C) 2006 Oliver Lupton <oliverlupton@gmail.com>
9  *
10  * This file is part of InspIRCd.  InspIRCd is free software: you can
11  * redistribute it and/or modify it under the terms of the GNU General Public
12  * License as published by the Free Software Foundation, version 2.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23
24 #include "inspircd.h"
25
26 /* $ModDesc: Provides support for unreal-style channel mode +c */
27
28 /** Handles the +c channel mode
29  */
30 class BlockColor : public SimpleChannelModeHandler
31 {
32  public:
33         BlockColor(Module* Creator) : SimpleChannelModeHandler(Creator, "blockcolor", 'c') { }
34 };
35
36 class ModuleBlockColor : public Module
37 {
38         bool AllowChanOps;
39         BlockColor bc;
40  public:
41
42         ModuleBlockColor() : bc(this)
43         {
44                 if (!ServerInstance->Modes->AddMode(&bc))
45                         throw ModuleException("Could not add new modes!");
46                 Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice, I_On005Numeric };
47                 ServerInstance->Modules->Attach(eventlist, this, 3);
48         }
49
50         virtual void On005Numeric(std::string &output)
51         {
52                 ServerInstance->AddExtBanChar('c');
53         }
54
55         virtual ModResult OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
56         {
57                 if ((target_type == TYPE_CHANNEL) && (IS_LOCAL(user)))
58                 {
59                         Channel* c = (Channel*)dest;
60                         ModResult res = ServerInstance->OnCheckExemption(user,c,"blockcolor");
61
62                         if (res == MOD_RES_ALLOW)
63                                 return MOD_RES_PASSTHRU;
64
65                         if (!c->GetExtBanStatus(user, 'c').check(!c->IsModeSet('c')))
66                         {
67                                 for (std::string::iterator i = text.begin(); i != text.end(); i++)
68                                 {
69                                         switch (*i)
70                                         {
71                                                 case 2:
72                                                 case 3:
73                                                 case 15:
74                                                 case 21:
75                                                 case 22:
76                                                 case 31:
77                                                         user->WriteNumeric(404, "%s %s :Can't send colors to channel (+c set)",user->nick.c_str(), c->name.c_str());
78                                                         return MOD_RES_DENY;
79                                                 break;
80                                         }
81                                 }
82                         }
83                 }
84                 return MOD_RES_PASSTHRU;
85         }
86
87         virtual ModResult OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
88         {
89                 return OnUserPreMessage(user,dest,target_type,text,status,exempt_list);
90         }
91
92         virtual ~ModuleBlockColor()
93         {
94         }
95
96         virtual Version GetVersion()
97         {
98                 return Version("Provides support for unreal-style channel mode +c",VF_VENDOR);
99         }
100 };
101
102 MODULE_INIT(ModuleBlockColor)