X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientignorelistmanager.cpp;fp=src%2Fclient%2Fclientignorelistmanager.cpp;h=461f629c4e80ada2dbf73289500423ef1d8071b6;hp=2f112efa116ebcdfb551d1859211a1312f6abaca;hb=5b397a71c0f4827c3050659c39749d78831a0d6d;hpb=74226102118400b228618f7373137a4a01e7d85f diff --git a/src/client/clientignorelistmanager.cpp b/src/client/clientignorelistmanager.cpp index 2f112efa..461f629c 100644 --- a/src/client/clientignorelistmanager.cpp +++ b/src/client/clientignorelistmanager.cpp @@ -20,8 +20,6 @@ #include "clientignorelistmanager.h" -#include - INIT_SYNCABLE_OBJECT(ClientIgnoreListManager) ClientIgnoreListManager::ClientIgnoreListManager(QObject *parent) @@ -33,15 +31,7 @@ ClientIgnoreListManager::ClientIgnoreListManager(QObject *parent) bool ClientIgnoreListManager::pureMatch(const IgnoreListItem &item, const QString &string) const { - QRegExp ruleRx = QRegExp(item.ignoreRule); - ruleRx.setCaseSensitivity(Qt::CaseInsensitive); - if (!item.isRegEx) - ruleRx.setPatternSyntax(QRegExp::Wildcard); - - if ((!item.isRegEx && ruleRx.exactMatch(string)) || - (item.isRegEx && ruleRx.indexIn(string) != -1)) - return true; - return false; + return (item.contentsMatcher().match(string)); } @@ -49,11 +39,14 @@ QMap ClientIgnoreListManager::matchingRulesForHostmask(const QStr { QMap result; foreach(IgnoreListItem item, ignoreList()) { - if (item.type == SenderIgnore && pureMatch(item, hostmask) - && ((network.isEmpty() && channel.isEmpty()) || item.scope == GlobalScope || (item.scope == NetworkScope && scopeMatch(network, item.scopeRule)) - || (item.scope == ChannelScope && scopeMatch(channel, item.scopeRule)))) { - result[item.ignoreRule] = item.isActive; -// qDebug() << "matchingRulesForHostmask found: " << item.ignoreRule << "is active: " << item.isActive; + if (item.type() == SenderIgnore && pureMatch(item, hostmask) + && ((network.isEmpty() && channel.isEmpty()) + || item.scope() == GlobalScope + || (item.scope() == NetworkScope && item.scopeRuleMatcher().match(network)) + || (item.scope() == ChannelScope && item.scopeRuleMatcher().match(channel)))) { + result[item.contents()] = item.isEnabled(); + // qDebug() << "matchingRulesForHostmask found: " << item.contents() + // << "is active: " << item.isActive; } } return result;