1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
/* +------------------------------------+
* | Inspire Internet Relay Chat Daemon |
* +------------------------------------+
*
* InspIRCd: (C) 2002-2011 InspIRCd Development Team
* See: http://wiki.inspircd.org/Credits
*
* This program is free but copyrighted software; see
* the file COPYING for details.
*
* ---------------------------------------------------
*/
#include "inspircd.h"
/* $ModDesc: Provides support for channel mode +P to provide permanent channels */
/** Handles the +P channel mode
*/
class PermChannel : public ModeHandler
{
public:
PermChannel(Module* Creator) : ModeHandler(Creator, "permanent", 'P', PARAM_NONE, MODETYPE_CHANNEL)
{
oper = true;
fixed_letter = false;
}
ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string ¶meter, bool adding)
{
if (adding)
{
if (!channel->IsModeSet(this))
{
channel->SetMode(this,true);
return MODEACTION_ALLOW;
}
}
else
{
if (channel->IsModeSet(this))
{
channel->SetMode(this,false);
if (channel->GetUserCounter() == 0)
{
channel->DelUser(ServerInstance->FakeClient);
}
return MODEACTION_ALLOW;
}
}
return MODEACTION_DENY;
}
};
class ModulePermanentChannels : public Module
{
PermChannel p;
void LoadPermChannels()
{
ConfigTagList permchannels = ServerInstance->Config->GetTags("permchannels");
for (ConfigIter i = permchannels.first; i != permchannels.second; ++i)
{
ConfigTag* tag = i->second;
std::string channel = tag->getString("channel");
std::string topic = tag->getString("topic");
std::string modes = tag->getString("modes");
std::string longmodes = tag->getString("modelist");
if (channel.empty())
{
ServerInstance->Logs->Log("m_permchannels", ERROR, "Malformed permchannels tag at " +
tag->getTagLocation());
continue;
}
Channel *c = ServerInstance->FindChan(channel);
if (!c)
{
c = new Channel(channel, tag->getInt("ts", ServerInstance->Time()));
if (!topic.empty())
{
c->SetTopic(NULL, topic, true);
// topic was set at channel creation; it'll be overwritten if it was ever
// changed
c->topicset = c->age;
}
ServerInstance->Logs->Log("m_permchannels", DEBUG, "Added %s with topic %s", channel.c_str(), topic.c_str());
if (modes.empty() && longmodes.empty())
continue;
Extensible* target;
irc::modestacker modestack;
irc::spacesepstream list(modes);
irc::spacesepstream longlist(longmodes);
std::vector<std::string> seq;
seq.push_back(c->name);
std::string token;
while (list.GetToken(token))
seq.push_back(token);
ServerInstance->Modes->Parse(seq, ServerInstance->FakeClient, target, modestack);
while (longlist.GetToken(token))
{
std::string name, value;
std::string::size_type eq = token.find('=');
if (eq == std::string::npos)
name = token;
else
{
name = token.substr(0, eq);
value = token.substr(eq + 1);
}
ModeHandler *mh = ServerInstance->Modes->FindMode(name);
if (mh && mh->GetModeType() == MODETYPE_CHANNEL)
{
modestack.push(irc::modechange(mh->id, value, true));
}
}
ServerInstance->Modes->Process(ServerInstance->FakeClient, target, modestack);
}
}
}
public:
ModulePermanentChannels() : p(this)
{
}
void init()
{
ServerInstance->Modules->AddService(p);
ServerInstance->Modules->Attach(I_OnChannelPreDelete, this);
LoadPermChannels();
}
CullResult cull()
{
ServerInstance->Modes->DelMode(&p);
return Module::cull();
}
void ReadConfig(ConfigReadStatus& status)
{
if(status.reason == REHASH_NEWCONF)
LoadPermChannels();
}
virtual Version GetVersion()
{
return Version("Provides support for channel mode +P to provide permanent channels",VF_VENDOR);
}
virtual ModResult OnChannelPreDelete(Channel *c)
{
if (c->IsModeSet(&p))
return MOD_RES_DENY;
return MOD_RES_PASSTHRU;
}
};
MODULE_INIT(ModulePermanentChannels)
|