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