X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_filter.cpp;h=1074b27bb913873056b1b0ad9a1d1309e123411c;hb=2e52ff280dca14d1598b84fab7a8c2e93fa30910;hp=4942b7fb40dcdfb39f12011b0d194ba67ef41ff3;hpb=9f477a1083574d01c78f12d95772ed122607a4ad;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_filter.cpp b/src/modules/m_filter.cpp index 4942b7fb4..1074b27bb 100644 --- a/src/modules/m_filter.cpp +++ b/src/modules/m_filter.cpp @@ -40,13 +40,8 @@ class ModuleFilter : public FilterBase public: ModuleFilter(InspIRCd* Me) - : FilterBase::FilterBase(Me) + : FilterBase::FilterBase(Me, "m_filter.so") { - // read the configuration file on startup. - // it is perfectly valid to set to the value of the - // main config file, then append your tags to the bottom - // of the main config... but rather messy. That's why the capability - // of using a seperate config file is provided. OnRehash(""); } @@ -71,6 +66,7 @@ class ModuleFilter : public FilterBase { if (filters.find(freeform) != filters.end()) { + delete (filters.find(freeform))->second; filters.erase(filters.find(freeform)); return true; } @@ -88,22 +84,28 @@ class ModuleFilter : public FilterBase x->reason = reason; x->action = type; x->gline_time = duration; + x->freeform = freeform; filters[freeform] = x; return std::make_pair(true, ""); } - virtual void OnRehash(const std::string ¶meter) + virtual void SyncFilters(Module* proto, void* opaque) { - // this automatically re-reads the configuration file into the class - ConfigReader* MyConf = new ConfigReader(ServerInstance); for (filter_t::iterator n = filters.begin(); n != filters.end(); n++) { - DELETE(n->second); + this->SendFilter(proto, opaque, n->second); } - filters.clear(); + } + + virtual void OnRehash(const std::string ¶meter) + { + ConfigReader* MyConf = new ConfigReader(ServerInstance); + for (int index = 0; index < MyConf->Enumerate("keyword"); index++) { + this->DeleteFilter(MyConf->ReadValue("keyword","pattern",index)); + std::string pattern = MyConf->ReadValue("keyword","pattern",index); std::string reason = MyConf->ReadValue("keyword","reason",index); std::string do_action = MyConf->ReadValue("keyword","action",index); @@ -114,10 +116,24 @@ class ModuleFilter : public FilterBase x->reason = reason; x->action = do_action; x->gline_time = gline_time; + x->freeform = pattern; filters[pattern] = x; } DELETE(MyConf); } + + virtual int OnStats(char symbol, userrec* user, string_list &results) + { + if (symbol == 's') + { + std::string sn = ServerInstance->Config->ServerName; + for (filter_t::iterator n = filters.begin(); n != filters.end(); n++) + { + results.push_back(sn+" 223 "+user->nick+" :GLOB:"+n->second->freeform+" "+n->second->action+" "+ConvToStr(n->second->gline_time)+" :"+n->second->reason); + } + } + return 0; + } }; // stuff down here is the module-factory stuff. For basic modules you can ignore this.