X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientignorelistmanager.cpp;h=f146313fd3f74c3ef90f4813242ae74ce74d61eb;hp=e54eeb760cf8619d428931b433b9bff6d5995b2d;hb=f19fea582ace1d8f3dfe29c1096c48758079e56e;hpb=577206b749ceca0eac05320a7e93d5fe2308b011 diff --git a/src/client/clientignorelistmanager.cpp b/src/client/clientignorelistmanager.cpp index e54eeb76..f146313f 100644 --- a/src/client/clientignorelistmanager.cpp +++ b/src/client/clientignorelistmanager.cpp @@ -20,10 +20,38 @@ #include "clientignorelistmanager.h" +#include + INIT_SYNCABLE_OBJECT(ClientIgnoreListManager) ClientIgnoreListManager::ClientIgnoreListManager(QObject *parent) : IgnoreListManager(parent) { - connect(this, SIGNAL(updated()), SIGNAL(ignoreListChanged())); + connect(this, SIGNAL(updatedRemotely()), SIGNAL(ignoreListChanged())); +} + +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; +} + +QMap ClientIgnoreListManager::matchingRulesForHostmask(const QString &hostmask, const QString &network, const QString &channel) const { + QMap result; + foreach(IgnoreListItem item, ignoreList()) { + if(item.type == SenderIgnore && pureMatch(item, hostmask) + && ((network.isEmpty() && channel.isEmpty()) || item.scope == GlobalScope || (item.scope == NetworkScope && scopeMatch(item.scopeRule, network)) + || (item.scope == ChannelScope && scopeMatch(item.scopeRule, channel)))) { + result[item.ignoreRule] = item.isActive; +// qDebug() << "matchingRulesForHostmask found: " << item.ignoreRule << "is active: " << item.isActive; + } + + } + return result; }