0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-09 21:48:55 +02:00

ircd:Ⓜ️:room: Add json::tuple for m.room.message schema; property names.

This commit is contained in:
Jason Volk 2020-09-10 12:15:22 -07:00
parent 407202f85f
commit 12bed2d87b
4 changed files with 50 additions and 0 deletions

View file

@ -204,4 +204,9 @@ struct ircd::m::name
static constexpr const char *const profile_tag {"profile_tag"};
static constexpr const char *const lang {"lang"};
static constexpr const char *const append {"append"};
static constexpr const char *const body {"body"};
static constexpr const char *const msgtype {"msgtype"};
static constexpr const char *const format {"format"};
static constexpr const char *const formatted_body {"formatted_body"};
};

View file

@ -0,0 +1,38 @@
// The Construct
//
// Copyright (C) The Construct Developers, Authors & Contributors
// Copyright (C) 2016-2020 Jason Volk <jason@zemos.net>
//
// Permission to use, copy, modify, and/or distribute this software for any
// purpose with or without fee is hereby granted, provided that the above
// copyright notice and this permission notice is present in all copies. The
// full license for this software is available in the LICENSE file.
#pragma once
#define HAVE_IRCD_M_ROOM_MESSAGE_H
/// This is a json::tuple describing the common m.room.message content schema
/// intended for fast and convenient observation of message content. Note that
/// more properties will likely exist and they can be accessed using the
/// json::tuple.source member which points to the json::object this tuple
/// was constructed with.
///
struct ircd::m::room::message
:json::tuple
<
/// Required. The body of the message.
json::property<name::body, json::string>,
/// Required. enum.
json::property<name::msgtype, json::string>,
/// The format used in the formatted_body.
json::property<name::format, json::string>,
/// The formatted version of the body. This is required if format
/// is specified.
json::property<name::formatted_body, json::string>
>
{
using super_type::tuple;
};

View file

@ -121,6 +121,7 @@ struct ircd::m::room
struct aliases;
struct stats;
struct server_acl;
struct message;
struct bootstrap;
using id = m::id::room;
@ -198,6 +199,7 @@ struct ircd::m::room
#include "aliases.h"
#include "stats.h"
#include "server_acl.h"
#include "message.h"
#include "bootstrap.h"
inline

View file

@ -183,3 +183,8 @@ constexpr const char *const ircd::m::name::app_display_name;
constexpr const char *const ircd::m::name::profile_tag;
constexpr const char *const ircd::m::name::lang;
constexpr const char *const ircd::m::name::append;
constexpr const char *const ircd::m::name::body;
constexpr const char *const ircd::m::name::msgtype;
constexpr const char *const ircd::m::name::format;
constexpr const char *const ircd::m::name::formatted_body;