]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_blockcolor.cpp
0cbb3e8d8e7dddd30dd0604819aa5cd36c4da461
[user/henk/code/inspircd.git] / src / modules / m_blockcolor.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
16 /* $ModDesc: Provides support for unreal-style channel mode +c */
17
18 /** Handles the +c channel mode
19  */
20 class BlockColor : public ModeHandler
21 {
22  public:
23         BlockColor(InspIRCd* Instance) : ModeHandler(Instance, 'c', 0, 0, false, MODETYPE_CHANNEL, false) { }
24
25         ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding)
26         {
27                 if (adding)
28                 {
29                         if (!channel->IsModeSet('c'))
30                         {
31                                 channel->SetMode('c',true);
32                                 return MODEACTION_ALLOW;
33                         }
34                 }
35                 else
36                 {
37                         if (channel->IsModeSet('c'))
38                         {
39                                 channel->SetMode('c',false);
40                                 return MODEACTION_ALLOW;
41                         }
42                 }
43
44                 return MODEACTION_DENY;
45         }
46 };
47
48 class ModuleBlockColour : public Module
49 {
50         bool AllowChanOps;      
51         BlockColor *bc;
52  public:
53  
54         ModuleBlockColour(InspIRCd* Me) : Module(Me)
55         {
56                 bc = new BlockColor(ServerInstance);
57                 if (!ServerInstance->Modes->AddMode(bc))
58                         throw ModuleException("Could not add new modes!");
59                 Implementation eventlist[] = { I_OnUserPreMessage, I_OnUserPreNotice };
60                 ServerInstance->Modules->Attach(eventlist, this, 2);
61         }
62
63
64
65         virtual int OnUserPreMessage(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
66         {
67                 if ((target_type == TYPE_CHANNEL) && (IS_LOCAL(user)))
68                 {
69                         Channel* c = (Channel*)dest;
70                         
71                         if(c->IsModeSet('c'))
72                         {
73                                 if (!CHANOPS_EXEMPT(ServerInstance, 'c') || CHANOPS_EXEMPT(ServerInstance, 'c') && c->GetStatus(user) != STATUS_OP)
74                                 {
75                                         for (std::string::iterator i = text.begin(); i != text.end(); i++)
76                                         {
77                                                 switch (*i)
78                                                 {
79                                                         case 2:
80                                                         case 3:
81                                                         case 15:
82                                                         case 21:
83                                                         case 22:
84                                                         case 31:
85                                                                 user->WriteServ("404 %s %s :Can't send colours to channel (+c set)",user->nick, c->name);
86                                                                 return 1;
87                                                         break;
88                                                 }
89                                         }
90                                 }
91                         }
92                 }
93                 return 0;
94         }
95         
96         virtual int OnUserPreNotice(User* user,void* dest,int target_type, std::string &text, char status, CUList &exempt_list)
97         {
98                 return OnUserPreMessage(user,dest,target_type,text,status,exempt_list);
99         }
100
101         virtual ~ModuleBlockColour()
102         {
103                 ServerInstance->Modes->DelMode(bc);
104                 delete bc;
105         }
106         
107         virtual Version GetVersion()
108         {
109                 return Version(1,1,0,0,VF_COMMON|VF_VENDOR,API_VERSION);
110         }
111 };
112
113 MODULE_INIT(ModuleBlockColour)