X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientignorelistmanager.cpp;h=93463af824ac01abbe49e451258eb10bd71becd2;hp=d13ce71b93b2a8a5d0b8d96b4e35d1d8d9111f1a;hb=158443f71d48215eea8b47b836b61afd77654b78;hpb=9d54503555534a2c554f09a33df6afa33d6308ec diff --git a/src/client/clientignorelistmanager.cpp b/src/client/clientignorelistmanager.cpp index d13ce71b..93463af8 100644 --- a/src/client/clientignorelistmanager.cpp +++ b/src/client/clientignorelistmanager.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2014 by the Quassel Project * + * Copyright (C) 2005-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -20,10 +20,6 @@ #include "clientignorelistmanager.h" -#include - -INIT_SYNCABLE_OBJECT(ClientIgnoreListManager) - ClientIgnoreListManager::ClientIgnoreListManager(QObject *parent) : IgnoreListManager(parent) { @@ -33,15 +29,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 +37,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(item.scopeRule, network)) - || (item.scope == ChannelScope && scopeMatch(item.scopeRule, channel)))) { - 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;