0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-10 04:28:35 +02:00
construct/modules/client/events.cc

69 lines
1.2 KiB
C++
Raw Normal View History

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.
using namespace ircd;
mapi::header
IRCD_MODULE
{
"Client 6.2.2 :Events"
};
resource
events_resource
{
"/_matrix/client/r0/events",
{
"Events (6.2.3) (10.x)"
}
};
resource::response
get__events(client &client, const resource::request &request)
{
const m::room::id &room_id
2017-09-25 03:05:42 +02:00
{
unquote(request["room_id"])
2017-09-25 03:05:42 +02:00
};
const m::vm::query<m::vm::where::equal> query
2017-09-25 03:05:42 +02:00
{
{ "room_id", room_id }
2017-09-25 03:05:42 +02:00
};
2017-09-25 03:05:42 +02:00
size_t i(0);
2017-10-25 18:47:03 +02:00
m::vm::for_each(query, [&i](const auto &event)
{
2017-09-25 03:05:42 +02:00
++i;
});
2017-09-25 03:05:42 +02:00
size_t j(0);
json::value ret[i];
2017-10-25 18:47:03 +02:00
m::vm::for_each(query, [&i, &j, &ret](const m::event &event)
{
2017-09-25 03:05:42 +02:00
if(j < i)
ret[j++] = event;
});
return resource::response
{
2017-09-25 03:05:42 +02:00
client, json::members
{
2017-09-25 03:05:42 +02:00
{ "chunk", { ret, j } }
}
};
}
resource::method
method_get
{
events_resource, "GET", get__events
};