]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_operchans.cpp
43041128940b076da9e71c2845a3439ac2957e28
[user/henk/code/inspircd.git] / src / modules / m_operchans.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 #include <stdio.h>
18 #include "users.h"
19 #include "channels.h"
20 #include "modules.h"
21
22 /* $ModDesc: Provides support for oper-only chans via the +O channel mode */
23
24 Server *Srv;
25          
26
27 class ModuleOperChans : public Module
28 {
29  public:
30         ModuleOperChans()
31         {
32                 Srv = new Server;
33
34                 // Add a mode +O for channels with no parameters                
35                 Srv->AddExtendedMode('O',MT_CHANNEL,false,0,0);
36         }
37         
38         virtual int OnExtendedMode(userrec* user, void* target, char modechar, int type, bool mode_on, string_list &params)
39         {
40                 if ((modechar == 'O') && (type == MT_CHANNEL))
41                 {
42                         chanrec* chan = (chanrec*)target;
43                         
44                         if ((Srv->IsUlined(user->nick)) || (Srv->IsUlined(user->server)) || (!strcmp(user->server,"")) || (strchr(user->modes,'o')))
45                         {
46                                 return 1;
47                         }
48                         else
49                         {
50                                 // eat the mode change, return an error
51                                 WriteServ(user->fd,"468 %s %s :Only servers and opers may set channel mode +O",user->nick, chan->name);
52                                 return 0;
53                         }
54         
55                         // must return 1 to handle the mode!
56                         return 1;
57                 }
58                 
59                 return 0;
60         }
61         
62         virtual int OnUserPreJoin(userrec* user, chanrec* chan, const char* cname)
63         {
64                 if (!strchr(user->modes,'o'))
65                 {
66                         if (chan)
67                         {
68                                 if (chan->IsCustomModeSet('O'))
69                                 {
70                                         WriteServ(user->fd,"520 %s %s :Only IRC operators may join the channel %s (+O is set)",user->nick, chan->name,chan->name);
71                                         return 1;
72                                 }
73                         }
74                 }
75                 return 0;
76         }
77         
78         virtual ~ModuleOperChans()
79         {
80                 delete Srv;
81         }
82         
83         virtual Version GetVersion()
84         {
85                 return Version(1,0,0,0);
86         }
87         
88         virtual void OnUserConnect(userrec* user)
89         {
90         }
91
92 };
93
94
95 class ModuleOperChansFactory : public ModuleFactory
96 {
97  public:
98         ModuleOperChansFactory()
99         {
100         }
101         
102         ~ModuleOperChansFactory()
103         {
104         }
105         
106         virtual Module * CreateModule()
107         {
108                 return new ModuleOperChans;
109         }
110         
111 };
112
113
114 extern "C" void * init_module( void )
115 {
116         return new ModuleOperChansFactory;
117 }
118