0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-04 09:38:37 +02:00
construct/include/ircd/m/fed/query_auth.h

50 lines
1.2 KiB
C
Raw Normal View History

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
#define HAVE_IRCD_M_FED_QUERY_AUTH_H
2019-02-16 23:24:56 +01:00
namespace ircd::m::fed
2019-02-16 23:24:56 +01:00
{
struct query_auth;
};
struct ircd::m::fed::query_auth
2019-02-16 23:24:56 +01:00
:server::request
{
struct opts;
explicit operator json::object() const
{
const auto type(json::type(in.content));
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;
};
struct ircd::m::fed::query_auth::opts
2019-02-16 23:24:56 +01:00
{
net::hostport remote;
m::request request;
server::out out;
server::in in;
const struct server::request::opts *sopts {nullptr};
bool dynamic {true};
};