-
Notifications
You must be signed in to change notification settings - Fork 108
/
messageeventmodel.cpp
938 lines (852 loc) · 38 KB
/
messageeventmodel.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
/**************************************************************************
* *
* SPDX-FileCopyrightText: 2015 Felix Rohrbach <kde@fxrh.de> *
* *
* SPDX-License-Identifier: GPL-3.0-or-later
* *
**************************************************************************/
#include "messageeventmodel.h"
#include <QtCore/QDebug>
#include <QtGui/QPalette>
#include <QtQml> // for qmlRegisterType()
#include "../quaternionroom.h"
#include "../htmlfilter.h"
#include "../logging_categories.h"
#include <Quotient/connection.h>
#include <Quotient/user.h>
#include <Quotient/settings.h>
#include <Quotient/events/encryptionevent.h>
#include <Quotient/events/roommemberevent.h>
#include <Quotient/events/simplestateevents.h>
#include <Quotient/events/redactionevent.h>
#include <Quotient/events/roomavatarevent.h>
#include <Quotient/events/roomcreateevent.h>
#include <Quotient/events/roomtombstoneevent.h>
#include <Quotient/events/roomcanonicalaliasevent.h>
#include <Quotient/events/reactionevent.h>
QHash<int, QByteArray> MessageEventModel::roleNames() const
{
static const auto roles = [this] {
auto roles = QAbstractItemModel::roleNames();
// Not every Qt standard role has a role name, turns out
roles.insert(Qt::ForegroundRole, "foreground");
roles.insert(EventTypeRole, "eventType");
roles.insert(EventIdRole, "eventId");
roles.insert(DateTimeRole, "dateTime");
roles.insert(DateRole, "date");
roles.insert(EventGroupingRole, "eventGrouping");
roles.insert(AuthorRole, "author");
roles.insert(AuthorHasAvatarRole, "authorHasAvatar");
roles.insert(ContentRole, "content");
roles.insert(ContentTypeRole, "contentType");
roles.insert(HighlightRole, "highlight");
roles.insert(SpecialMarksRole, "marks");
roles.insert(LongOperationRole, "progressInfo");
roles.insert(AnnotationRole, "annotation");
roles.insert(EventClassNameRole, "eventClassName");
roles.insert(RefRole, "refId");
roles.insert(ReactionsRole, "reactions");
return roles;
}();
return roles;
}
MessageEventModel::MessageEventModel(QObject* parent)
: QAbstractListModel(parent)
{
using namespace Quotient;
qmlRegisterAnonymousType<FileTransferInfo>("Quotient", 1);
qmlRegisterUncreatableMetaObject(EventStatus::staticMetaObject,
"Quotient", 1, 0, "EventStatus",
"Access to EventStatus enums only");
qmlRegisterUncreatableMetaObject(EventGrouping::staticMetaObject,
"Quotient", 1, 0, "EventGrouping",
"Access to enums only");
// This could be a single line in changeRoom() but then there's a race
// condition between the model reset completion and the room property
// update in QML - connecting the two signals early on overtakes any QML
// connection to modelReset. Ideally the room property could use modelReset
// for its NOTIFY signal - unfortunately, moc doesn't support using
// parent's signals with parameters in NOTIFY
// NB: this makes all roomChanged connections order before modelReset
// connections
connect(this, &MessageEventModel::modelReset, //
this, &MessageEventModel::roomChanged);
}
QuaternionRoom* MessageEventModel::room() const { return m_currentRoom; }
void MessageEventModel::changeRoom(QuaternionRoom* room)
{
if (room == m_currentRoom)
return;
if (m_currentRoom) {
qCDebug(EVENTMODEL)
<< "Disconnecting event model from" << m_currentRoom->objectName();
// Reset the model to a null room first to make sure QML dismantles
// last room's objects before the room is actually changed
beginResetModel();
m_currentRoom->disconnect(this);
m_currentRoom = nullptr;
endResetModel();
}
beginResetModel();
m_currentRoom = room;
if (m_currentRoom) {
using namespace Quotient;
connect(m_currentRoom, &Room::aboutToAddNewMessages, this,
[this](RoomEventsRange events) {
incomingEvents(events, timelineBaseIndex());
});
connect(m_currentRoom, &Room::aboutToAddHistoricalMessages, this,
[this](RoomEventsRange events) {
incomingEvents(events, rowCount());
});
connect(m_currentRoom, &Room::addedMessages, this,
[this] (int lowest, int biggest) {
endInsertRows();
if (biggest < m_currentRoom->maxTimelineIndex()) {
// When historical events arrive, make sure to update
// the previously-oldest event (e.g. to move author mark
// to an older event)
const auto rowBelowInserted =
m_currentRoom->maxTimelineIndex() - biggest
+ timelineBaseIndex() - 1;
refreshEventRoles(rowBelowInserted,
{ EventGroupingRole });
}
for (auto i = m_currentRoom->maxTimelineIndex() - biggest;
i <= m_currentRoom->maxTimelineIndex() - lowest;
++i)
refreshLastUserEvents(i);
});
connect(m_currentRoom, &Room::pendingEventAboutToAdd, this,
[this] { beginInsertRows({}, 0, 0); });
connect(m_currentRoom, &Room::pendingEventAdded,
this, &MessageEventModel::endInsertRows);
connect(m_currentRoom, &Room::pendingEventAboutToMerge, this,
[this] (RoomEvent*, int i)
{
if (i == 0)
return; // No need to move anything, just refresh
movingEvent = true;
// Reverse i because row 0 is bottommost in the model
const auto row = timelineBaseIndex() - i - 1;
auto moveBegan = beginMoveRows({}, row, row,
{}, timelineBaseIndex());
Q_ASSERT(moveBegan);
});
connect(m_currentRoom, &Room::pendingEventMerged, this,
[this] {
if (movingEvent)
{
endMoveRows();
movingEvent = false;
}
refreshRow(timelineBaseIndex()); // Refresh the looks
refreshLastUserEvents(0);
if (timelineBaseIndex() > 0) // Refresh below, see #312
refreshEventRoles(timelineBaseIndex() - 1,
{ EventGroupingRole });
});
connect(m_currentRoom, &Room::pendingEventChanged,
this, &MessageEventModel::refreshRow);
connect(m_currentRoom, &Room::pendingEventAboutToDiscard,
this, [this] (int i) { beginRemoveRows({}, i, i); });
connect(m_currentRoom, &Room::pendingEventDiscarded,
this, &MessageEventModel::endRemoveRows);
connect(m_currentRoom, &Room::fullyReadMarkerMoved,
this, &MessageEventModel::readMarkerUpdated);
connect(m_currentRoom, &Room::replacedEvent, this,
[this] (const RoomEvent* newEvent) {
refreshLastUserEvents(
refreshEvent(newEvent->id()) - timelineBaseIndex());
});
connect(m_currentRoom, &Room::updatedEvent,
this, &MessageEventModel::refreshEvent);
connect(m_currentRoom, &Room::fileTransferProgress,
this, &MessageEventModel::refreshEvent);
connect(m_currentRoom, &Room::fileTransferCompleted,
this, &MessageEventModel::refreshEvent);
connect(m_currentRoom, &Room::fileTransferFailed,
this, &MessageEventModel::refreshEvent);
qCDebug(EVENTMODEL)
<< "Event model connected to room" << room->objectName() //
<< "as" << room->localMember().id();
// If the timeline isn't loaded, ask for at least something right away
if (room->timelineSize() == 0)
room->getPreviousContent(30);
}
endResetModel();
emit readMarkerUpdated();
}
int MessageEventModel::refreshEvent(const QString& eventId)
{
int row = findRow(eventId, true);
if (row >= 0)
refreshEventRoles(row);
else
qCWarning(EVENTMODEL)
<< "Trying to refresh inexistent event:" << eventId;
return row;
}
void MessageEventModel::refreshRow(int row)
{
refreshEventRoles(row);
}
void MessageEventModel::incomingEvents(Quotient::RoomEventsRange events,
int atIndex)
{
beginInsertRows({}, atIndex, atIndex + int(events.size()) - 1);
}
int MessageEventModel::readMarkerVisualIndex() const
{
if (!m_currentRoom)
return -1; // Beyond the bottommost (sync) edge of the timeline
if (auto r = findRow(m_currentRoom->lastFullyReadEventId()); r != -1) {
// Ensure that the read marker is on a visible event
// TODO: move this to libQuotient once it allows to customise
// event status calculation
while (r < rowCount() - 1
&& data(index(r, 0), SpecialMarksRole)
== Quotient::EventStatus::Hidden)
++r;
return r;
}
return rowCount(); // Beyond the topmost (history) edge of the timeline
}
int MessageEventModel::timelineBaseIndex() const
{
return m_currentRoom ? int(m_currentRoom->pendingEvents().size()) : 0;
}
void MessageEventModel::refreshEventRoles(int row, const QVector<int>& roles)
{
const auto idx = index(row);
emit dataChanged(idx, idx, roles);
}
int MessageEventModel::findRow(const QString& id, bool includePending) const
{
// On 64-bit platforms, difference_type for std containers is long long
// but Qt uses int throughout its interfaces; hence casting to int below.
if (!id.isEmpty()) {
// First try pendingEvents because it is almost always very short.
if (includePending) {
const auto pendingIt = m_currentRoom->findPendingEvent(id);
if (pendingIt != m_currentRoom->pendingEvents().end())
return int(pendingIt - m_currentRoom->pendingEvents().begin());
}
const auto timelineIt = m_currentRoom->findInTimeline(id);
if (timelineIt != m_currentRoom->historyEdge())
return int(timelineIt - m_currentRoom->messageEvents().rbegin())
+ timelineBaseIndex();
}
return -1;
}
namespace {
inline std::optional<QDateTime> getTimestamp(auto from, auto to)
{
if (auto it = std::find_if(from, to,
[](const Quotient::TimelineItem& ti) {
return ti->originTimestamp().isValid();
});
it != to)
return QDateTime(it->event()->originTimestamp().date(), { 0, 0 }
#if QT_VERSION < QT_VERSION_CHECK(6, 5, 0)
,
Qt::LocalTime
#endif
);
return std::nullopt;
}
}
QDateTime MessageEventModel::makeMessageTimestamp(
const QuaternionRoom::rev_iter_t& baseIt) const
{
const auto& timeline = m_currentRoom->messageEvents();
if (auto ts = baseIt->event()->originTimestamp(); ts.isValid())
return ts;
// The event is most likely redacted or just invalid.
// Look for the nearest date around and slap zero time to it.
if (auto closestPastTs = getTimestamp(baseIt, timeline.rend()))
return *closestPastTs;
if (auto closestFutureTs = getTimestamp(baseIt.base(), timeline.end()))
return *closestFutureTs;
// What kind of room is that?..
qCCritical(EVENTMODEL) << "No valid timestamps in the room timeline!";
return {};
}
QString MessageEventModel::renderDate(const QDateTime& timestamp)
{
auto date = timestamp.date();
static Quotient::SettingsGroup sg { "UI" };
if (sg.get("use_human_friendly_dates",
sg.get("banner_human_friendly_date", true)))
{
if (date == QDate::currentDate())
return tr("Today");
if (date == QDate::currentDate().addDays(-1))
return tr("Yesterday");
if (date == QDate::currentDate().addDays(-2))
return tr("The day before yesterday");
if (date > QDate::currentDate().addDays(-7))
{
auto s = QLocale().standaloneDayName(date.dayOfWeek());
// Some locales (e.g., Russian on Windows) don't capitalise
// the day name so make sure the first letter is uppercase.
if (!s.isEmpty() && !s[0].isUpper())
s[0] = QLocale().toUpper(s.mid(0,1)).at(0);
return s;
}
}
return QLocale().toString(date, QLocale::ShortFormat);
}
bool MessageEventModel::isUserActivityNotable(
const QuaternionRoom::rev_iter_t& baseIt) const
{
const auto& userId = (*baseIt)->isStateEvent()
? (*baseIt)->stateKey() : (*baseIt)->senderId();
// Go up to the nearest join and down to the nearest leave of this author
// (limit the lookup to 100 events for the sake of performance);
// in this range find out if there's any event from that user besides
// joins, leaves and redacted (self- or by somebody else); if there's not,
// double-check that there are no redactions and that it's not a single
// join or leave.
using namespace Quotient;
bool joinFound = false, redactionsFound = false;
// Find the nearest join of this user above, or a no-nonsense event.
for (auto it = baseIt,
limit = baseIt +
std::min(int(m_currentRoom->historyEdge() - baseIt), 100);
it != limit; ++it)
{
const auto& e = **it;
if (e.senderId() != userId && e.stateKey() != userId)
continue;
if (e.isRedacted())
{
redactionsFound = true;
continue;
}
if (auto* me = it->viewAs<RoomMemberEvent>())
{
if (e.stateKey() != userId)
return true; // An action on another member is notable
if (!me->isJoin())
continue;
joinFound = true;
break;
}
return true; // Consider all other events notable
}
// Find the nearest leave of this user below, or a no-nonsense event
bool leaveFound = false;
for (auto it = baseIt.base() - 1,
limit = baseIt.base() +
std::min(int(m_currentRoom->messageEvents().end() - baseIt.base()),
100);
it != limit; ++it)
{
const auto& e = **it;
if (e.senderId() != userId && e.stateKey() != userId)
continue;
if (e.isRedacted())
{
redactionsFound = true;
continue;
}
if (auto* me = it->viewAs<RoomMemberEvent>())
{
if (e.stateKey() != userId)
return true; // An action on another member is notable
if (!me->isLeave() && me->membership() != Membership::Ban)
continue;
leaveFound = true;
break;
}
return true;
}
// If we are here, it means that no notable events have been found in
// the timeline vicinity, and probably redactions are there. Doesn't look
// notable but let's give some benefit of doubt.
if (redactionsFound)
return false; // Join + redactions or redactions + leave
return !(joinFound && leaveFound); // Join + (maybe profile changes) + leave
}
void MessageEventModel::refreshLastUserEvents(int baseTimelineRow)
{
if (!m_currentRoom || m_currentRoom->timelineSize() <= baseTimelineRow)
return;
const auto& timelineBottom = m_currentRoom->messageEvents().rbegin();
const auto& lastSender = (*(timelineBottom + baseTimelineRow))->senderId();
const auto limit = timelineBottom +
std::min(baseTimelineRow + 100, m_currentRoom->timelineSize());
for (auto it = timelineBottom + std::max(baseTimelineRow - 100, 0);
it != limit; ++it)
{
if ((*it)->senderId() == lastSender)
{
auto idx = index(it - timelineBottom);
emit dataChanged(idx, idx);
}
}
}
int MessageEventModel::rowCount(const QModelIndex& parent) const
{
if( !m_currentRoom || parent.isValid() )
return 0;
return m_currentRoom->timelineSize() + m_currentRoom->pendingEvents().size();
}
inline QColor mixColors(QColor base, QColor tint, qreal mixRatio = 0.5)
{
mixRatio = tint.alphaF() * mixRatio;
const auto baseRatio = 1 - mixRatio;
return QColor::fromRgbF(tint.redF() * mixRatio + base.redF() * baseRatio,
tint.greenF() * mixRatio + base.greenF() * baseRatio,
tint.blueF() * mixRatio + base.blueF() * baseRatio,
mixRatio + base.alphaF() * baseRatio);
}
inline QColor fadedTextColor(QColor unfadedColor, qreal fadeRatio = 0.5)
{
return mixColors(QPalette().color(QPalette::Disabled, QPalette::Text),
unfadedColor, fadeRatio);
}
QColor MessageEventModel::fadedBackColor(QColor unfadedColor,
qreal fadeRatio) const
{
return mixColors(QPalette().color(QPalette::Disabled, QPalette::Base),
unfadedColor, fadeRatio);
}
QVariant MessageEventModel::data(const QModelIndex& idx, int role) const
{
const auto row = idx.row();
if (!idx.isValid() || row >= rowCount())
return {};
bool isPending = row < timelineBaseIndex();
const auto timelineIt = m_currentRoom->messageEvents().crbegin() +
std::max(0, row - timelineBaseIndex());
const auto pendingIt = m_currentRoom->pendingEvents().crbegin() +
std::min(row, timelineBaseIndex());
const auto& evt = isPending ? **pendingIt : **timelineIt;
using namespace Quotient;
static Settings settings;
if (role == Qt::DisplayRole) {
if (evt.isRedacted()) {
auto reason = evt.redactedBecause()->reason();
if (reason.isEmpty())
return tr("Redacted");
return tr("Redacted: %1").arg(reason.toHtmlEscaped());
}
// clang-format off
return switchOnType(evt
, [this] (const RoomMessageEvent& e) {
// clang-format on
using namespace Quotient::EventContent;
if (e.has<TextContent>() && e.mimeType().name() != "text/plain") {
// Naïvely assume that it's HTML
auto htmlBody = e.get<TextContent>()->body;
auto [cleanHtml, errorPos, errorString] =
HtmlFilter::fromMatrixHtml(htmlBody, m_currentRoom);
// If HTML is bad (or it's not HTML at all), fall back
// to returning the prettified plain text
if (errorPos != -1) {
cleanHtml = m_currentRoom->prettyPrint(e.plainBody());
// A manhole to visualise HTML errors
if (settings.get<bool>("Debug/html"))
cleanHtml +=
QStringLiteral("<br /><font color=\"red\">"
"At pos %1: %2</font>")
.arg(QString::number(errorPos), errorString);
}
return cleanHtml;
}
if (const auto fileContent = e.get<FileContentBase>()) {
auto fileCaption = fileContent->commonInfo().originalName.toHtmlEscaped();
if (fileCaption.isEmpty())
fileCaption = m_currentRoom->prettyPrint(e.plainBody());
return !fileCaption.isEmpty() ? fileCaption : tr("a file");
}
return m_currentRoom->prettyPrint(e.plainBody());
// clang-format off
}
, [this] (const RoomMemberEvent& e) {
// clang-format on
// FIXME: Rewind to the name that was at the time of this event
const auto subjectName =
m_currentRoom->member(e.userId()).htmlSafeDisambiguatedName();
// The below code assumes senderName output in AuthorRole
switch( e.membership() )
{
case Membership::Invite:
case Membership::Join: {
QString text {};
// Part 1: invites and joins
if (e.membership() == Membership::Invite)
text = tr("invited %1 to the room")
.arg(subjectName);
else if (e.changesMembership())
text = tr("joined the room");
if (!text.isEmpty()) {
if (e.repeatsState())
text += ' '
//: State event that doesn't change the state
% tr("(repeated)");
if (!e.reason().isEmpty())
text += ": " + e.reason().toHtmlEscaped();
return text;
}
// Part 2: profile changes of joined members
if (e.isRename()
&& settings.get("UI/show_rename", true)) {
const auto& newDisplayName =
e.newDisplayName().value_or(QString());
if (newDisplayName.isEmpty())
text = tr("cleared the display name");
else
text = tr("changed the display name to %1")
.arg(newDisplayName.toHtmlEscaped());
}
if (e.isAvatarUpdate()
&& settings.get("UI/show_avatar_update", true)) {
if (!text.isEmpty())
//: Joiner for member profile updates;
//: mind the leading and trailing spaces!
text += tr(" and ");
text += !e.newAvatarUrl()
|| e.newAvatarUrl()->isEmpty()
? tr("cleared the avatar")
: tr("updated the avatar");
}
return text;
}
case Membership::Leave:
if (e.prevContent() &&
e.prevContent()->membership == Membership::Invite)
{
return (e.senderId() != e.userId())
? tr("withdrew %1's invitation").arg(subjectName)
: tr("rejected the invitation");
}
if (e.prevContent() &&
e.prevContent()->membership == Membership::Ban)
{
return (e.senderId() != e.userId())
? tr("unbanned %1").arg(subjectName)
: tr("self-unbanned");
}
return (e.senderId() != e.userId())
? e.reason().isEmpty()
? tr("kicked %1 from the room")
.arg(subjectName)
: tr("kicked %1 from the room: %2")
.arg(subjectName,
e.reason().toHtmlEscaped())
: tr("left the room");
case Membership::Ban:
return (e.senderId() != e.userId())
? e.reason().isEmpty()
? tr("banned %1 from the room")
.arg(subjectName)
: tr("banned %1 from the room: %2")
.arg(subjectName,
e.reason().toHtmlEscaped())
: tr("self-banned from the room");
case Membership::Knock:
return tr("knocked");
default:
;
}
return tr("made something unknown");
// clang-format off
}
, [] (const RoomCanonicalAliasEvent& e) {
return (e.alias().isEmpty())
? tr("cleared the room main alias")
: tr("set the room main alias to: %1").arg(e.alias());
}
, [] (const RoomNameEvent& e) {
return (e.name().isEmpty())
? tr("cleared the room name")
: tr("set the room name to: %1")
.arg(e.name().toHtmlEscaped());
}
, [this] (const RoomTopicEvent& e) {
return (e.topic().isEmpty())
? tr("cleared the topic")
: tr("set the topic to: %1")
.arg(m_currentRoom->prettyPrint(e.topic()));
}
, [] (const RoomAvatarEvent&) {
return tr("changed the room avatar");
}
, [] (const EncryptionEvent&) {
return tr("activated End-to-End Encryption");
}
, [] (const RoomCreateEvent& e) {
return (e.isUpgrade()
? tr("upgraded the room to version %1")
: tr("created the room, version %1")
).arg(e.version().isEmpty()
? "1" : e.version().toHtmlEscaped());
}
, [] (const RoomTombstoneEvent& e) {
return tr("upgraded the room: %1")
.arg(e.serverMessage().toHtmlEscaped());
}
, [] (const StateEvent& e) {
// A small hack for state events from TWIM bot
return e.stateKey() == "twim"
? tr("updated the database", "TWIM bot updated the database")
: e.stateKey().isEmpty()
? tr("updated %1 state", "%1 - Matrix event type")
.arg(e.matrixType())
: tr("updated %1 state for %2",
"%1 - Matrix event type, %2 - state key")
.arg(e.matrixType(), e.stateKey().toHtmlEscaped());
}
, tr("Unknown event")
);
// clang-format on
}
if (role == Qt::ForegroundRole) {
using CG = QPalette::ColorGroup;
using CR = QPalette::ColorRole;
if (evt.isRedacted())
return QPalette().color(CG::Disabled, CR::Text);
auto normalTextColor = QPalette().color(CG::Active, CR::Text);
if (isPending) {
using ES = Quotient::EventStatus::Code;
switch (pendingIt->deliveryStatus()) {
case ES::Submitted:
case ES::SendingFailed:
case ES::Departed:
return fadedTextColor(normalTextColor);
default:;
}
}
// Background highlighting mode is handled entirely in QML
if (m_currentRoom->isEventHighlighted(&evt)
&& settings.get<QString>(QStringLiteral("UI/highlight_mode"))
== "text")
return settings.get(QStringLiteral("UI/highlight_color"),
QStringLiteral("orange"));
if (isPending || evt.senderId() == m_currentRoom->localMember().id())
normalTextColor = mixColors(normalTextColor,
settings.get(QStringLiteral("UI/outgoing_color"),
QStringLiteral("#4A8780")), 0.5);
const auto* const rme = eventCast<const RoomMessageEvent>(&evt);
return rme && rme->msgtype() != MessageEventType::Notice
? normalTextColor
: fadedTextColor(normalTextColor);
}
if( role == Qt::ToolTipRole )
{
return QJsonDocument(evt.fullJson()).toJson();
}
if( role == EventTypeRole )
{
if (auto e = eventCast<const RoomMessageEvent>(&evt))
{
switch (e->msgtype())
{
case MessageEventType::Emote:
return "emote";
case MessageEventType::Notice:
return "notice";
case MessageEventType::Image:
return "image";
default:
return e->has<EventContent::FileContentBase>() ? "file" : "message";
}
}
if (evt.isStateEvent())
return "state";
return "other";
}
if (role == EventClassNameRole)
return evt.metaType().className;
if( role == AuthorRole )
{
// TODO: It should be RoomMember state "as of event", not "as of now"
return QVariant::fromValue(isPending ? m_currentRoom->localMember()
: m_currentRoom->member(evt.senderId()));
}
if (role == AuthorHasAvatarRole) {
return m_currentRoom->member(evt.senderId()).avatarUrl().isValid();
}
if (role == ContentTypeRole)
{
if (auto e = eventCast<const RoomMessageEvent>(&evt))
{
const auto& contentType = e->mimeType().name();
return contentType == "text/plain"
? QStringLiteral("text/html") : contentType;
}
return QStringLiteral("text/plain");
}
if (role == ContentRole)
{
if (evt.isRedacted())
{
const auto reason = evt.redactedBecause()->reason();
return (reason.isEmpty())
? tr("Redacted")
: tr("Redacted: %1").arg(reason.toHtmlEscaped());
}
if (auto e = eventCast<const RoomMessageEvent>(&evt))
{
// Cannot use e.contentJson() here because some
// EventContent classes inject values into the copy of the
// content JSON stored in EventContent::Base
return e->has<EventContent::FileContentBase>()
? QVariant::fromValue(e->content()->originalJson)
: QVariant();
}
}
if( role == HighlightRole )
return m_currentRoom->isEventHighlighted(&evt);
if( role == SpecialMarksRole )
{
if (is<RedactionEvent>(evt) || is<ReactionEvent>(evt))
return EventStatus::Hidden; // Never show, even pending
if (isPending)
return !settings.get<bool>("UI/suppress_local_echo")
? pendingIt->deliveryStatus() : EventStatus::Hidden;
// isReplacement?
if (auto e = eventCast<const RoomMessageEvent>(&evt)) {
if (!e->replacedEvent().isEmpty())
return EventStatus::Hidden;
if (e->isReplaced()) {
return EventStatus::Replaced;
}
}
if (is<RoomCanonicalAliasEvent>(evt)
&& !settings.get<bool>("UI/show_alias_update", true))
return EventStatus::Hidden;
auto* memberEvent = timelineIt->viewAs<RoomMemberEvent>();
if (memberEvent) {
if ((memberEvent->isJoin() || memberEvent->isLeave())
&& !settings.get<bool>("UI/show_joinleave", true))
return EventStatus::Hidden;
if ((memberEvent->isInvite() || memberEvent->isRejectedInvite())
&& !settings.get<bool>("UI/show_invite", true))
return EventStatus::Hidden;
if ((memberEvent->isBan() || memberEvent->isUnban())
&& !settings.get<bool>("UI/show_ban", true))
return EventStatus::Hidden;
bool hideRename =
memberEvent->isRename()
&& (!memberEvent->isJoin() && !memberEvent->isLeave())
&& !settings.get<bool>("UI/show_rename", true);
bool hideAvatarUpdate =
memberEvent->isAvatarUpdate()
&& !settings.get<bool>("UI/show_avatar_update", true);
if ((hideRename && hideAvatarUpdate)
|| (hideRename && !memberEvent->isAvatarUpdate())
|| (hideAvatarUpdate && !memberEvent->isRename())) {
return EventStatus::Hidden;
}
}
if (memberEvent || evt.isRedacted()) {
if (evt.senderId() != m_currentRoom->localMember().id()
&& evt.stateKey() != m_currentRoom->localMember().id()
&& !settings.get<bool>("UI/show_spammy")) {
// QElapsedTimer et; et.start();
auto hide = !isUserActivityNotable(timelineIt);
// qCDebug(EVENTMODEL)
// << "Checked user activity for" << evt.id() << "in" << et;
if (hide)
return EventStatus::Hidden;
}
}
if (evt.isRedacted())
return settings.get<bool>("UI/show_redacted")
? EventStatus::Redacted : EventStatus::Hidden;
if (auto* stateEvt = eventCast<const StateEvent>(&evt);
stateEvt && stateEvt->repeatsState()
&& !settings.get<bool>("UI/show_noop_events"))
return EventStatus::Hidden;
if (!evt.isStateEvent() && !is<RoomMessageEvent>(evt)
&& !settings.get<bool>("UI/show_unknown_events"))
return EventStatus::Hidden;
return EventStatus::Normal;
}
if( role == EventIdRole )
return !evt.id().isEmpty() ? evt.id() : evt.transactionId();
if( role == LongOperationRole )
{
if (auto e = eventCast<const RoomMessageEvent>(&evt))
if (e->has<EventContent::FileContentBase>())
return QVariant::fromValue(
m_currentRoom->fileTransferInfo(
isPending ? e->transactionId() : e->id()));
}
if( role == AnnotationRole )
return isPending ? pendingIt->annotation() : QString();
if( role == ReactionsRole ) {
// Filter reactions out of all annotations and collate them by key
struct Reaction {
QString key;
QStringList authorsList {};
bool includesLocalUser = false;
};
std::vector<Reaction> reactions; // using vector to maintain the order
// XXX: Should the list be ordered by the number of reactions instead?
const auto& annotations =
m_currentRoom->relatedEvents(evt, EventRelation::AnnotationType);
for (const auto& a: annotations)
if (const auto *const e = eventCast<const ReactionEvent>(a)) {
auto rIt = std::find_if(reactions.begin(), reactions.end(),
[&e] (const Reaction& r) {
return r.key == e->key();
});
if (rIt == reactions.end())
rIt = reactions.insert(reactions.end(), { e->key() });
rIt->authorsList << m_currentRoom->member(e->senderId()).displayName();
rIt->includesLocalUser |=
e->senderId() == m_currentRoom->localMember().id();
}
// Prepare the QML model data
// NB: Strings are NOT HTML-escaped; QML code must take care to use
// Text.PlainText format when displaying them
QJsonArray qmlReactions;
for (auto&& r: reactions) {
const auto authorsCount = r.authorsList.size();
if (r.authorsList.size() > 7) {
//: When the reaction comes from too many members
r.authorsList.replace(3, tr("%Ln more member(s)", "",
r.authorsList.size() - 3));
r.authorsList.erase(r.authorsList.begin() + 4,
r.authorsList.end());
}
qmlReactions << QJsonObject {
{ QStringLiteral("key"), r.key },
{ QStringLiteral("authorsCount"), authorsCount },
{ QStringLiteral("authors"),
QLocale().createSeparatedList(r.authorsList) },
{ QStringLiteral("includesLocalUser"), r.includesLocalUser }
};
}
return qmlReactions;
}
if( role == DateTimeRole || role == DateRole)
{
auto ts = (isPending ? pendingIt->lastUpdated()
: makeMessageTimestamp(timelineIt)).toLocalTime();
return role == DateTimeRole ? QVariant(ts) : renderDate(ts);
}
if (role == EventGroupingRole) {
for (auto r = row + 1; r < rowCount(); ++r)
{
auto i = index(r);
if (data(i, SpecialMarksRole) != EventStatus::Hidden)
return data(i, DateRole) != data(idx, DateRole)
? EventGrouping::ShowDateAndAuthor
: data(i, AuthorRole) != data(idx, AuthorRole)
? EventGrouping::ShowAuthor
: EventGrouping::KeepPreviousGroup;
}
return EventGrouping::ShowDateAndAuthor; // No events before
}
if (role == RefRole)
return switchOnType(
evt, [](const RoomCreateEvent& e) { return e.predecessor().roomId; },
[](const RoomTombstoneEvent& e) { return e.successorRoomId(); });
return {};
}