modernize: Pass arguments by value and move in constructors
[quassel.git] / src / qtui / awaylogfilter.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005-2018 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 "awaylogfilter.h"
22 #include "clientignorelistmanager.h"
23
24 AwayLogFilter::AwayLogFilter(MessageModel *model, QObject *parent)
25     : ChatMonitorFilter(model, parent)
26 {
27 }
28
29
30 bool AwayLogFilter::filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const
31 {
32     Q_UNUSED(sourceParent)
33
34     QModelIndex source_index = sourceModel()->index(sourceRow, 0);
35
36     Message::Flags flags = (Message::Flags)sourceModel()->data(source_index, MessageModel::FlagsRole).toInt();
37     // Only show highlights from the backlog
38     if (!(flags & Message::Backlog && flags & Message::Highlight)) {
39         return false;
40     }
41
42     // do not use invalid buffers
43     BufferId bufferId = sourceModel()->data(source_index, MessageModel::BufferIdRole).value<BufferId>();
44     if (!bufferId.isValid()) {
45         return false;
46     }
47
48     // only show messages that were sent after the user detached
49     if (Client::networkModel()->lastSeenMsgId(bufferId) >= sourceModel()->data(source_index, MessageModel::MsgIdRole).value<MsgId>()) {
50         return false;
51     }
52
53     // ignorelist handling
54     // only match if message is not flagged as server msg
55     if (!(flags & Message::ServerMsg) && Client::ignoreListManager()
56             && Client::ignoreListManager()->match(source_index.data(MessageModel::MessageRole).value<Message>(), Client::networkModel()->networkName(bufferId))) {
57         return false;
58     }
59
60     return true;
61 }
62
63
64 QVariant AwayLogFilter::data(const QModelIndex &index, int role) const
65 {
66     if (role != MessageModel::FlagsRole)
67         return ChatMonitorFilter::data(index, role);
68
69     QModelIndex source_index = mapToSource(index);
70     Message::Flags flags = (Message::Flags)sourceModel()->data(source_index, MessageModel::FlagsRole).toInt();
71     flags &= ~Message::Highlight;
72     return (int)flags;
73 }