]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_conn_join.cpp
More factory conversion
[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 "inspircd.h"
15 #include "users.h"
16 #include "channels.h"
17 #include "modules.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(Me)
50                 {
51                         OnRehash(NULL, "");
52                 }
53
54                 Priority Prioritize()
55                 {
56                         return PRIORITY_LAST;
57                 }
58
59                 void Implements(char* List)
60                 {
61                         List[I_OnPostConnect] = List[I_OnRehash] = 1;
62                 }
63
64                 virtual void OnRehash(userrec* user, const std::string &parameter)
65                 {
66                         ConfigReader* conf = new ConfigReader(ServerInstance);
67                         JoinChan = conf->ReadValue("autojoin", "channel", 0);
68                         Joinchans.clear();
69                         if (!JoinChan.empty())
70                                 tokenize(JoinChan,Joinchans);
71                         DELETE(conf);
72                 }
73
74                 virtual ~ModuleConnJoin()
75                 {
76                 }
77
78                 virtual Version GetVersion()
79                 {
80                         return Version(1,1,0,1,VF_VENDOR,API_VERSION);
81                 }
82
83                 virtual void OnPostConnect(userrec* user)
84                 {
85                         if (!IS_LOCAL(user))
86                                 return;
87
88                         for(std::vector<std::string>::iterator it = Joinchans.begin(); it != Joinchans.end(); it++)
89                                 if (ServerInstance->IsChannel(it->c_str()))
90                                         chanrec::JoinUser(ServerInstance, user, it->c_str(), false, "", ServerInstance->Time(true));
91                 }
92
93 };
94
95
96 MODULE_INIT(ModuleConnJoin);