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-08-23 23:51:34 +02:00
|
|
|
|
|
|
|
using namespace ircd;
|
|
|
|
|
2018-02-15 22:06:49 +01:00
|
|
|
mapi::header
|
|
|
|
IRCD_MODULE
|
|
|
|
{
|
2018-02-16 21:07:12 +01:00
|
|
|
"Client 11.16 :Room Previews"
|
2018-02-15 22:06:49 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
resource
|
|
|
|
events_resource
|
2017-08-23 23:51:34 +02:00
|
|
|
{
|
2017-10-12 05:52:33 +02:00
|
|
|
"/_matrix/client/r0/events",
|
2017-12-12 21:26:39 +01:00
|
|
|
{
|
2018-02-16 21:07:12 +01:00
|
|
|
"(11.16) Room Previews"
|
2017-12-12 21:26:39 +01:00
|
|
|
}
|
2017-08-23 23:51:34 +02:00
|
|
|
};
|
|
|
|
|
2017-08-18 20:19:13 +02:00
|
|
|
resource::response
|
2018-02-16 21:07:12 +01:00
|
|
|
get__events(client &client,
|
|
|
|
const resource::request &request)
|
2017-08-23 23:51:34 +02:00
|
|
|
{
|
2018-02-25 13:18:22 +01:00
|
|
|
if(!request.query["room_id"])
|
2018-02-16 21:07:12 +01:00
|
|
|
throw m::UNSUPPORTED
|
|
|
|
{
|
|
|
|
"Specify a room_id or use /sync"
|
|
|
|
};
|
|
|
|
|
2018-02-25 13:18:22 +01:00
|
|
|
m::room::id::buf room_id
|
2017-09-25 03:05:42 +02:00
|
|
|
{
|
2018-02-25 13:18:22 +01:00
|
|
|
url::decode(request.query["room_id"], room_id)
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &from
|
|
|
|
{
|
|
|
|
request.query["from"]
|
|
|
|
};
|
|
|
|
|
|
|
|
const auto &requested_timeout
|
|
|
|
{
|
|
|
|
//TODO: conf
|
|
|
|
request.query["timeout"]? lex_cast<uint>(request.query["timeout"]) : 30000U
|
|
|
|
};
|
|
|
|
|
|
|
|
const milliseconds timeout
|
|
|
|
{
|
|
|
|
//TODO: conf
|
|
|
|
std::min(requested_timeout, 60000U)
|
2017-09-25 03:05:42 +02:00
|
|
|
};
|
|
|
|
|
2018-02-16 21:07:12 +01:00
|
|
|
const m::room room
|
2017-09-25 03:05:42 +02:00
|
|
|
{
|
2018-02-16 21:07:12 +01:00
|
|
|
room_id
|
2017-09-25 03:05:42 +02:00
|
|
|
};
|
2017-09-08 11:32:49 +02:00
|
|
|
|
2018-02-25 13:18:22 +01:00
|
|
|
//TODO: X
|
|
|
|
ctx::sleep(timeout);
|
|
|
|
|
2018-02-16 21:07:12 +01:00
|
|
|
const string_view start{};
|
|
|
|
const string_view end{};
|
|
|
|
std::vector<json::value> events;
|
|
|
|
json::value chunk
|
2017-09-08 11:32:49 +02:00
|
|
|
{
|
2018-02-16 21:07:12 +01:00
|
|
|
events.data(), events.size()
|
|
|
|
};
|
2017-09-08 11:32:49 +02:00
|
|
|
|
2017-08-18 20:19:13 +02:00
|
|
|
return resource::response
|
2017-08-23 23:51:34 +02:00
|
|
|
{
|
2017-09-25 03:05:42 +02:00
|
|
|
client, json::members
|
2017-09-08 11:32:49 +02:00
|
|
|
{
|
2018-02-16 21:07:12 +01:00
|
|
|
{ "start", start },
|
|
|
|
{ "chunk", chunk },
|
|
|
|
{ "end", end },
|
2017-09-08 11:32:49 +02:00
|
|
|
}
|
2017-08-18 20:19:13 +02:00
|
|
|
};
|
|
|
|
}
|
2017-08-23 23:51:34 +02:00
|
|
|
|
2018-02-15 22:06:49 +01:00
|
|
|
resource::method
|
|
|
|
method_get
|
2017-08-23 23:51:34 +02:00
|
|
|
{
|
2018-02-15 22:06:49 +01:00
|
|
|
events_resource, "GET", get__events
|
2017-08-23 23:51:34 +02:00
|
|
|
};
|