2018-04-08 22:27:18 +02: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.
|
|
|
|
|
|
|
|
#pragma once
|
2020-03-06 04:35:20 +01:00
|
|
|
#define HAVE_IRCD_M_FED_PUBLIC_ROOMS_H
|
2018-04-08 22:27:18 +02:00
|
|
|
|
2020-03-06 04:35:20 +01:00
|
|
|
namespace ircd::m::fed
|
2018-04-08 22:27:18 +02:00
|
|
|
{
|
|
|
|
struct public_rooms;
|
|
|
|
};
|
|
|
|
|
2020-03-06 04:35:20 +01:00
|
|
|
struct ircd::m::fed::public_rooms
|
2020-03-08 02:15:58 +01:00
|
|
|
:request
|
2018-04-08 22:27:18 +02:00
|
|
|
{
|
|
|
|
struct opts;
|
|
|
|
|
|
|
|
explicit operator json::object() const
|
|
|
|
{
|
2020-03-08 02:15:58 +01:00
|
|
|
return json::object
|
|
|
|
{
|
|
|
|
in.content
|
|
|
|
};
|
2018-04-08 22:27:18 +02:00
|
|
|
}
|
|
|
|
|
2020-03-08 02:15:58 +01:00
|
|
|
public_rooms(const string_view &remote,
|
|
|
|
const mutable_buffer &,
|
|
|
|
opts);
|
|
|
|
|
2018-04-08 22:27:18 +02:00
|
|
|
public_rooms() = default;
|
|
|
|
};
|
|
|
|
|
2020-03-06 04:35:20 +01:00
|
|
|
struct ircd::m::fed::public_rooms::opts
|
2020-03-08 02:15:58 +01:00
|
|
|
:request::opts
|
2018-04-08 22:27:18 +02:00
|
|
|
{
|
|
|
|
size_t limit {128};
|
|
|
|
string_view since;
|
|
|
|
string_view third_party_instance_id;
|
|
|
|
bool include_all_networks {true};
|
|
|
|
};
|