X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fclient%2Fclientignorelistmanager.cpp;h=bc317c95e085e32c4e862993f89094a3201bc4e4;hp=02a4e23fa70f8fbc28361c159073ef70f67d0e41;hb=HEAD;hpb=4a5065255e652dd0c301bac0db41b7afb777ef49 diff --git a/src/client/clientignorelistmanager.cpp b/src/client/clientignorelistmanager.cpp index 02a4e23f..bc317c95 100644 --- a/src/client/clientignorelistmanager.cpp +++ b/src/client/clientignorelistmanager.cpp @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2013 by the Quassel Project * + * Copyright (C) 2005-2022 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -20,40 +20,30 @@ #include "clientignorelistmanager.h" -#include - -INIT_SYNCABLE_OBJECT(ClientIgnoreListManager) - -ClientIgnoreListManager::ClientIgnoreListManager(QObject *parent) +ClientIgnoreListManager::ClientIgnoreListManager(QObject* parent) : IgnoreListManager(parent) { - connect(this, SIGNAL(updatedRemotely()), SIGNAL(ignoreListChanged())); + connect(this, &SyncableObject::updatedRemotely, this, &ClientIgnoreListManager::ignoreListChanged); } - -bool ClientIgnoreListManager::pureMatch(const IgnoreListItem &item, const QString &string) const +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)); } - -QMap ClientIgnoreListManager::matchingRulesForHostmask(const QString &hostmask, const QString &network, const QString &channel) const +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; + foreach (IgnoreListItem item, ignoreList()) { + 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;