diff options
author | Adam <Adam@anope.org> | 2010-10-04 18:57:54 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-10-04 18:57:54 -0400 |
commit | 592060ac756dd7ac5983aac987264ff5eaecd265 (patch) | |
tree | 84143f0773fb4ba2887fa724c440c5fbb9c57f61 /modules/extra/db_mysql.cpp | |
parent | 92338c13b871378b8e828085b8b724d4217649a8 (diff) |
Attempt to write back the old mlock to the databases if we try and fail to connect to the uplink. Because we may not know modes until after we are synced we could accidentally nuke all of the mlocks
Diffstat (limited to 'modules/extra/db_mysql.cpp')
-rw-r--r-- | modules/extra/db_mysql.cpp | 40 |
1 files changed, 28 insertions, 12 deletions
diff --git a/modules/extra/db_mysql.cpp b/modules/extra/db_mysql.cpp index 274f653b2..cd901e9e4 100644 --- a/modules/extra/db_mysql.cpp +++ b/modules/extra/db_mysql.cpp @@ -199,15 +199,20 @@ static Anope::string MakeMLock(ChannelInfo *ci, bool status) { Anope::string ret; - for (std::map<char, ChannelMode *>::iterator it = ModeManager::ChannelModesByChar.begin(), it_end = ModeManager::ChannelModesByChar.end(); it != it_end; ++it) + if ((!Me || !Me->IsSynced()) && ci->GetExtRegular(status ? "db_mlock_modes_on" : "db_mlock_modes_off", ret)) + ; + else { - ChannelMode *cm = it->second; - if (ci->HasMLock(cm->Name, status)) - ret += " " + cm->NameAsString; - } + for (std::map<char, ChannelMode *>::iterator it = ModeManager::ChannelModesByChar.begin(), it_end = ModeManager::ChannelModesByChar.end(); it != it_end; ++it) + { + ChannelMode *cm = it->second; + if (ci->HasMLock(cm->Name, status)) + ret += " " + cm->NameAsString; + } - if (!ret.empty()) - ret.erase(ret.begin()); + if (!ret.empty()) + ret.erase(ret.begin()); + } return ret; } @@ -226,13 +231,24 @@ static Anope::string GetMLockParams(ChannelInfo *ci) { Anope::string ret; - for (std::map<char, ChannelMode *>::iterator it = ModeManager::ChannelModesByChar.begin(), it_end = ModeManager::ChannelModesByChar.end(); it != it_end; ++it) + std::vector<std::pair<Anope::string, Anope::string> > oldparams;; + if ((!Me || !Me->IsSynced()) && ci->GetExtRegular("db_mlp", oldparams)) { - ChannelMode *cm = it->second; + for (std::vector<std::pair<Anope::string, Anope::string> >::iterator it = oldparams.begin(), it_end = oldparams.end(); it != it_end; ++it) + { + ret += " " + it->first + " " + it->second; + } + } + else + { + for (std::map<char, ChannelMode *>::iterator it = ModeManager::ChannelModesByChar.begin(), it_end = ModeManager::ChannelModesByChar.end(); it != it_end; ++it) + { + ChannelMode *cm = it->second; - Anope::string param; - if (ci->GetParam(cm->Name, param)) - ret += " " + cm->NameAsString + " " + param; + Anope::string param; + if (ci->GetParam(cm->Name, param)) + ret += " " + cm->NameAsString + " " + param; + } } if (!ret.empty()) |