summaryrefslogtreecommitdiff
path: root/src/regchannel.cpp
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2010-08-21 01:40:36 -0400
committerAdam <Adam@anope.org>2010-08-21 01:40:36 -0400
commitfb551f0d5d412246a5221e8e9e310c191033b317 (patch)
treee737cdf9db93d53313701695c338ab9c96e83e9f /src/regchannel.cpp
parent931b0777fbd961a4ca961ddfa763af92dcce946c (diff)
Made Anope keep track of channels its clients are in if it splits from its uplink, then burst them back to its uplink once connection is reestablished.
Also made Anope use TS enforcement to change persistant channels creation time to the time they were registered.
Diffstat (limited to 'src/regchannel.cpp')
-rw-r--r--src/regchannel.cpp71
1 files changed, 33 insertions, 38 deletions
diff --git a/src/regchannel.cpp b/src/regchannel.cpp
index d055a632b..393054acf 100644
--- a/src/regchannel.cpp
+++ b/src/regchannel.cpp
@@ -343,65 +343,60 @@ void ChannelInfo::ClearBadWords()
*/
void ChannelInfo::LoadMLock()
{
- std::vector<Anope::string> modenames;
+ std::vector<Anope::string> modenames_on, modenames_off;
- if (this->GetExtRegular("db_mlock_modes_on", modenames))
+ // Force +r
+ this->SetMLock(CMODE_REGISTERED, true);
+ this->GetExtRegular("db_mlock_modes_on", modenames_on);
+ this->GetExtRegular("db_mlock_modes_off", modenames_off);
+
+ if (!modenames_on.empty() || !modenames_off.empty())
{
- for (std::vector<Anope::string>::iterator it = modenames.begin(), it_end = modenames.end(); it != it_end; ++it)
+ for (std::vector<Anope::string>::iterator it = modenames_on.begin(), it_end = modenames_on.end(); it != it_end; ++it)
{
- for (std::list<Mode *>::iterator mit = ModeManager::Modes.begin(), mit_end = ModeManager::Modes.end(); mit != mit_end; ++mit)
- {
- if ((*mit)->Class == MC_CHANNEL)
- {
- ChannelMode *cm = debug_cast<ChannelMode *>(*mit);
+ Mode *m = ModeManager::FindModeByName(*it);
- if (cm->NameAsString.equals_ci(*it))
- this->SetMLock(cm->Name, true);
- }
+ if (m && m->NameAsString.equals_cs(*it))
+ {
+ ChannelMode *cm = debug_cast<ChannelMode *>(m);
+ this->SetMLock(cm->Name, true);
}
}
-
- this->Shrink("db_mlock_modes_on");
- }
-
- if (this->GetExtRegular("db_mlock_modes_off", modenames))
- {
- for (std::vector<Anope::string>::iterator it = modenames.begin(), it_end = modenames.end(); it != it_end; ++it)
+ for (std::vector<Anope::string>::iterator it = modenames_off.begin(), it_end = modenames_off.end(); it != it_end; ++it)
{
- for (std::list<Mode *>::iterator mit = ModeManager::Modes.begin(), mit_end = ModeManager::Modes.end(); mit != mit_end; ++mit)
- {
- if ((*mit)->Class == MC_CHANNEL)
- {
- ChannelMode *cm = debug_cast<ChannelMode *>(*mit);
+ Mode *m = ModeManager::FindModeByName(*it);
- if (cm->NameAsString.equals_ci(*it))
- this->SetMLock(cm->Name, false);
- }
+ if (m && m->NameAsString.equals_cs(*it))
+ {
+ ChannelMode *cm = debug_cast<ChannelMode *>(m);
+ this->SetMLock(cm->Name, false);
}
}
-
- this->Shrink("db_mlock_modes_off");
}
std::vector<std::pair<Anope::string, Anope::string> > params;
-
if (this->GetExtRegular("db_mlp", params))
{
for (std::vector<std::pair<Anope::string, Anope::string> >::iterator it = params.begin(), it_end = params.end(); it != it_end; ++it)
{
- for (std::list<Mode *>::iterator mit = ModeManager::Modes.begin(), mit_end = ModeManager::Modes.end(); mit != mit_end; ++mit)
+ Mode *m = ModeManager::FindModeByName(it->first);
+ if (m && m->Class == MC_CHANNEL)
{
- if ((*mit)->Class == MC_CHANNEL)
- {
- ChannelMode *cm = debug_cast<ChannelMode *>(*mit);
-
- if (cm->NameAsString.equals_ci(it->first))
- this->SetMLock(cm->Name, true, it->second);
- }
+ ChannelMode *cm = debug_cast<ChannelMode *>(m);
+ this->SetMLock(cm->Name, true, it->second);
}
}
+ }
- this->Shrink("db_mlp");
+ /* Create perm channel */
+ if (this->HasFlag(CI_PERSIST) && !this->c)
+ {
+ this->c = new Channel(this->name, this->time_registered);
+ if (!this->bi)
+ ChanServ->Assign(NULL, this);
+ this->bi->Join(c);
+ check_modes(this->c);
+ restore_topic(this->name);
}
}