summaryrefslogtreecommitdiff
path: root/src/modules/m_censor.cpp
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2018-04-15 00:20:56 +0100
committerPeter Powell <petpow@saberuk.com>2018-04-16 09:47:05 +0100
commit5d3b128ca2a63d7c04b51f58c0e9c390255a9365 (patch)
tree72aead3d444efce2fa84eeb83bb679412c1e27d2 /src/modules/m_censor.cpp
parentf3526d9511086fbda23cfb383bbf8db27b439671 (diff)
Replace the remaining use of irc::string with irc::find.
Diffstat (limited to 'src/modules/m_censor.cpp')
-rw-r--r--src/modules/m_censor.cpp19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/modules/m_censor.cpp b/src/modules/m_censor.cpp
index fce00dfc7..cb2bec85a 100644
--- a/src/modules/m_censor.cpp
+++ b/src/modules/m_censor.cpp
@@ -23,7 +23,7 @@
#include "inspircd.h"
#include "modules/exemption.h"
-typedef insp::flat_map<irc::string, irc::string> censor_t;
+typedef insp::flat_map<std::string, std::string, irc::insensitive_swo> censor_t;
class ModuleCensor : public Module
{
@@ -63,10 +63,10 @@ class ModuleCensor : public Module
if (!active)
return MOD_RES_PASSTHRU;
- irc::string text2 = details.text.c_str();
for (censor_t::iterator index = censors.begin(); index != censors.end(); index++)
{
- if (text2.find(index->first) != irc::string::npos)
+ size_t censorpos;
+ while ((censorpos = irc::find(details.text, index->first)) != std::string::npos)
{
if (index->second.empty())
{
@@ -75,10 +75,9 @@ class ModuleCensor : public Module
return MOD_RES_DENY;
}
- stdalgo::string::replace_all(text2, index->first, index->second);
+ details.text.replace(censorpos, index->first.size(), index->second);
}
}
- details.text = text2.c_str();
return MOD_RES_PASSTHRU;
}
@@ -94,10 +93,12 @@ class ModuleCensor : public Module
for (ConfigIter i = badwords.first; i != badwords.second; ++i)
{
ConfigTag* tag = i->second;
- std::string str = tag->getString("text");
- irc::string pattern(str.c_str());
- str = tag->getString("replace");
- censors[pattern] = irc::string(str.c_str());
+ const std::string text = tag->getString("text");
+ if (text.empty())
+ continue;
+
+ const std::string replace = tag->getString("replace");
+ censors[text] = replace;
}
}