aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/events/eventcontent.h2
-rw-r--r--lib/events/roommessageevent.h8
-rw-r--r--lib/room.cpp32
-rw-r--r--lib/user.cpp15
4 files changed, 36 insertions, 21 deletions
diff --git a/lib/events/eventcontent.h b/lib/events/eventcontent.h
index c26cb931..e7656de5 100644
--- a/lib/events/eventcontent.h
+++ b/lib/events/eventcontent.h
@@ -25,6 +25,7 @@
#include <QtCore/QMimeType>
#include <QtCore/QSize>
#include <QtCore/QUrl>
+#include <QtCore/QMetaType>
namespace Quotient {
namespace EventContent {
@@ -276,3 +277,4 @@ namespace EventContent {
using FileContent = UrlWithThumbnailContent<FileInfo>;
} // namespace EventContent
} // namespace Quotient
+Q_DECLARE_METATYPE(const Quotient::EventContent::TypedBase*)
diff --git a/lib/events/roommessageevent.h b/lib/events/roommessageevent.h
index b393382a..e95aabfc 100644
--- a/lib/events/roommessageevent.h
+++ b/lib/events/roommessageevent.h
@@ -34,7 +34,7 @@ class RoomMessageEvent : public RoomEvent {
Q_PROPERTY(QString msgType READ rawMsgtype CONSTANT)
Q_PROPERTY(QString plainBody READ plainBody CONSTANT)
Q_PROPERTY(QMimeType mimeType READ mimeType STORED false CONSTANT)
- Q_PROPERTY(EventContent::TypedBase* content READ content CONSTANT)
+ Q_PROPERTY(const EventContent::TypedBase* content READ content CONSTANT)
public:
DEFINE_EVENT_TYPEID("m.room.message", RoomMessageEvent)
@@ -62,13 +62,13 @@ public:
MsgType msgtype() const;
QString rawMsgtype() const;
QString plainBody() const;
- EventContent::TypedBase* content() const { return _content.data(); }
+ const EventContent::TypedBase* content() const { return _content.data(); }
template <typename VisitorT>
- void editContent(VisitorT visitor)
+ void editContent(VisitorT&& visitor)
{
visitor(*_content);
editJson()[ContentKeyL] = assembleContentJson(plainBody(), rawMsgtype(),
- content());
+ _content.data());
}
QMimeType mimeType() const;
bool hasTextContent() const;
diff --git a/lib/room.cpp b/lib/room.cpp
index b0829252..2c9fca63 100644
--- a/lib/room.cpp
+++ b/lib/room.cpp
@@ -2577,7 +2577,7 @@ Room::Private::buildShortlist(const QStringList& userIds) const
QString Room::Private::calculateDisplayname() const
{
- // CS spec, section 11.2.2.5 Calculating the display name for a room
+ // CS spec, section 13.2.2.5 Calculating the display name for a room
// Numbers below refer to respective parts in the spec.
// 1. Name (from m.room.name)
@@ -2591,12 +2591,18 @@ QString Room::Private::calculateDisplayname() const
if (!dispName.isEmpty())
return dispName;
- // Using m.room.aliases in naming is explicitly discouraged by the spec
+ // 3. m.room.aliases - only local aliases, subject for further removal
+ const auto aliases = q->localAliases();
+ if (!aliases.isEmpty())
+ return aliases.front();
- // Supplementary code for 3 and 4: build the shortlist of users whose names
+ // 4. m.heroes and m.room.member
+ // From here on, we use a more general algorithm than the spec describes
+ // in order to provide back-compatibility with pre-MSC688 servers.
+
+ // Supplementary code: build the shortlist of users whose names
// will be used to construct the room name. Takes into account MSC688's
// "heroes" if available.
-
const bool localUserIsIn = joinState == JoinState::Join;
const bool emptyRoom =
membersMap.isEmpty()
@@ -2607,15 +2613,13 @@ QString Room::Private::calculateDisplayname() const
: !emptyRoom ? buildShortlist(membersMap)
: users_shortlist_t {};
- // When lazy-loading is on, we can rely on the heroes list.
- // If it's off, the below code gathers invited and left members.
- // NB: including invitations, if any, into naming is a spec extension.
- // This kicks in when there's no lazy loading and it's a room with
- // the local user as the only member, with more users invited.
+ // When the heroes list is there, we can rely on it. If the heroes list is
+ // missing, the below code gathers invited, or, if there are no invitees,
+ // left members.
if (!shortlist.front() && localUserIsIn)
shortlist = buildShortlist(usersInvited);
- if (!shortlist.front()) // Still empty shortlist; use left members
+ if (!shortlist.front())
shortlist = buildShortlist(membersLeft);
QStringList names;
@@ -2639,7 +2643,7 @@ QString Room::Private::calculateDisplayname() const
usersCountExceptLocal - int(shortlist.size()));
const auto namesList = QLocale().createSeparatedList(names);
- // 3. Room members
+ // Room members
if (!emptyRoom)
return namesList;
@@ -2647,11 +2651,11 @@ QString Room::Private::calculateDisplayname() const
if (!usersInvited.empty())
return tr("Empty room (invited: %1)").arg(namesList);
- // 4. Users that previously left the room
- if (membersLeft.size() > 0)
+ // Users that previously left the room
+ if (!membersLeft.isEmpty())
return tr("Empty room (was: %1)").arg(namesList);
- // 5. Fail miserably
+ // Fail miserably
return tr("Empty room (%1)").arg(id);
}
diff --git a/lib/user.cpp b/lib/user.cpp
index 5dea3942..641f6a6b 100644
--- a/lib/user.cpp
+++ b/lib/user.cpp
@@ -154,10 +154,11 @@ void User::Private::setAvatarForRoom(const Room* r, const QUrl& newUrl,
}
if (newUrl != mostUsedAvatar.url()) {
// Check if the new avatar is about to become most used.
- if (avatarsToRooms.count(newUrl) >= totalRooms - avatarsToRooms.size()) {
+ const auto newUrlUsage = avatarsToRooms.count(newUrl);
+ if (newUrlUsage >= totalRooms - avatarsToRooms.size()) {
QElapsedTimer et;
if (totalRooms > MIN_JOINED_ROOMS_TO_LOG) {
- qCDebug(MAIN)
+ qCInfo(MAIN)
<< "Switching the most used avatar of user" << userId
<< "from" << mostUsedAvatar.url().toDisplayString() << "to"
<< newUrl.toDisplayString();
@@ -165,7 +166,15 @@ void User::Private::setAvatarForRoom(const Room* r, const QUrl& newUrl,
}
avatarsToRooms.remove(newUrl);
auto nextMostUsedIt = otherAvatar(newUrl);
- Q_ASSERT(nextMostUsedIt != otherAvatars.end());
+ if (nextMostUsedIt == otherAvatars.end()) {
+ qCCritical(MAIN)
+ << userId << "doesn't have" << newUrl.toDisplayString()
+ << "in otherAvatars though it seems to be used in"
+ << newUrlUsage << "rooms";
+ Q_ASSERT(false);
+ otherAvatars.emplace_back(makeAvatar(newUrl));
+ nextMostUsedIt = otherAvatars.end() - 1;
+ }
std::swap(mostUsedAvatar, *nextMostUsedIt);
const auto& roomMap = connection->roomMap();
for (const auto* r1 : roomMap)