diff options
author | Alexey Rusakov <Kitsune-Ral@users.sf.net> | 2021-09-15 17:22:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-15 17:22:56 +0200 |
commit | 88a51b85935d4de6c4bd58b6ece5d498241465fc (patch) | |
tree | 3037646a06e50e3c4dedf8ac64a498e04e2b84d4 /lib/events | |
parent | a76ed82eb298d30c7b654c74378f93a9a35580a6 (diff) | |
parent | 59c9ca720093f2931c2eee1c0d5806d7e2e0c85f (diff) | |
download | libquotient-88a51b85935d4de6c4bd58b6ece5d498241465fc.tar.gz libquotient-88a51b85935d4de6c4bd58b6ece5d498241465fc.zip |
Merge pull request #507 from TobiasFella/roomcreationtypes
Add room types to RoomCreateEvent
Diffstat (limited to 'lib/events')
-rw-r--r-- | lib/events/roomcreateevent.cpp | 21 | ||||
-rw-r--r-- | lib/events/roomcreateevent.h | 2 |
2 files changed, 23 insertions, 0 deletions
diff --git a/lib/events/roomcreateevent.cpp b/lib/events/roomcreateevent.cpp index 6558bade..ff93041c 100644 --- a/lib/events/roomcreateevent.cpp +++ b/lib/events/roomcreateevent.cpp @@ -5,6 +5,22 @@ using namespace Quotient; +template <> +struct Quotient::JsonConverter<RoomType> { + static RoomType load(const QJsonValue& jv) + { + const auto& roomTypeString = jv.toString(); + for (auto it = RoomTypeStrings.begin(); it != RoomTypeStrings.end(); + ++it) + if (roomTypeString == *it) + return RoomType(it - RoomTypeStrings.begin()); + + if (!roomTypeString.isEmpty()) + qCWarning(EVENTS) << "Unknown Room Type: " << roomTypeString; + return RoomType::Undefined; + } +}; + bool RoomCreateEvent::isFederated() const { return fromJson<bool>(contentJson()["m.federate"_ls]); @@ -26,3 +42,8 @@ bool RoomCreateEvent::isUpgrade() const { return contentJson().contains("predecessor"_ls); } + +RoomType RoomCreateEvent::roomType() const +{ + return fromJson<RoomType>(contentJson()["type"_ls]); +} diff --git a/lib/events/roomcreateevent.h b/lib/events/roomcreateevent.h index 05e623ed..b3ad287c 100644 --- a/lib/events/roomcreateevent.h +++ b/lib/events/roomcreateevent.h @@ -4,6 +4,7 @@ #pragma once #include "stateevent.h" +#include "quotient_common.h" namespace Quotient { class RoomCreateEvent : public StateEventBase { @@ -24,6 +25,7 @@ public: QString version() const; Predecessor predecessor() const; bool isUpgrade() const; + RoomType roomType() const; }; REGISTER_EVENT_TYPE(RoomCreateEvent) } // namespace Quotient |