2018-01-22 12:32:15 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2018 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
|
2020-03-06 04:35:20 +01:00
|
|
|
#define HAVE_IRCD_M_FED_STATE_H
|
2018-01-22 12:32:15 +01:00
|
|
|
|
2020-03-06 04:35:20 +01:00
|
|
|
namespace ircd::m::fed
|
2018-01-22 12:32:15 +01:00
|
|
|
{
|
|
|
|
struct state;
|
|
|
|
};
|
|
|
|
|
2020-03-06 04:35:20 +01:00
|
|
|
struct ircd::m::fed::state
|
2020-03-08 02:15:58 +01:00
|
|
|
:request
|
2018-01-22 12:32:15 +01:00
|
|
|
{
|
|
|
|
struct opts;
|
|
|
|
|
|
|
|
explicit operator json::object() const
|
|
|
|
{
|
2020-03-08 02:15:58 +01:00
|
|
|
return json::object
|
|
|
|
{
|
|
|
|
in.content
|
|
|
|
};
|
2018-01-22 12:32:15 +01:00
|
|
|
}
|
|
|
|
|
2020-03-08 02:15:58 +01:00
|
|
|
state(const room::id &,
|
|
|
|
const mutable_buffer &,
|
|
|
|
opts);
|
|
|
|
|
2018-03-06 13:28:17 +01:00
|
|
|
state() = default;
|
2018-01-22 12:32:15 +01:00
|
|
|
};
|
|
|
|
|
2020-03-06 04:35:20 +01:00
|
|
|
struct ircd::m::fed::state::opts
|
2020-03-08 02:15:58 +01:00
|
|
|
:request::opts
|
2018-01-22 12:32:15 +01:00
|
|
|
{
|
|
|
|
string_view event_id;
|
2018-04-03 02:38:35 +02:00
|
|
|
bool ids_only {false};
|
2018-01-22 12:32:15 +01:00
|
|
|
};
|