X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fxline.cpp;h=8843b99898908babdc5cecacfbc3fd025caf8315;hb=9ebc0997ccd8c6eea8742d0f9c59b9e3f78c85fc;hp=7ce6c3f0a5fecad261271ec273420cfc7c96a822;hpb=efce1ce1e7b05610bf765cafa82cc7618ed4872a;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/xline.cpp b/src/xline.cpp index 7ce6c3f0a..8843b9989 100644 --- a/src/xline.cpp +++ b/src/xline.cpp @@ -11,7 +11,7 @@ * --------------------------------------------------- */ -/* $Core: libIRCDxline */ +/* $Core */ #include "inspircd.h" #include "wildcard.h" @@ -116,6 +116,22 @@ XLineLookup* XLineManager::GetAll(const std::string &type) return &(n->second); } +void XLineManager::DelAll(const std::string &type) +{ + ContainerIter n = lookup_lines.find(type); + + if (n == lookup_lines.end()) + return; + + LookupIter x; + + /* Delete all of a given type (this should probably use DelLine, but oh well) */ + while ((x = n->second.begin()) != n->second.end()) + { + ExpireLine(n, x); + } +} + std::vector XLineManager::GetAllTypes() { std::vector items; @@ -158,7 +174,13 @@ bool XLineManager::AddLine(XLine* line, User* user) return false; /*ELine* item = new ELine(ServerInstance, ServerInstance->Time(), duration, source, reason, ih.first.c_str(), ih.second.c_str());*/ - pending_lines.push_back(line); + XLineFactory* xlf = GetFactory(line->type); + if (!xlf) + return false; + + if (xlf->AutoApplyToUserList(line)) + pending_lines.push_back(line); + lookup_lines[line->type][line->Displayable()] = line; line->OnAdd(); @@ -385,6 +407,18 @@ XLineManager::~XLineManager() delete KFact; delete QFact; delete ZFact; + + // Delete all existing XLines + for (XLineContainer::iterator i = lookup_lines.begin(); i != lookup_lines.end(); i++) + { + for (XLineLookup::iterator j = i->second.begin(); j != i->second.end(); j++) + { + delete j->second; + } + i->second.clear(); + } + lookup_lines.clear(); + } void XLine::Apply(User* u) @@ -401,11 +435,12 @@ void XLine::DefaultApply(User* u, const std::string &line, bool bancache) char sreason[MAXBUF]; snprintf(sreason, MAXBUF, "%s-Lined: %s", line.c_str(), this->reason); if (*ServerInstance->Config->MoronBanner) - u->WriteServ("NOTICE %s :*** %s", u->nick, ServerInstance->Config->MoronBanner); + u->WriteServ("NOTICE %s :*** %s", u->nick.c_str(), ServerInstance->Config->MoronBanner); + if (ServerInstance->Config->HideBans) - User::QuitUser(ServerInstance, u, line + "-Lined", sreason); + ServerInstance->Users->QuitUser(u, line + "-Lined", sreason); else - User::QuitUser(ServerInstance, u, sreason); + ServerInstance->Users->QuitUser(u, sreason); if (bancache) @@ -507,13 +542,13 @@ bool QLine::Matches(User *u) void QLine::Apply(User* u) { /* Force to uuid on apply of qline, no need to disconnect any more :) */ - u->ForceNickChange(u->uuid); + u->ForceNickChange(u->uuid.c_str()); } bool ZLine::Matches(const std::string &str) { - if (match(str.c_str(), this->ipaddr, true)) + if (match(str, this->ipaddr, true)) return true; else return false; @@ -521,7 +556,7 @@ bool ZLine::Matches(const std::string &str) bool QLine::Matches(const std::string &str) { - if (match(str.c_str(), this->nick)) + if (match(str, this->nick)) return true; return false; @@ -529,17 +564,17 @@ bool QLine::Matches(const std::string &str) bool ELine::Matches(const std::string &str) { - return ((match(str.c_str(), matchtext.c_str(), true))); + return ((match(str, matchtext, true))); } bool KLine::Matches(const std::string &str) { - return ((match(str.c_str(), matchtext.c_str(), true))); + return ((match(str.c_str(), matchtext, true))); } bool GLine::Matches(const std::string &str) { - return ((match(str.c_str(), matchtext.c_str(), true))); + return ((match(str, matchtext, true))); } void ELine::OnAdd()