0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-09 03:58:38 +02:00
construct/modules/client/events.cc

72 lines
1.3 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
{
"Client 11.16 :Room Previews"
};
resource
events_resource
{
"/_matrix/client/r0/events",
{
"(11.16) Room Previews"
}
};
resource::response
get__events(client &client,
const resource::request &request)
{
if(!request.has("room_id"))
throw m::UNSUPPORTED
{
"Specify a room_id or use /sync"
};
const m::room::id &room_id
{
unquote(request.at("room_id"))
};
const m::room room
{
room_id
};
const string_view start{};
const string_view end{};
std::vector<json::value> events;
json::value chunk
{
events.data(), events.size()
};
return resource::response
{
client, json::members
{
{ "start", start },
{ "chunk", chunk },
{ "end", end },
}
};
}
resource::method
method_get
{
events_resource, "GET", get__events
};