common: Disable enum type stream operators for Qt >= 5.14
[quassel.git] / src / common / nickhighlightmatcher.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2019 by the Quassel Project                        *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
19  ***************************************************************************/
20
21 #include "nickhighlightmatcher.h"
22
23 #include <QDebug>
24 #include <QString>
25 #include <QStringList>
26
27 bool NickHighlightMatcher::match(const QString& string, const NetworkId& netId, const QString& currentNick, const QStringList& identityNicks) const
28 {
29     // Never match for no nicknames
30     if (_highlightMode == HighlightNickType::NoNick) {
31         return false;
32     }
33
34     // Don't match until current nickname is known
35     if (currentNick.isEmpty()) {
36         return false;
37     }
38
39     // Make sure expression matcher is ready
40     determineExpressions(netId, currentNick, identityNicks);
41
42     // Check for a match
43     if (_nickMatchCache[netId].matcher.isValid() && _nickMatchCache[netId].matcher.match(string)) {
44         // Nick matcher is valid and match found
45         return true;
46     }
47
48     return false;
49 }
50
51 void NickHighlightMatcher::determineExpressions(const NetworkId& netId, const QString& currentNick, const QStringList& identityNicks) const
52 {
53     // Don't do anything for no nicknames
54     if (_highlightMode == HighlightNickType::NoNick) {
55         return;
56     }
57
58     // Only update if needed (check nickname config, current nick, identity nicks for change)
59     if (_nickMatchCache.contains(netId) && _nickMatchCache[netId].nickCurrent == currentNick
60         && _nickMatchCache[netId].identityNicks == identityNicks) {
61         return;
62     }
63
64     // Add all nicknames
65     QStringList nickList;
66     if (_highlightMode == HighlightNickType::CurrentNick) {
67         nickList << currentNick;
68     }
69     else if (_highlightMode == HighlightNickType::AllNicks) {
70         nickList = identityNicks;
71         if (!nickList.contains(currentNick))
72             nickList.prepend(currentNick);
73     }
74
75     // Set up phrase matcher, joining with newlines
76     _nickMatchCache[netId].matcher = ExpressionMatch(nickList.join("\n"), ExpressionMatch::MatchMode::MatchMultiPhrase, _isCaseSensitive);
77
78     _nickMatchCache[netId].nickCurrent = currentNick;
79     _nickMatchCache[netId].identityNicks = identityNicks;
80
81     qDebug() << "Regenerated nickname matching cache for network ID" << netId;
82 }