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)
|
|
|
|
{
|
|
|
|
m::event::id::buf event_id
|
|
|
|
{
|
2017-12-12 21:14:47 +01:00
|
|
|
url::decode(request.parv[0], event_id)
|
2017-10-25 18:42:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
const unique_buffer<mutable_buffer> buffer
|
|
|
|
{
|
|
|
|
64_KiB
|
|
|
|
};
|
|
|
|
|
2018-03-02 11:17:30 +01:00
|
|
|
const m::event::fetch event
|
2017-10-25 18:42:23 +02:00
|
|
|
{
|
2018-03-02 11:17:30 +01:00
|
|
|
event_id
|
2017-10-25 18:42:23 +02:00
|
|
|
};
|
|
|
|
|
2018-01-25 01:33:26 +01:00
|
|
|
const json::value pdu
|
|
|
|
{
|
2018-03-02 11:17:30 +01:00
|
|
|
static_cast<const m::event &>(event)
|
2018-01-25 01:33:26 +01:00
|
|
|
};
|
|
|
|
|
2017-10-25 18:42:23 +02:00
|
|
|
return resource::response
|
|
|
|
{
|
2018-01-25 01:33:26 +01:00
|
|
|
client, json::members
|
|
|
|
{
|
|
|
|
{ "pdus", { &pdu, 1 } }
|
|
|
|
}
|
2017-10-25 18:42:23 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
resource::method method_get
|
|
|
|
{
|
|
|
|
event_resource, "GET", handle_get,
|
|
|
|
{
|
|
|
|
method_get.VERIFY_ORIGIN
|
|
|
|
}
|
|
|
|
};
|