diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-11-27 11:23:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-27 11:23:22 +0100 |
commit | 17234b8d7ce59f757099ad7894d3a8d73b859f12 (patch) | |
tree | 5d47a587b851c6214f5b00290784554665c58c7b /lib | |
parent | 38eaa61b9fa8e0a04baa847824bb1e1280395a57 (diff) | |
parent | 9701f24ac0214e4d8bd7fe1d6d4fa542d75d3d18 (diff) | |
download | libquotient-17234b8d7ce59f757099ad7894d3a8d73b859f12.tar.gz libquotient-17234b8d7ce59f757099ad7894d3a8d73b859f12.zip |
Merge pull request #518 from Smittyvb/room-stateEvents
Diffstat (limited to 'lib')
-rw-r--r-- | lib/room.cpp | 22 | ||||
-rw-r--r-- | lib/room.h | 13 |
2 files changed, 35 insertions, 0 deletions
diff --git a/lib/room.cpp b/lib/room.cpp index 284eacd1..fac24e5e 100644 --- a/lib/room.cpp +++ b/lib/room.cpp @@ -226,6 +226,17 @@ public: return evt; } + QVector<const StateEventBase*> stateEventsOfType(const QString& evtType) const + { + QVector<const StateEventBase*> vals = QVector<const StateEventBase*>(); + for (const auto* val : currentState) { + if (val->matrixType() == evtType) { + vals.append(val); + } + } + return vals; + } + template <typename EventT> const EventT* getCurrentState(const QString& stateKey = {}) const { @@ -1455,6 +1466,17 @@ const StateEventBase* Room::getCurrentState(const QString& evtType, return d->getCurrentState({ evtType, stateKey }); } +const QVector<const StateEventBase*> +Room::stateEventsOfType(const QString& evtType) const +{ + return d->stateEventsOfType(evtType); +} + +const QHash<StateEventKey, const StateEventBase*>& Room::currentState() const +{ + return d->currentState; +} + RoomEventPtr Room::decryptMessage(const EncryptedEvent& encryptedEvent) { #ifndef Quotient_E2EE_ENABLED @@ -757,6 +757,19 @@ 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. + */ + const QHash<StateEventKey, const StateEventBase*>& 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<const StateEventBase*> + 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 * its Matrix name. |