2018-02-24 07:13:17 +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 (unspecified) :Publicised Groups",
|
|
|
|
};
|
|
|
|
|
2022-07-14 21:01:02 +02:00
|
|
|
m::resource
|
2018-02-24 07:13:17 +01:00
|
|
|
publicised_groups_resource
|
|
|
|
{
|
|
|
|
"/_matrix/client/r0/publicised_groups",
|
|
|
|
{
|
|
|
|
"(7.5) Lists the public rooms on the server. "
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-07-14 21:01:02 +02:00
|
|
|
m::resource::response
|
2018-02-24 07:13:17 +01:00
|
|
|
get__publicised_groups(client &client,
|
2022-07-14 21:01:02 +02:00
|
|
|
const m::resource::request &request)
|
2018-02-24 07:13:17 +01:00
|
|
|
{
|
|
|
|
return resource::response
|
|
|
|
{
|
2018-04-17 10:15:30 +02:00
|
|
|
client, json::members
|
|
|
|
{
|
|
|
|
{ "users", json::empty_array }
|
|
|
|
}
|
2018-02-24 07:13:17 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-07-14 21:01:02 +02:00
|
|
|
m::resource::method
|
2018-02-24 07:13:17 +01:00
|
|
|
get_method
|
|
|
|
{
|
|
|
|
publicised_groups_resource, "GET", get__publicised_groups
|
|
|
|
};
|
|
|
|
|
2022-07-14 21:01:02 +02:00
|
|
|
m::resource::response
|
2018-02-24 07:13:17 +01:00
|
|
|
post__publicised_groups(client &client,
|
2022-07-14 21:01:02 +02:00
|
|
|
const m::resource::request &request)
|
2018-02-24 07:13:17 +01:00
|
|
|
{
|
|
|
|
const json::array &user_ids
|
|
|
|
{
|
|
|
|
request["user_ids"]
|
|
|
|
};
|
|
|
|
|
|
|
|
return resource::response
|
|
|
|
{
|
2018-04-17 10:15:30 +02:00
|
|
|
client, json::members
|
|
|
|
{
|
|
|
|
{ "users", user_ids }
|
|
|
|
}
|
2018-02-24 07:13:17 +01:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-07-14 21:01:02 +02:00
|
|
|
m::resource::method
|
2018-02-24 07:13:17 +01:00
|
|
|
post_method
|
|
|
|
{
|
|
|
|
publicised_groups_resource, "POST", post__publicised_groups
|
|
|
|
};
|