]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_conn_join.cpp
Make the same (r6972) fix here.
[user/henk/code/inspircd.git] / src / modules / m_conn_join.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd: (C) 2002-2007 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 "users.h"
15 #include "channels.h"
16 #include "modules.h"
17 #include "inspircd.h"
18
19 /* $ModDesc: Forces users to join the specified channel(s) on connect */
20
21 class ModuleConnJoin : public Module
22 {
23         private:
24                 std::string JoinChan;
25                 std::vector<std::string> Joinchans;
26                 
27
28                 int tokenize(const string &str, std::vector<std::string> &tokens)
29                 {
30                         // skip delimiters at beginning.
31                         string::size_type lastPos = str.find_first_not_of(",", 0);
32                         // find first "non-delimiter".
33                         string::size_type pos = str.find_first_of(",", lastPos);
34
35                         while (string::npos != pos || string::npos != lastPos)
36                         {
37                                 // found a token, add it to the vector.
38                                 tokens.push_back(str.substr(lastPos, pos - lastPos));
39                                 // skip delimiters. Note the "not_of"
40                                 lastPos = str.find_first_not_of(",", pos);
41                                 // find next "non-delimiter"
42                                 pos = str.find_first_of(",", lastPos);
43                         }
44                         return tokens.size();
45                 }
46
47         public:
48                 ModuleConnJoin(InspIRCd* Me)
49                         : Module::Module(Me)
50                 {
51                         OnRehash(NULL, "");
52                 }
53
54                 void Implements(char* List)
55                 {
56                         List[I_OnPostConnect] = List[I_OnRehash] = 1;
57                 }
58
59                 virtual void OnRehash(userrec* user, const std::string &parameter)
60                 {
61                         ConfigReader* conf = new ConfigReader(ServerInstance);
62                         JoinChan = conf->ReadValue("autojoin", "channel", 0);
63                         Joinchans.clear();
64                         if (!JoinChan.empty())
65                                 tokenize(JoinChan,Joinchans);
66                         DELETE(conf);
67                 }
68
69                 virtual ~ModuleConnJoin()
70                 {
71                 }
72
73                 virtual Version GetVersion()
74                 {
75                         return Version(1,1,0,1,VF_VENDOR,API_VERSION);
76                 }
77
78                 virtual void OnPostConnect(userrec* user)
79                 {
80                         if (!IS_LOCAL(user))
81                                 return;
82
83                         for(std::vector<std::string>::iterator it = Joinchans.begin(); it != Joinchans.end(); it++)
84                                 if (ServerInstance->IsChannel(it->c_str()))
85                                         chanrec::JoinUser(ServerInstance, user, it->c_str(), false, "", ServerInstance->Time(true));
86                 }
87
88 };
89
90 class ModuleConnJoinFactory : public ModuleFactory
91 {
92         public:
93                 ModuleConnJoinFactory()
94                 {
95                 }
96
97                 ~ModuleConnJoinFactory()
98                 {
99                 }
100
101                 virtual Module * CreateModule(InspIRCd* Me)
102                 {
103                         return new ModuleConnJoin(Me);
104                 }
105 };
106
107 extern "C" void * init_module( void )
108 {
109         return new ModuleConnJoinFactory;
110 }