Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
join_rules.hpp 2.25 KiB
#pragma once

/// @file
/// @brief Manage the permission of how people can join a room.

#if __has_include(<nlohmann/json_fwd.hpp>)
#include <nlohmann/json_fwd.hpp>
#else
#include <nlohmann/json.hpp>
#endif

#include <string>

namespace mtx {
namespace events {
namespace state {
//! The different JoinRules
enum class JoinRule
{
    //! Anyone can join the room without any prior action.
    Public,
    //! A user who wishes to join the room must first receive
    //! an invite to the room from someone already inside of the room.
    Invite,
    //! the same as invite, except anyone can knock. See MSC2403.
    Knock,
    //! Reserved but not yet implemented by the Matrix specification.
    Private,
    //! the same as invite, except users may also join if they are a member of a room listed in
    //! the allow rules.
    Restricted,
    //! a user can request an invite using the same functions offered by the knock join rule, or can
    //! attempt to join having satisfied an allow condition per the restricted join rule.
    KnockRestricted,
};

std::string
joinRuleToString(const JoinRule &rule);

JoinRule
stringToJoinRule(const std::string &rule);

enum class JoinAllowanceType
{
    RoomMembership,
    Unknown,
};

//! An additional rule specifying what users are allowed to join.
struct JoinAllowance
{
    //! "m.room_membership" to describe that we are allowing access via room membership. Future
    //! MSCs may define other types.
    JoinAllowanceType type;
    //! The room ID to check the membership of.
    std::string room_id;

    friend void from_json(const nlohmann::json &obj, JoinAllowance &join_rules);
    friend void to_json(nlohmann::json &obj, const JoinAllowance &join_rules);
};

//! Content of the `m.room.join_rules` state event.
struct JoinRules
{
    //! The type of rules used for users wishing to join this room.
    JoinRule join_rule;

    //! A list of rooms to join via. Might be extended to other join types in the future.
    //! Only relevant in combination with restricted joinrules atm.
    std::vector<JoinAllowance> allow;

    friend void from_json(const nlohmann::json &obj, JoinRules &join_rules);
    friend void to_json(nlohmann::json &obj, const JoinRules &join_rules);
};

} // namespace state
} // namespace events
} // namespace mtx