2018-02-04 03:22:01 +01: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.
|
2017-10-25 18:42:23 +02:00
|
|
|
|
|
|
|
using namespace ircd;
|
|
|
|
|
|
|
|
mapi::header IRCD_MODULE
|
|
|
|
{
|
|
|
|
"federation event"
|
|
|
|
};
|
|
|
|
|
|
|
|
struct send
|
|
|
|
:resource
|
|
|
|
{
|
|
|
|
using resource::resource;
|
|
|
|
}
|
|
|
|
event_resource
|
|
|
|
{
|
2017-12-12 21:26:39 +01:00
|
|
|
"/_matrix/federation/v1/event/",
|
2017-10-25 18:42:23 +02:00
|
|
|
{
|
2017-12-12 21:26:39 +01:00
|
|
|
"federation event",
|
2017-10-25 18:42:23 +02:00
|
|
|
resource::DIRECTORY,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
resource::response
|
|
|
|
handle_get(client &client,
|
|
|
|
const resource::request &request)
|
|
|
|
{
|
2019-02-18 19:33:35 +01:00
|
|
|
if(request.parv.size() < 1)
|
|
|
|
throw m::NEED_MORE_PARAMS
|
|
|
|
{
|
|
|
|
"event_id path parameter required."
|
|
|
|
};
|
|
|
|
|
2017-10-25 18:42:23 +02:00
|
|
|
m::event::id::buf event_id
|
|
|
|
{
|
2018-12-07 01:41:47 +01:00
|
|
|
url::decode(event_id, request.parv[0])
|
2017-10-25 18:42:23 +02:00
|
|
|
};
|
|
|
|
|
2018-05-31 14:56:02 +02:00
|
|
|
if(!visible(event_id, request.node_id))
|
|
|
|
throw m::ACCESS_DENIED
|
|
|
|
{
|
|
|
|
"You are not permitted to view this event"
|
|
|
|
};
|
|
|
|
|
2018-05-31 20:40:18 +02:00
|
|
|
const m::event::fetch event
|
2017-10-25 18:42:23 +02:00
|
|
|
{
|
2018-05-31 20:40:18 +02:00
|
|
|
event_id
|
2017-10-25 18:42:23 +02:00
|
|
|
};
|
|
|
|
|
2018-05-31 20:40:18 +02:00
|
|
|
resource::response::chunked response
|
2018-01-25 01:33:26 +01:00
|
|
|
{
|
2018-05-31 20:40:18 +02:00
|
|
|
client, http::OK
|
2018-01-25 01:33:26 +01:00
|
|
|
};
|
|
|
|
|
2018-05-31 20:40:18 +02:00
|
|
|
json::stack out
|
2017-10-25 18:42:23 +02:00
|
|
|
{
|
2018-09-05 07:48:23 +02:00
|
|
|
response.buf, response.flusher()
|
2017-10-25 18:42:23 +02:00
|
|
|
};
|
2018-05-31 20:40:18 +02:00
|
|
|
|
|
|
|
json::stack::object top{out};
|
|
|
|
json::stack::array pdus
|
|
|
|
{
|
2019-03-06 08:54:36 +01:00
|
|
|
top, "pdus"
|
2018-05-31 20:40:18 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
pdus.append(event);
|
|
|
|
return {};
|
2017-10-25 18:42:23 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
resource::method method_get
|
|
|
|
{
|
|
|
|
event_resource, "GET", handle_get,
|
|
|
|
{
|
|
|
|
method_get.VERIFY_ORIGIN
|
|
|
|
}
|
|
|
|
};
|