Strip newlines from 'reason' fields in settings
[quassel.git] / src / qtui / chatmonitorfilter.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2012 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 "chatmonitorfilter.h"
22
23 #include "client.h"
24 #include "chatlinemodel.h"
25 #include "networkmodel.h"
26 #include "chatviewsettings.h"
27 #include "clientignorelistmanager.h"
28
29 ChatMonitorFilter::ChatMonitorFilter(MessageModel *model, QObject *parent)
30     : MessageFilter(model, parent)
31 {
32     ChatViewSettings viewSettings(idString());
33     _showFields = viewSettings.value("ShowFields", AllFields).toInt();
34     _showOwnMessages = viewSettings.value("ShowOwnMsgs", true).toBool();
35     viewSettings.notify("ShowFields", this, SLOT(showFieldsSettingChanged(const QVariant &)));
36     viewSettings.notify("ShowOwnMsgs", this, SLOT(showOwnMessagesSettingChanged(const QVariant &)));
37
38     // ChatMonitorSettingsPage
39     QString showHighlightsSettingsId = "ShowHighlights";
40     QString operationModeSettingsId = "OperationMode";
41     QString buffersSettingsId = "Buffers";
42
43     _showHighlights = viewSettings.value(showHighlightsSettingsId, false).toBool();
44     _operationMode = viewSettings.value(operationModeSettingsId, 0).toInt();
45     // read configured list of buffers to monitor/ignore
46     foreach(QVariant v, viewSettings.value(buffersSettingsId, QVariant()).toList())
47     _bufferIds << v.value<BufferId>();
48
49     viewSettings.notify(showHighlightsSettingsId, this, SLOT(showHighlightsSettingChanged(const QVariant &)));
50     viewSettings.notify(operationModeSettingsId, this, SLOT(operationModeSettingChanged(const QVariant &)));
51     viewSettings.notify(buffersSettingsId, this, SLOT(buffersSettingChanged(const QVariant &)));
52 }
53
54
55 bool ChatMonitorFilter::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const
56 {
57     Q_UNUSED(sourceParent)
58
59     QModelIndex source_index = sourceModel()->index(sourceRow, 0);
60
61     Message::Flags flags = (Message::Flags)source_index.data(MessageModel::FlagsRole).toInt();
62     if (flags & Message::Backlog || (!_showOwnMessages && flags & Message::Self))
63         return false;
64
65     Message::Type type = (Message::Type)source_index.data(MessageModel::TypeRole).toInt();
66     if (!(type & (Message::Plain | Message::Notice | Message::Action)))
67         return false;
68
69     BufferId bufferId = source_index.data(MessageModel::BufferIdRole).value<BufferId>();
70
71     // ChatMonitorSettingsPage
72     if (_operationMode == ChatViewSettings::OptOut
73         && !(_showHighlights && flags & Message::Highlight)
74         &&  _bufferIds.contains(bufferId))
75         return false;
76     if (_operationMode == ChatViewSettings::OptIn
77         && !(_showHighlights && flags & Message::Highlight)
78         && !_bufferIds.contains(bufferId))
79         return false;
80
81     // ignorelist handling
82     // only match if message is not flagged as server msg
83     if (!(flags & Message::ServerMsg) && Client::ignoreListManager()
84         && Client::ignoreListManager()->match(source_index.data(MessageModel::MessageRole).value<Message>(), Client::networkModel()->networkName(bufferId)))
85         return false;
86     return true;
87 }
88
89
90 // override this to inject display of network and channel
91 QVariant ChatMonitorFilter::data(const QModelIndex &index, int role) const
92 {
93     if (index.column() != ChatLineModel::SenderColumn || role != ChatLineModel::DisplayRole)
94         return MessageFilter::data(index, role);
95
96     BufferId bufid = data(index, ChatLineModel::BufferIdRole).value<BufferId>();
97     if (!bufid.isValid()) {
98         qDebug() << "ChatMonitorFilter::data(): chatline belongs to an invalid buffer!";
99         return QVariant();
100     }
101
102     QModelIndex source_index = mapToSource(index);
103
104     QStringList fields;
105     if (_showFields & NetworkField) {
106         fields << Client::networkModel()->networkName(bufid);
107     }
108     if (_showFields & BufferField) {
109         fields << Client::networkModel()->bufferName(bufid);
110     }
111
112     Message::Type messageType = (Message::Type)source_index.data(MessageModel::TypeRole).toInt();
113     if (messageType & (Message::Plain | Message::Notice)) {
114         QString sender = MessageFilter::data(index, ChatLineModel::EditRole).toString();
115         fields << sender;
116     }
117     return QString("<%1>").arg(fields.join(":"));
118 }
119
120
121 void ChatMonitorFilter::addShowField(int field)
122 {
123     if (_showFields & field)
124         return;
125
126     ChatViewSettings(idString()).setValue("ShowFields", _showFields | field);
127 }
128
129
130 void ChatMonitorFilter::removeShowField(int field)
131 {
132     if (!(_showFields & field))
133         return;
134
135     ChatViewSettings(idString()).setValue("ShowFields", _showFields ^ field);
136 }
137
138
139 void ChatMonitorFilter::setShowOwnMessages(bool show)
140 {
141     if (_showOwnMessages == show)
142         return;
143
144     ChatViewSettings(idString()).setValue("ShowOwnMsgs", show);
145 }
146
147
148 void ChatMonitorFilter::showFieldsSettingChanged(const QVariant &newValue)
149 {
150     int newFields = newValue.toInt();
151     if (_showFields == newFields)
152         return;
153
154     _showFields = newFields;
155
156     int rows = rowCount();
157     if (rows == 0)
158         return;
159
160     emit dataChanged(index(0, ChatLineModel::SenderColumn), index(rows - 1, ChatLineModel::SenderColumn));
161 }
162
163
164 void ChatMonitorFilter::showOwnMessagesSettingChanged(const QVariant &newValue)
165 {
166     _showOwnMessages = newValue.toBool();
167 }
168
169
170 void ChatMonitorFilter::showHighlightsSettingChanged(const QVariant &newValue)
171 {
172     _showHighlights = newValue.toBool();
173 }
174
175
176 void ChatMonitorFilter::operationModeSettingChanged(const QVariant &newValue)
177 {
178     _operationMode = newValue.toInt();
179 }
180
181
182 void ChatMonitorFilter::buffersSettingChanged(const QVariant &newValue)
183 {
184     _bufferIds.clear();
185     foreach(QVariant v, newValue.toList()) {
186         _bufferIds << v.value<BufferId>();
187     }
188     invalidateFilter();
189 }