2018-02-03 18:22:01 -08: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-08-23 15:51:34 -06:00
|
|
|
|
|
|
|
using namespace ircd;
|
|
|
|
|
2017-08-18 12:19:13 -06:00
|
|
|
resource events_resource
|
2017-08-23 15:51:34 -06:00
|
|
|
{
|
2017-10-11 20:52:33 -07:00
|
|
|
"/_matrix/client/r0/events",
|
2017-12-12 13:26:39 -07:00
|
|
|
{
|
|
|
|
"Events (6.2.3) (10.x)"
|
|
|
|
}
|
2017-08-23 15:51:34 -06:00
|
|
|
};
|
|
|
|
|
2017-08-18 12:19:13 -06:00
|
|
|
resource::response
|
|
|
|
get_events(client &client, const resource::request &request)
|
2017-08-23 15:51:34 -06:00
|
|
|
{
|
2017-09-27 18:31:21 -07:00
|
|
|
const m::room::id &room_id
|
2017-09-24 18:05:42 -07:00
|
|
|
{
|
2017-09-27 18:31:21 -07:00
|
|
|
unquote(request["room_id"])
|
2017-09-24 18:05:42 -07:00
|
|
|
};
|
|
|
|
|
2017-11-15 17:48:25 -08:00
|
|
|
const m::vm::query<m::vm::where::equal> query
|
2017-09-24 18:05:42 -07:00
|
|
|
{
|
2017-09-27 18:31:21 -07:00
|
|
|
{ "room_id", room_id }
|
2017-09-24 18:05:42 -07:00
|
|
|
};
|
2017-09-08 02:32:49 -07:00
|
|
|
|
2017-09-24 18:05:42 -07:00
|
|
|
size_t i(0);
|
2017-10-25 09:47:03 -07:00
|
|
|
m::vm::for_each(query, [&i](const auto &event)
|
2017-09-08 02:32:49 -07:00
|
|
|
{
|
2017-09-24 18:05:42 -07:00
|
|
|
++i;
|
2017-09-08 02:32:49 -07:00
|
|
|
});
|
|
|
|
|
2017-09-24 18:05:42 -07:00
|
|
|
size_t j(0);
|
|
|
|
json::value ret[i];
|
2017-10-25 09:47:03 -07:00
|
|
|
m::vm::for_each(query, [&i, &j, &ret](const m::event &event)
|
2017-09-08 02:32:49 -07:00
|
|
|
{
|
2017-09-24 18:05:42 -07:00
|
|
|
if(j < i)
|
|
|
|
ret[j++] = event;
|
2017-09-08 02:32:49 -07:00
|
|
|
});
|
|
|
|
|
2017-08-18 12:19:13 -06:00
|
|
|
return resource::response
|
2017-08-23 15:51:34 -06:00
|
|
|
{
|
2017-09-24 18:05:42 -07:00
|
|
|
client, json::members
|
2017-09-08 02:32:49 -07:00
|
|
|
{
|
2017-09-24 18:05:42 -07:00
|
|
|
{ "chunk", { ret, j } }
|
2017-09-08 02:32:49 -07:00
|
|
|
}
|
2017-08-18 12:19:13 -06:00
|
|
|
};
|
|
|
|
}
|
2017-08-23 15:51:34 -06:00
|
|
|
|
2017-08-18 12:19:13 -06:00
|
|
|
resource::method method_get
|
2017-08-23 15:51:34 -06:00
|
|
|
{
|
2017-08-18 12:19:13 -06:00
|
|
|
events_resource, "GET", get_events
|
2017-08-23 15:51:34 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
mapi::header IRCD_MODULE
|
|
|
|
{
|
|
|
|
"registers the resource 'client/events' and hosts the events database"
|
|
|
|
};
|