]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_conn_join.cpp
Remove unneeded headers from spanningtree. This was done to the rest of the source...
[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
16 /* $ModDesc: Forces users to join the specified channel(s) on connect */
17
18 class ModuleConnJoin : public Module
19 {
20         private:
21                 std::string JoinChan;
22                 std::vector<std::string> Joinchans;
23                 
24
25                 int tokenize(const string &str, std::vector<std::string> &tokens)
26                 {
27                         // skip delimiters at beginning.
28                         string::size_type lastPos = str.find_first_not_of(",", 0);
29                         // find first "non-delimiter".
30                         string::size_type pos = str.find_first_of(",", lastPos);
31
32                         while (string::npos != pos || string::npos != lastPos)
33                         {
34                                 // found a token, add it to the vector.
35                                 tokens.push_back(str.substr(lastPos, pos - lastPos));
36                                 // skip delimiters. Note the "not_of"
37                                 lastPos = str.find_first_not_of(",", pos);
38                                 // find next "non-delimiter"
39                                 pos = str.find_first_of(",", lastPos);
40                         }
41                         return tokens.size();
42                 }
43
44         public:
45                 ModuleConnJoin(InspIRCd* Me)
46                         : Module(Me)
47                 {
48                         OnRehash(NULL, "");
49                 }
50
51                 Priority Prioritize()
52                 {
53                         return PRIORITY_LAST;
54                 }
55
56                 void Implements(char* List)
57                 {
58                         List[I_OnPostConnect] = List[I_OnRehash] = 1;
59                 }
60
61                 virtual void OnRehash(userrec* user, const std::string &parameter)
62                 {
63                         ConfigReader* conf = new ConfigReader(ServerInstance);
64                         JoinChan = conf->ReadValue("autojoin", "channel", 0);
65                         Joinchans.clear();
66                         if (!JoinChan.empty())
67                                 tokenize(JoinChan,Joinchans);
68                         DELETE(conf);
69                 }
70
71                 virtual ~ModuleConnJoin()
72                 {
73                 }
74
75                 virtual Version GetVersion()
76                 {
77                         return Version(1,1,0,1,VF_VENDOR,API_VERSION);
78                 }
79
80                 virtual void OnPostConnect(userrec* user)
81                 {
82                         if (!IS_LOCAL(user))
83                                 return;
84
85                         for(std::vector<std::string>::iterator it = Joinchans.begin(); it != Joinchans.end(); it++)
86                                 if (ServerInstance->IsChannel(it->c_str()))
87                                         chanrec::JoinUser(ServerInstance, user, it->c_str(), false, "", ServerInstance->Time(true));
88                 }
89
90 };
91
92
93 MODULE_INIT(ModuleConnJoin)