]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_nonotice.cpp
Added remote rehash (even to a mask)
[user/henk/code/inspircd.git] / src / modules / m_nonotice.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  Inspire is copyright (C) 2002-2004 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 using namespace std;
18
19 #include <stdio.h>
20 #include "users.h"
21 #include "channels.h"
22 #include "modules.h"
23 #include "helperfuncs.h"
24
25 /* $ModDesc: Provides support for unreal-style channel mode +T */
26
27 class ModuleNoNotice : public Module
28 {
29         Server *Srv;
30  public:
31  
32         ModuleNoNotice()
33         {
34                 Srv = new Server;
35                 Srv->AddExtendedMode('T',MT_CHANNEL,false,0,0);
36         }
37         
38         virtual int OnUserPreNotice(userrec* user,void* dest,int target_type, std::string &text)
39         {
40                 if (target_type == TYPE_CHANNEL)
41                 {
42                         chanrec* c = (chanrec*)dest;
43                         if (c->IsCustomModeSet('T'))
44                         {
45                                 if ((Srv->ChanMode(user,c) == "@") || (Srv->ChanMode(user,c) == "%"))
46                                 {
47                                         // ops and halfops can still /NOTICE the channel
48                                         return 0;
49                                 }
50                                 else
51                                 {
52                                         WriteServ(user->fd,"404 %s %s :Can't send NOTICE to channel (+T set)",user->nick, c->name);
53                                         return 1;
54                                 }
55                         }
56                 }
57                 return 0;
58         }
59
60         virtual void On005Numeric(std::string &output)
61         {
62                 std::stringstream line(output);
63                 std::string temp1, temp2;
64                 while (!line.eof())
65                 {
66                         line >> temp1;
67                         if (temp1.substr(0,10) == "CHANMODES=")
68                         {
69                                 // append the chanmode to the end
70                                 temp1 = temp1.substr(10,temp1.length());
71                                 temp1 = "CHANMODES=" + temp1 + "T";
72                         }
73                         temp2 = temp2 + temp1 + " ";
74                 }
75                 if (temp2.length())
76                         output = temp2.substr(0,temp2.length()-1);
77         }
78
79         virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params)
80         {
81                 // check if this is our mode character...
82                 if ((modechar == 'T') && (type == MT_CHANNEL))
83                 {
84                         return 1;
85                 }
86                 else
87                 {
88                         return 0;
89                 }
90         }
91         
92         virtual ~ModuleNoNotice()
93         {
94                 delete Srv;
95         }
96         
97         virtual Version GetVersion()
98         {
99                 return Version(1,0,0,0,VF_STATIC|VF_VENDOR);
100         }
101 };
102
103
104 class ModuleNoNoticeFactory : public ModuleFactory
105 {
106  public:
107         ModuleNoNoticeFactory()
108         {
109         }
110         
111         ~ModuleNoNoticeFactory()
112         {
113         }
114         
115         virtual Module * CreateModule()
116         {
117                 return new ModuleNoNotice;
118         }
119         
120 };
121
122
123 extern "C" void * init_module( void )
124 {
125         return new ModuleNoNoticeFactory;
126 }
127