2018-04-04 02:08:29 +02: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.
|
|
|
|
|
|
|
|
using namespace ircd;
|
|
|
|
|
|
|
|
mapi::header
|
|
|
|
IRCD_MODULE
|
|
|
|
{
|
|
|
|
"federation state"
|
|
|
|
};
|
|
|
|
|
|
|
|
resource
|
|
|
|
state_resource
|
|
|
|
{
|
|
|
|
"/_matrix/federation/v1/state/",
|
|
|
|
{
|
|
|
|
"federation state",
|
|
|
|
resource::DIRECTORY,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-05-08 09:15:18 +02:00
|
|
|
conf::item<size_t>
|
|
|
|
state_flush_hiwat
|
|
|
|
{
|
|
|
|
{ "name", "ircd.federation.state.flush.hiwat" },
|
|
|
|
{ "default", 16384L },
|
|
|
|
};
|
|
|
|
|
2018-04-04 02:08:29 +02:00
|
|
|
resource::response
|
|
|
|
get__state(client &client,
|
|
|
|
const resource::request &request)
|
|
|
|
{
|
|
|
|
m::room::id::buf room_id
|
|
|
|
{
|
|
|
|
url::decode(request.parv[0], room_id)
|
|
|
|
};
|
|
|
|
|
|
|
|
m::event::id::buf event_id;
|
|
|
|
if(request.query["event_id"])
|
2018-04-30 19:45:41 +02:00
|
|
|
event_id = url::decode(request.query.at("event_id"), event_id);
|
2018-04-04 02:08:29 +02:00
|
|
|
|
2018-04-30 19:20:02 +02:00
|
|
|
const m::room room
|
2018-04-04 02:08:29 +02:00
|
|
|
{
|
2018-04-30 19:20:02 +02:00
|
|
|
room_id, event_id
|
|
|
|
};
|
2018-04-04 02:08:29 +02:00
|
|
|
|
2018-04-30 19:20:02 +02:00
|
|
|
const m::room::state state
|
|
|
|
{
|
|
|
|
room
|
|
|
|
};
|
2018-04-04 02:08:29 +02:00
|
|
|
|
2018-04-30 19:20:02 +02:00
|
|
|
const unique_buffer<mutable_buffer> buf
|
|
|
|
{
|
|
|
|
96_KiB
|
|
|
|
};
|
2018-04-04 02:08:29 +02:00
|
|
|
|
2018-04-30 19:20:02 +02:00
|
|
|
resource::response::chunked response
|
|
|
|
{
|
|
|
|
client, http::OK
|
|
|
|
};
|
2018-04-04 02:08:29 +02:00
|
|
|
|
2018-05-08 09:15:18 +02:00
|
|
|
const auto flush{[&response]
|
2018-04-30 19:20:02 +02:00
|
|
|
(const const_buffer &buf)
|
2018-04-04 02:08:29 +02:00
|
|
|
{
|
2018-04-30 19:20:02 +02:00
|
|
|
response.write(buf);
|
|
|
|
return buf;
|
|
|
|
}};
|
|
|
|
|
2018-05-08 09:15:18 +02:00
|
|
|
json::stack out
|
|
|
|
{
|
|
|
|
buf, flush, size_t(state_flush_hiwat)
|
|
|
|
};
|
|
|
|
|
2018-04-30 19:20:02 +02:00
|
|
|
json::stack::object top{out};
|
|
|
|
json::stack::member pdus_m
|
|
|
|
{
|
|
|
|
top, "pdus"
|
|
|
|
};
|
|
|
|
|
|
|
|
json::stack::array pdus
|
|
|
|
{
|
|
|
|
pdus_m
|
2018-04-04 02:08:29 +02:00
|
|
|
};
|
2018-04-30 19:20:02 +02:00
|
|
|
|
|
|
|
state.for_each([&pdus]
|
|
|
|
(const m::event &event)
|
|
|
|
{
|
|
|
|
pdus.append(event);
|
|
|
|
});
|
|
|
|
|
|
|
|
return {};
|
2018-04-04 02:08:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
resource::method
|
|
|
|
method_get
|
|
|
|
{
|
|
|
|
state_resource, "GET", get__state,
|
|
|
|
{
|
|
|
|
method_get.VERIFY_ORIGIN
|
|
|
|
}
|
|
|
|
};
|