nheko/include/events/JoinRulesEventContent.h

68 lines
1.7 KiB
C
Raw Normal View History

2017-05-02 03:22:33 +02:00
/*
* nheko Copyright (C) 2017 Konstantinos Sideris <siderisk@auth.gr>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#pragma once
2017-05-02 03:22:33 +02:00
#include <QJsonValue>
#include "Deserializable.h"
2017-05-03 14:23:06 +02:00
namespace matrix
{
namespace events
{
2017-05-07 23:51:03 +02:00
enum class JoinRule {
2017-09-10 11:59:21 +02:00
// A user who wishes to join the room must first receive
// an invite to the room from someone already inside of the room.
Invite,
2017-05-02 03:22:33 +02:00
2017-09-10 11:59:21 +02:00
// Reserved but not yet implemented by the Matrix specification.
Knock,
2017-05-02 03:22:33 +02:00
2017-09-10 11:59:21 +02:00
// Reserved but not yet implemented by the Matrix specification.
Private,
2017-05-02 03:22:33 +02:00
2017-09-10 11:59:21 +02:00
/// Anyone can join the room without any prior action.
Public,
2017-05-02 03:22:33 +02:00
};
/*
* Describes how users are allowed to join the room.
*/
2017-08-20 12:47:22 +02:00
class JoinRulesEventContent
: public Deserializable
, public Serializable
2017-05-02 03:22:33 +02:00
{
public:
2017-09-10 11:59:21 +02:00
void deserialize(const QJsonValue &data) override;
QJsonObject serialize() const override;
2017-05-02 03:22:33 +02:00
2017-09-10 11:59:21 +02:00
inline JoinRule joinRule() const;
2017-05-02 03:22:33 +02:00
private:
2017-09-10 11:59:21 +02:00
JoinRule join_rule_;
2017-05-02 03:22:33 +02:00
};
2017-08-20 12:47:22 +02:00
inline JoinRule
JoinRulesEventContent::joinRule() const
2017-05-02 03:22:33 +02:00
{
2017-09-10 11:59:21 +02:00
return join_rule_;
2017-05-02 03:22:33 +02:00
}
2017-08-20 12:47:22 +02:00
} // namespace events
} // namespace matrix