0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-10 14:08:56 +02:00

ircd:Ⓜ️ Add v1::send response helper; comments; minor cleanup.

This commit is contained in:
Jason Volk 2018-01-23 11:43:04 -08:00
parent 354cadb7dc
commit 56191db9bc
2 changed files with 64 additions and 3 deletions

View file

@ -16,19 +16,64 @@ namespace ircd::m::v1
struct send;
};
/// A federation/v1/send request. This sends the provided transaction and
/// receives a response via the server::request ctx::future. This object
/// must stay in scope to complete the request until the future is resolved.
///
struct ircd::m::v1::send
:server::request
{
struct opts;
struct response;
send(const string_view &txnid, const const_buffer &content, const mutable_buffer &head, opts);
operator json::object() const
{
return { in.content };
}
send(const string_view &txnid, // transaction ID (goes in URL)
const const_buffer &content, // full transaction (HTTP content out)
const mutable_buffer &head, // buffer for HTTP head in and out
opts); // options structure
};
/// Options for a federation send request.
///
struct ircd::m::v1::send::opts
{
/// The remote server to contact. Must be specified for this request.
net::hostport remote;
/// The m::request structure which helps compose this request. The fields
/// of this object are eventually used to sign the request for [Fed. 12.1]
/// Request Authentication. User does not have to fill anything in here;
/// anything not provided is derived automatically, but providing these
/// fields will override that derivation.
m::request request;
/// The lower-level server::out structure used by server:: when transmitting
/// data; providing anything here is optional and will override things.
server::out out;
/// The lower-level server::in structure used by server:: when receiving
/// data; providing anything here is optional and will override things.
server::in in;
/// The lower-level server::request::opts configuration to attach to
/// this request.
const struct server::request::opts *sopts {nullptr};
};
/// Helper for dealing with response content from a /send/.
struct ircd::m::v1::send::response
:json::object
{
/// A member of the response object is "pdus" and this helps iterate that object
/// which is used to convey errors keyed by the event_id; value is matrix error obj.
using pdus_closure = std::function<void (const id::event &, const json::object &)>;
void for_each_pdu(const pdus_closure &) const;
response(const json::object &object)
:json::object{object}
{}
};

View file

@ -15,6 +15,23 @@
// v1/send.h
//
void
ircd::m::v1::send::response::for_each_pdu(const pdus_closure &closure)
const
{
const json::object &pdus
{
this->get("pdus")
};
for(const auto &member : pdus)
{
const id::event &event_id{member.first};
const json::object &error{member.second};
closure(event_id, error);
}
}
ircd::m::v1::send::send(const string_view &txnid,
const const_buffer &content,
const mutable_buffer &buf,
@ -43,8 +60,7 @@ ircd::m::v1::send::send(const string_view &txnid,
fmt::sprintf
{
urlbuf, "/_matrix/federation/v1/send/%s/",
//url::encode(txnid, txnidbuf),
txnid
url::encode(txnid, txnidbuf),
}
};
}