blob: bb6de648d6728c0d672b6ea03aceb1edb3265b63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
// SPDX-FileCopyrightText: 2019 Kitsune Ral <Kitsune-Ral@users.sf.net>
// SPDX-License-Identifier: LGPL-2.1-or-later
#include "roomcreateevent.h"
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 contentPart<bool>("m.federate"_ls);
}
QString RoomCreateEvent::version() const
{
return contentPart<QString>("room_version"_ls);
}
RoomCreateEvent::Predecessor RoomCreateEvent::predecessor() const
{
const auto predJson = contentPart<QJsonObject>("predecessor"_ls);
return { fromJson<QString>(predJson[RoomIdKeyL]),
fromJson<QString>(predJson[EventIdKeyL]) };
}
bool RoomCreateEvent::isUpgrade() const
{
return contentJson().contains("predecessor"_ls);
}
RoomType RoomCreateEvent::roomType() const
{
return contentPart<RoomType>("type"_ls);
}
|