/****************************************************************************** * 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 AliasesEventContent(T1&& canonicalAlias, T2&& altAliases) : canonicalAlias(std::forward(canonicalAlias)) , altAliases(std::forward(altAliases)) { } AliasesEventContent(const QJsonObject& json) : canonicalAlias(fromJson(json["alias"])) , altAliases(fromJson(json["alt_aliases"])) { } auto toJson() const { QJsonObject jo; addParam(jo, QStringLiteral("alias"), canonicalAlias); addParam(jo, QStringLiteral("alt_aliases"), altAliases); return jo; } QString canonicalAlias; QStringList altAliases; }; } // namespace EventContent class RoomCanonicalAliasEvent : public StateEvent { 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