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:10:28 +02:00
|
|
|
|
|
|
|
using namespace ircd;
|
|
|
|
|
2018-02-15 22:06:49 +01:00
|
|
|
mapi::header
|
|
|
|
IRCD_MODULE
|
|
|
|
{
|
|
|
|
"Client 7.5 :Public Rooms"
|
|
|
|
};
|
|
|
|
|
2018-04-22 08:53:36 +02:00
|
|
|
resource
|
|
|
|
publicrooms_resource
|
|
|
|
{
|
|
|
|
"/_matrix/client/r0/publicRooms",
|
|
|
|
{
|
|
|
|
"(7.5) Lists the public rooms on the server. "
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2018-09-05 07:08:37 +02:00
|
|
|
conf::item<size_t>
|
|
|
|
flush_hiwat
|
|
|
|
{
|
|
|
|
{ "name", "ircd.client.publicrooms.flush.hiwat" },
|
|
|
|
{ "default", 16384L },
|
|
|
|
};
|
|
|
|
|
2018-04-22 08:53:36 +02:00
|
|
|
static resource::response
|
2018-10-25 02:11:03 +02:00
|
|
|
get__publicrooms(client &,
|
|
|
|
const resource::request &);
|
2018-04-22 08:53:36 +02:00
|
|
|
|
2018-10-25 02:11:03 +02:00
|
|
|
resource::method
|
|
|
|
post_method
|
|
|
|
{
|
|
|
|
publicrooms_resource, "POST", get__publicrooms
|
|
|
|
};
|
|
|
|
|
|
|
|
resource::method
|
|
|
|
get_method
|
|
|
|
{
|
|
|
|
publicrooms_resource, "GET", get__publicrooms
|
|
|
|
};
|
2018-04-22 08:53:36 +02:00
|
|
|
|
2017-08-23 23:10:28 +02:00
|
|
|
resource::response
|
2018-10-25 02:11:03 +02:00
|
|
|
get__publicrooms(client &client,
|
|
|
|
const resource::request &request)
|
2017-08-23 23:10:28 +02:00
|
|
|
{
|
2019-08-13 07:59:27 +02:00
|
|
|
char since_buf[m::room::id::buf::SIZE];
|
2018-09-05 07:08:37 +02:00
|
|
|
const string_view &since
|
|
|
|
{
|
2018-10-25 02:11:03 +02:00
|
|
|
request.has("since")?
|
|
|
|
unquote(request["since"]):
|
2019-06-18 09:15:51 +02:00
|
|
|
url::decode(since_buf, request.query["since"])
|
2018-09-05 07:08:37 +02:00
|
|
|
};
|
|
|
|
|
2018-10-25 01:57:41 +02:00
|
|
|
if(since && !valid(m::id::ROOM, since))
|
|
|
|
throw m::BAD_REQUEST
|
|
|
|
{
|
|
|
|
"Invalid since token for this server."
|
|
|
|
};
|
|
|
|
|
2019-06-18 09:15:51 +02:00
|
|
|
char server_buf[256];
|
2019-09-06 05:29:51 +02:00
|
|
|
string_view server
|
2018-04-22 08:53:36 +02:00
|
|
|
{
|
2019-06-18 09:15:51 +02:00
|
|
|
url::decode(server_buf, request.query["server"])
|
2018-04-22 08:53:36 +02:00
|
|
|
};
|
|
|
|
|
2019-09-06 05:29:51 +02:00
|
|
|
const uint8_t limit
|
|
|
|
{
|
|
|
|
request.has("limit")?
|
|
|
|
uint8_t(request.at<ushort>("limit")):
|
|
|
|
uint8_t(request.query.get<ushort>("limit", 16U))
|
|
|
|
};
|
|
|
|
|
|
|
|
const bool include_all_networks
|
|
|
|
{
|
|
|
|
request.get<bool>("include_all_networks", false)
|
|
|
|
};
|
|
|
|
|
2018-09-05 07:08:37 +02:00
|
|
|
const json::object &filter
|
2018-04-22 08:53:36 +02:00
|
|
|
{
|
2018-09-05 07:08:37 +02:00
|
|
|
request["filter"]
|
|
|
|
};
|
|
|
|
|
2019-09-06 05:29:51 +02:00
|
|
|
const json::string &search_term
|
2018-09-05 07:08:37 +02:00
|
|
|
{
|
2019-09-06 05:29:51 +02:00
|
|
|
filter["generic_search_term"]
|
2018-04-22 08:53:36 +02:00
|
|
|
};
|
|
|
|
|
2019-09-06 06:15:06 +02:00
|
|
|
if(!server && m::valid(m::id::ROOM_ALIAS, search_term))
|
2019-09-06 05:29:51 +02:00
|
|
|
server = m::id::room_alias(search_term).host();
|
|
|
|
|
2019-06-18 08:06:28 +02:00
|
|
|
if(server && !my_host(server)) try
|
|
|
|
{
|
2019-08-13 07:59:27 +02:00
|
|
|
m::rooms::summary::fetch
|
|
|
|
{
|
|
|
|
server, since, limit
|
|
|
|
};
|
2019-06-18 08:06:28 +02:00
|
|
|
}
|
|
|
|
catch(const std::exception &e)
|
|
|
|
{
|
|
|
|
log::error
|
|
|
|
{
|
|
|
|
m::log, "Failed to fetch public rooms from '%s' :%s",
|
|
|
|
server,
|
|
|
|
e.what()
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2018-09-05 07:08:37 +02:00
|
|
|
resource::response::chunked response
|
2017-08-23 23:10:28 +02:00
|
|
|
{
|
2018-09-05 07:08:37 +02:00
|
|
|
client, http::OK
|
2017-08-23 23:10:28 +02:00
|
|
|
};
|
|
|
|
|
2018-09-05 07:08:37 +02:00
|
|
|
json::stack out
|
|
|
|
{
|
|
|
|
response.buf, response.flusher(), size_t(flush_hiwat)
|
|
|
|
};
|
2018-04-22 08:53:36 +02:00
|
|
|
|
2019-08-13 07:59:27 +02:00
|
|
|
m::rooms::opts opts;
|
|
|
|
opts.join_rule = "public";
|
|
|
|
opts.summary = true;
|
|
|
|
opts.search_term = search_term;
|
|
|
|
opts.lower_bound = true;
|
|
|
|
opts.room_id = since;
|
2019-09-06 06:15:06 +02:00
|
|
|
|
|
|
|
if(m::valid(m::id::USER, search_term))
|
|
|
|
opts.user_id = search_term;
|
|
|
|
|
|
|
|
opts.room_alias =
|
|
|
|
startswith(search_term, m::id::ROOM_ALIAS)?
|
|
|
|
string_view{search_term}:
|
|
|
|
string_view{};
|
|
|
|
|
2019-09-06 05:29:51 +02:00
|
|
|
opts.server =
|
2019-09-06 06:15:06 +02:00
|
|
|
server?
|
|
|
|
server:
|
|
|
|
opts.room_alias || opts.user_id?
|
2019-09-06 05:29:51 +02:00
|
|
|
string_view{}:
|
|
|
|
my_host();
|
|
|
|
|
|
|
|
log::debug
|
|
|
|
{
|
2019-09-06 06:15:06 +02:00
|
|
|
m::log, "public rooms query server[%s] search[%s] filter:%s"
|
|
|
|
" user_id:%b room_alias:%b allnet:%b since:%s",
|
2019-09-06 05:29:51 +02:00
|
|
|
opts.server,
|
|
|
|
opts.search_term,
|
|
|
|
string_view{filter},
|
2019-09-06 06:15:06 +02:00
|
|
|
bool(opts.user_id),
|
|
|
|
bool(opts.room_alias),
|
2019-09-06 05:29:51 +02:00
|
|
|
include_all_networks,
|
|
|
|
since,
|
|
|
|
};
|
2019-08-13 07:59:27 +02:00
|
|
|
|
2018-09-05 07:31:08 +02:00
|
|
|
size_t count{0};
|
2018-09-05 07:08:37 +02:00
|
|
|
m::room::id::buf prev_batch_buf;
|
|
|
|
m::room::id::buf next_batch_buf;
|
|
|
|
json::stack::object top{out};
|
|
|
|
{
|
|
|
|
json::stack::member chunk_m{top, "chunk"};
|
|
|
|
json::stack::array chunk{chunk_m};
|
2019-08-13 07:59:27 +02:00
|
|
|
m::rooms::for_each(opts, [&](const m::room::id &room_id)
|
2018-09-05 07:08:37 +02:00
|
|
|
{
|
|
|
|
json::stack::object obj{chunk};
|
2019-08-13 07:59:27 +02:00
|
|
|
m::rooms::summary::chunk(room_id, obj);
|
2018-09-05 07:31:08 +02:00
|
|
|
if(!count && !empty(since))
|
|
|
|
prev_batch_buf = room_id; //TODO: ???
|
2018-09-05 07:08:37 +02:00
|
|
|
|
2018-09-05 07:31:08 +02:00
|
|
|
next_batch_buf = room_id;
|
2018-10-24 23:01:21 +02:00
|
|
|
return ++count < limit;
|
2019-08-13 07:59:27 +02:00
|
|
|
});
|
2018-09-05 07:08:37 +02:00
|
|
|
}
|
|
|
|
|
2019-08-13 07:59:27 +02:00
|
|
|
// To count the total we clear the since token, otherwise the count
|
|
|
|
// will be the remainder.
|
|
|
|
opts.room_id = {};
|
2018-09-05 07:08:37 +02:00
|
|
|
json::stack::member
|
2018-04-22 08:53:36 +02:00
|
|
|
{
|
2018-09-05 07:08:37 +02:00
|
|
|
top, "total_room_count_estimate", json::value
|
|
|
|
{
|
2019-08-13 07:59:27 +02:00
|
|
|
ssize_t(m::rooms::count(opts))
|
2018-09-05 07:08:37 +02:00
|
|
|
}
|
2018-04-22 08:53:36 +02:00
|
|
|
};
|
|
|
|
|
2018-09-05 07:31:08 +02:00
|
|
|
if(prev_batch_buf)
|
|
|
|
json::stack::member
|
|
|
|
{
|
|
|
|
top, "prev_batch", prev_batch_buf
|
|
|
|
};
|
2018-04-22 08:53:36 +02:00
|
|
|
|
2018-09-05 07:31:08 +02:00
|
|
|
if(count >= limit)
|
|
|
|
json::stack::member
|
|
|
|
{
|
|
|
|
top, "next_batch", next_batch_buf
|
|
|
|
};
|
2018-04-22 08:53:36 +02:00
|
|
|
|
2019-06-24 07:09:41 +02:00
|
|
|
return std::move(response);
|
2018-09-05 07:08:37 +02:00
|
|
|
}
|