mirror of
https://github.com/matrix-construct/construct
synced 2024-11-04 12:58:53 +01:00
220 lines
4.2 KiB
C++
220 lines
4.2 KiB
C++
// 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"
|
|
};
|
|
|
|
static m::resource::response
|
|
get__state(client &client,
|
|
const m::resource::request &request);
|
|
|
|
m::resource
|
|
state_resource
|
|
{
|
|
"/_matrix/federation/v1/state/",
|
|
{
|
|
"federation state",
|
|
resource::DIRECTORY,
|
|
}
|
|
};
|
|
|
|
m::resource::method
|
|
state_method_get
|
|
{
|
|
state_resource, "GET", get__state,
|
|
{
|
|
state_method_get.VERIFY_ORIGIN
|
|
}
|
|
};
|
|
|
|
m::resource
|
|
state_ids_resource
|
|
{
|
|
"/_matrix/federation/v1/state_ids/",
|
|
{
|
|
"federation state_ids",
|
|
resource::DIRECTORY,
|
|
}
|
|
};
|
|
|
|
m::resource::method
|
|
state_ids_method_get
|
|
{
|
|
state_ids_resource, "GET", get__state,
|
|
{
|
|
state_ids_method_get.VERIFY_ORIGIN
|
|
}
|
|
};
|
|
|
|
conf::item<size_t>
|
|
state_flush_hiwat
|
|
{
|
|
{ "name", "ircd.federation.state.flush.hiwat" },
|
|
{ "default", 16384L },
|
|
};
|
|
|
|
m::resource::response
|
|
get__state(client &client,
|
|
const m::resource::request &request)
|
|
{
|
|
if(request.parv.size() < 1)
|
|
throw m::NEED_MORE_PARAMS
|
|
{
|
|
"room_id path parameter required"
|
|
};
|
|
|
|
m::room::id::buf room_id
|
|
{
|
|
url::decode(room_id, request.parv[0])
|
|
};
|
|
|
|
if(m::room::server_acl::enable_read && !m::room::server_acl::check(room_id, request.node_id))
|
|
throw m::ACCESS_DENIED
|
|
{
|
|
"You are not permitted by the room's server access control list."
|
|
};
|
|
|
|
m::event::id::buf event_id;
|
|
if(request.query["event_id"])
|
|
event_id = url::decode(event_id, request.query.at("event_id"));
|
|
|
|
const m::room room
|
|
{
|
|
room_id, event_id
|
|
};
|
|
|
|
if(!visible(room, request.node_id))
|
|
throw m::ACCESS_DENIED
|
|
{
|
|
"You are not permitted to view the room at this event"
|
|
};
|
|
|
|
// To integrate both /state/ and /state_ids/ endpoints; indicates which
|
|
const bool ids_only
|
|
{
|
|
has(request.head.path, "state_ids")
|
|
};
|
|
|
|
const m::room::state state
|
|
{
|
|
room
|
|
};
|
|
|
|
const m::room::auth::chain ac
|
|
{
|
|
event_id?
|
|
m::index(event_id):
|
|
m::head_idx(room)
|
|
};
|
|
|
|
m::resource::response::chunked response
|
|
{
|
|
client, http::OK
|
|
};
|
|
|
|
json::stack out
|
|
{
|
|
response.buf, response.flusher(), size_t(state_flush_hiwat)
|
|
};
|
|
|
|
json::stack::object top
|
|
{
|
|
out
|
|
};
|
|
|
|
// MSC2314 added room_version
|
|
char version_buf[32];
|
|
json::stack::member
|
|
{
|
|
top, "room_version", m::version(version_buf, room)
|
|
};
|
|
|
|
// pdus sent in response by default when /state/ is the path or
|
|
// toggled by ?pdus=true from either
|
|
if(request.query.get<bool>("pdus", !ids_only))
|
|
{
|
|
json::stack::array pdus
|
|
{
|
|
top, "pdus"
|
|
};
|
|
|
|
state.for_each([&pdus]
|
|
(const m::event &event)
|
|
{
|
|
pdus.append(event);
|
|
});
|
|
}
|
|
|
|
// auth_chain sent in response by default when /state/ is the path or
|
|
// toggled by ?auth_chain=true from either
|
|
if(request.query.get<bool>("auth_chain", !ids_only))
|
|
{
|
|
json::stack::array auth_chain
|
|
{
|
|
top, "auth_chain"
|
|
};
|
|
|
|
m::event::fetch event;
|
|
ac.for_each([&auth_chain, &event]
|
|
(const m::event::idx &event_idx)
|
|
{
|
|
if(seek(std::nothrow, event, event_idx))
|
|
auth_chain.append(event);
|
|
|
|
return true;
|
|
});
|
|
}
|
|
|
|
// auth_chain_ids sent in response by default when /state_ids/ is given or
|
|
// toggled by ?auth_chain_ids=true from either endpoint
|
|
if(request.query.get<bool>("auth_chain_ids", ids_only))
|
|
{
|
|
json::stack::array auth_chain_ids
|
|
{
|
|
top, "auth_chain_ids"
|
|
};
|
|
|
|
ac.for_each([&auth_chain_ids]
|
|
(const m::event::idx &event_idx)
|
|
{
|
|
m::event_id(std::nothrow, event_idx, [&auth_chain_ids]
|
|
(const auto &event_id)
|
|
{
|
|
auth_chain_ids.append(event_id);
|
|
});
|
|
|
|
return true;
|
|
});
|
|
}
|
|
|
|
// pdu_ids sent in response by default when /state_ids/ is given or toggled
|
|
// by ?pdu_ids=true from either endpoint
|
|
if(request.query.get<bool>("pdu_ids", ids_only))
|
|
{
|
|
json::stack::array pdu_ids
|
|
{
|
|
top, "pdu_ids"
|
|
};
|
|
|
|
state.for_each(m::event::id::closure{[&pdu_ids]
|
|
(const m::event::id &event_id)
|
|
{
|
|
pdu_ids.append(event_id);
|
|
return true;
|
|
}});
|
|
}
|
|
|
|
return std::move(response);
|
|
}
|