2019-02-16 23:24:56 +01:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2019 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_QUERY_AUTH_H
|
2019-02-16 23:24:56 +01:00
|
|
|
|
2020-03-06 04:35:20 +01:00
|
|
|
namespace ircd::m::fed
|
2019-02-16 23:24:56 +01:00
|
|
|
{
|
|
|
|
struct query_auth;
|
|
|
|
};
|
|
|
|
|
2020-03-06 04:35:20 +01:00
|
|
|
struct ircd::m::fed::query_auth
|
2020-03-08 02:15:58 +01:00
|
|
|
:request
|
2019-02-16 23:24:56 +01:00
|
|
|
{
|
|
|
|
explicit operator json::object() const
|
|
|
|
{
|
2020-03-08 02:15:58 +01:00
|
|
|
const auto type
|
|
|
|
{
|
|
|
|
json::type(in.content)
|
|
|
|
};
|
|
|
|
|
2019-02-16 23:24:56 +01:00
|
|
|
return type == json::ARRAY?
|
|
|
|
json::array{in.content}.at(1): // non-spec [200, {...}]
|
|
|
|
json::object{in.content}; // spec {...}
|
|
|
|
}
|
|
|
|
|
|
|
|
query_auth(const m::room::id &,
|
|
|
|
const m::event::id &,
|
|
|
|
const json::object &content,
|
|
|
|
const mutable_buffer &,
|
|
|
|
opts);
|
|
|
|
|
|
|
|
query_auth() = default;
|
|
|
|
};
|