From 965f0e94f3f8c98ccb704b1d5abdeac1efc699cc Mon Sep 17 00:00:00 2001 From: Smitty Date: Sun, 7 Nov 2021 17:08:53 -0500 Subject: Add method to get all state events in a room It is useful to be able to get all of the state events that have occured in a room, instead of needing to use Room::getCurrentState, which filters based on the event type and state key. --- lib/room.cpp | 10 ++++++++++ lib/room.h | 6 ++++++ 2 files changed, 16 insertions(+) (limited to 'lib') diff --git a/lib/room.cpp b/lib/room.cpp index e1d41fc3..3b00d2d9 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -224,6 +224,11 @@ public: return evt; } + const QHash stateEvents() const + { + return currentState; + } + template const EventT* getCurrentState(const QString& stateKey = {}) const { @@ -1293,6 +1298,11 @@ const StateEventBase* Room::getCurrentState(const QString& evtType, return d->getCurrentState({ evtType, stateKey }); } +const QHash Room::stateEvents() const +{ + return d->stateEvents(); +} + RoomEventPtr Room::decryptMessage(const EncryptedEvent& encryptedEvent) { #ifndef Quotient_E2EE_ENABLED diff --git a/lib/room.h b/lib/room.h index 55dde2ee..452ea306 100644 --- a/lib/room.h +++ b/lib/room.h @@ -508,6 +508,12 @@ public: Q_INVOKABLE const Quotient::StateEventBase* getCurrentState(const QString& evtType, const QString& stateKey = {}) const; + /// Get all state events in the room. + /*! This method returns all known state events that have occured in + * the room, as a mapping from the event type and state key to value. + */ + Q_INVOKABLE const QHash stateEvents() const; + /// Get a state event with the given event type and state key /*! This is a typesafe overload that accepts a C++ event type instead of * its Matrix name. -- cgit v1.2.3 From 9701f24ac0214e4d8bd7fe1d6d4fa542d75d3d18 Mon Sep 17 00:00:00 2001 From: Smitty Date: Fri, 26 Nov 2021 20:25:58 -0500 Subject: Add Room::{stateEventsOfType,currentState} This is useful for implementing Spaces support, where all events of type `m.space.child` are needed, and we don't know their state keys in advance. --- lib/room.cpp | 20 ++++++++++++++++---- lib/room.h | 9 ++++++++- 2 files changed, 24 insertions(+), 5 deletions(-) (limited to 'lib') diff --git a/lib/room.cpp b/lib/room.cpp index 3b00d2d9..7e0806a7 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -224,9 +224,15 @@ public: return evt; } - const QHash stateEvents() const + QVector stateEventsOfType(const QString& evtType) const { - return currentState; + QVector vals = QVector(); + for (const auto* val : currentState) { + if (val->matrixType() == evtType) { + vals.append(val); + } + } + return vals; } template @@ -1298,9 +1304,15 @@ const StateEventBase* Room::getCurrentState(const QString& evtType, return d->getCurrentState({ evtType, stateKey }); } -const QHash Room::stateEvents() const +const QVector +Room::stateEventsOfType(const QString& evtType) const +{ + return d->stateEventsOfType(evtType); +} + +const QHash& Room::currentState() const { - return d->stateEvents(); + return d->currentState; } RoomEventPtr Room::decryptMessage(const EncryptedEvent& encryptedEvent) diff --git a/lib/room.h b/lib/room.h index 452ea306..51538b8f 100644 --- a/lib/room.h +++ b/lib/room.h @@ -512,7 +512,14 @@ public: /*! This method returns all known state events that have occured in * the room, as a mapping from the event type and state key to value. */ - Q_INVOKABLE const QHash stateEvents() const; + const QHash& currentState() const; + + /// Get all state events in the room of a certain type. + /*! This method returns all known state events that have occured in + * the room of the given type. + */ + Q_INVOKABLE const QVector + stateEventsOfType(const QString& evtType) const; /// Get a state event with the given event type and state key /*! This is a typesafe overload that accepts a C++ event type instead of -- cgit v1.2.3