mirror of
https://github.com/matrix-construct/construct
synced 2024-11-09 19:41:22 +01:00
71 lines
1.3 KiB
C++
71 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
|
|
};
|