mirror of
https://github.com/matrix-construct/construct
synced 2024-11-02 20:09:16 +01:00
49 lines
1.2 KiB
C++
49 lines
1.2 KiB
C++
// 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_V1_QUERY_AUTH_H
|
|
|
|
namespace ircd::m::v1
|
|
{
|
|
struct query_auth;
|
|
};
|
|
|
|
struct ircd::m::v1::query_auth
|
|
: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::v1::query_auth::opts
|
|
{
|
|
net::hostport remote;
|
|
m::request request;
|
|
server::out out;
|
|
server::in in;
|
|
const struct server::request::opts *sopts {nullptr};
|
|
bool dynamic {true};
|
|
};
|