diff options
author | Tobias Fella <fella@posteo.de> | 2021-12-08 23:07:14 +0100 |
---|---|---|
committer | Tobias Fella <fella@posteo.de> | 2021-12-08 23:07:14 +0100 |
commit | a0ce17dfe793c924205b449c026f2f776b032ff3 (patch) | |
tree | 99f5b7e45777a240e5fc87f5349cd0edd5371c91 /lib/events | |
parent | 9fb07da8451f024085061e2985e9be384e7beb5c (diff) | |
download | libquotient-a0ce17dfe793c924205b449c026f2f776b032ff3.tar.gz libquotient-a0ce17dfe793c924205b449c026f2f776b032ff3.zip |
Store encryptedevent in decrypted roomevents
Diffstat (limited to 'lib/events')
-rw-r--r-- | lib/events/roomevent.cpp | 13 | ||||
-rw-r--r-- | lib/events/roomevent.h | 4 |
2 files changed, 17 insertions, 0 deletions
diff --git a/lib/events/roomevent.cpp b/lib/events/roomevent.cpp index fb921af6..b99d1381 100644 --- a/lib/events/roomevent.cpp +++ b/lib/events/roomevent.cpp @@ -126,3 +126,16 @@ CallEventBase::CallEventBase(Event::Type type, const QJsonObject& json) if (callId().isEmpty()) qCWarning(EVENTS) << id() << "is a call event with an empty call id"; } + +void RoomEvent::setOriginalEvent(event_ptr_tt<RoomEvent> originalEvent) +{ + _originalEvent = std::move(originalEvent); +} + +const QJsonObject RoomEvent::encryptedJson() const +{ + if(!_originalEvent) { + return {}; + } + return _originalEvent->fullJson(); +} diff --git a/lib/events/roomevent.h b/lib/events/roomevent.h index 7f13f6f2..35527a62 100644 --- a/lib/events/roomevent.h +++ b/lib/events/roomevent.h @@ -60,11 +60,15 @@ public: //! callback for that in RoomEvent. void addId(const QString& newId); + void setOriginalEvent(event_ptr_tt<RoomEvent> originalEvent); + const QJsonObject encryptedJson() const; + protected: void dumpTo(QDebug dbg) const override; private: event_ptr_tt<RedactionEvent> _redactedBecause; + event_ptr_tt<RoomEvent> _originalEvent; }; using RoomEventPtr = event_ptr_tt<RoomEvent>; using RoomEvents = EventsArray<RoomEvent>; |