2019-03-11 23:43:07 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
2019-07-16 21:39:16 +02:00
|
|
|
// Copyright (C) 2016-2019 Jason Volk <jason@zemos.net>
|
2019-03-11 23:43:07 +01:00
|
|
|
//
|
|
|
|
// 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
|
2019-07-16 21:39:16 +02:00
|
|
|
#define HAVE_IRCD_M_APPEND
|
2019-03-11 23:43:07 +01:00
|
|
|
|
|
|
|
namespace ircd::m
|
|
|
|
{
|
|
|
|
struct event_append_opts
|
|
|
|
{
|
|
|
|
const event::idx *event_idx {nullptr};
|
|
|
|
const string_view *client_txnid {nullptr};
|
|
|
|
const id::user *user_id {nullptr};
|
|
|
|
const room *user_room {nullptr};
|
2019-04-15 21:16:48 +02:00
|
|
|
const int64_t *room_depth {nullptr};
|
2019-03-14 00:58:02 +01:00
|
|
|
long age {std::numeric_limits<long>::min()};
|
2019-03-14 01:03:01 +01:00
|
|
|
bool query_txnid {true};
|
2019-03-11 23:43:07 +01:00
|
|
|
};
|
|
|
|
|
2019-07-16 22:29:15 +02:00
|
|
|
bool append(json::stack::object &, const event &, const event_append_opts & = {});
|
|
|
|
bool append(json::stack::array &, const event &, const event_append_opts & = {});
|
2019-03-11 23:43:07 +01:00
|
|
|
}
|