From 0a3fab2d361b260aa280a4ac9e8a162977ec3534 Mon Sep 17 00:00:00 2001 From: Kitsune Ral Date: Tue, 12 Apr 2016 19:47:45 +0900 Subject: Introduced Room::roomMemberName(User*) that follows CS spec section 11.2.2.3 --- room.cpp | 29 +++++++++++++++++++++++++++++ room.h | 6 ++++++ 2 files changed, 35 insertions(+) diff --git a/room.cpp b/room.cpp index bc8aaf1d..9caaf97e 100644 --- a/room.cpp +++ b/room.cpp @@ -20,6 +20,7 @@ #include #include +#include // for efficient string concats (operator%) #include #include "connection.h" @@ -266,6 +267,34 @@ void Room::memberRenamed(User* user, QString oldName) d->renameMember(user, oldName); } +QString Room::roomMembername(User *u) const +{ + // See the CS spec, section 11.2.2.3 + + QString username = u->name(); + if (username.isEmpty()) + return u->id(); + + // Get the list of users with the same display name. Most likely, + // there'll be one, but there's a chance there are more. + auto namesakes = d->membersMap.values(username); + if (namesakes.size() == 1) + return username; + + // We expect a user to be a member of the room - but technically it is + // possible to invoke roomMemberName() even for non-members. In such case + // we return the name _with_ id, to stay on a safe side. + if ( !namesakes.contains(u) ) + { + qWarning() + << "Room::roomMemberName(): user" << u->id() + << "is not a member of the room" << id(); + } + + // In case of more than one namesake, disambiguate with user id. + return username % " <" % u->id() % ">"; +} + void Room::addMessage(Event* event) { processMessageEvent(event); diff --git a/room.h b/room.h index 72a1f249..261ce44d 100644 --- a/room.h +++ b/room.h @@ -53,6 +53,12 @@ namespace QMatrixClient Q_INVOKABLE QList users() const; + /** + * @brief Produces a disambiguated name for a given user in + * the context of the room. + */ + Q_INVOKABLE QString roomMembername(User* u) const; + Q_INVOKABLE void addMessage( Event* event ); Q_INVOKABLE void addInitialState( State* state ); Q_INVOKABLE void updateData( const SyncRoomData& data ); -- cgit v1.2.3