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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
/******************************************************************************
* Copyright (C) 2020 QMatrixClient project
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
#pragma once
#include "stateevent.h"
namespace Quotient {
namespace EventContent{
class AliasesEventContent {
public:
template<typename T1, typename T2>
AliasesEventContent(T1&& canonicalAlias, T2&& altAliases)
: canonicalAlias(std::forward<T1>(canonicalAlias))
, altAliases(std::forward<T2>(altAliases))
{ }
AliasesEventContent(const QJsonObject& json)
: canonicalAlias(fromJson<QString>(json["alias"]))
, altAliases(fromJson<QStringList>(json["alt_aliases"]))
{ }
auto toJson() const
{
QJsonObject jo;
addParam<IfNotEmpty>(jo, QStringLiteral("alias"), canonicalAlias);
addParam<IfNotEmpty>(jo, QStringLiteral("alt_aliases"), altAliases);
return jo;
}
QString canonicalAlias;
QStringList altAliases;
};
} // namespace EventContent
class RoomCanonicalAliasEvent
: public StateEvent<EventContent::AliasesEventContent> {
public:
DEFINE_EVENT_TYPEID("m.room.canonical_alias", RoomCanonicalAliasEvent)
explicit RoomCanonicalAliasEvent(const QJsonObject& obj)
: StateEvent(typeId(), obj)
{ }
explicit RoomCanonicalAliasEvent(const QString& canonicalAlias,
const QStringList& altAliases = {})
: StateEvent(typeId(), matrixTypeId(), {},
canonicalAlias, altAliases)
{ }
explicit RoomCanonicalAliasEvent(QString&& canonicalAlias,
QStringList&& altAliases = {})
: StateEvent(typeId(), matrixTypeId(), {},
std::move(canonicalAlias), std::move(altAliases))
{ }
QString alias() const { return content().canonicalAlias; }
QStringList altAliases() const { return content().altAliases; }
};
REGISTER_EVENT_TYPE(RoomCanonicalAliasEvent)
} // namespace Quotient
|