2018-04-08 11:27:59 -07: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-05 19:35:20 -08:00
|
|
|
#define HAVE_IRCD_M_FED_EVENT_AUTH_H
|
2018-04-08 11:27:59 -07:00
|
|
|
|
2020-03-05 19:35:20 -08:00
|
|
|
namespace ircd::m::fed
|
2018-04-08 11:27:59 -07:00
|
|
|
{
|
|
|
|
struct event_auth;
|
|
|
|
};
|
|
|
|
|
2020-03-05 19:35:20 -08:00
|
|
|
struct ircd::m::fed::event_auth
|
2020-03-07 17:15:58 -08:00
|
|
|
:request
|
2018-04-08 11:27:59 -07:00
|
|
|
{
|
|
|
|
struct opts;
|
|
|
|
|
2018-04-08 12:45:05 -07:00
|
|
|
explicit operator json::array() const
|
2018-04-08 11:27:59 -07:00
|
|
|
{
|
2020-01-05 17:30:58 -08:00
|
|
|
const json::object object
|
|
|
|
{
|
|
|
|
in.content
|
|
|
|
};
|
|
|
|
|
|
|
|
return object["auth_chain"];
|
2018-04-08 11:27:59 -07:00
|
|
|
}
|
|
|
|
|
2020-03-07 17:15:58 -08:00
|
|
|
event_auth(const m::room::id &,
|
|
|
|
const m::event::id &,
|
|
|
|
const mutable_buffer &,
|
|
|
|
opts);
|
|
|
|
|
2018-04-08 11:27:59 -07:00
|
|
|
event_auth() = default;
|
|
|
|
};
|
|
|
|
|
2020-03-05 19:35:20 -08:00
|
|
|
struct ircd::m::fed::event_auth::opts
|
2020-03-07 17:15:58 -08:00
|
|
|
:request::opts
|
2018-04-08 11:27:59 -07:00
|
|
|
{
|
2020-12-10 05:30:30 -08:00
|
|
|
/// Receive fast auth_chain_ids from construct; or auth_chain from synapse.
|
|
|
|
bool ids {false};
|
|
|
|
|
|
|
|
/// Receive slower auth_chain_ids; supported by all servers.
|
2019-04-24 17:23:28 -07:00
|
|
|
bool ids_only {false};
|
2018-04-08 11:27:59 -07:00
|
|
|
};
|