mirror of
https://github.com/matrix-construct/construct
synced 2024-11-03 12:28:52 +01:00
46 lines
2 KiB
C++
46 lines
2 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.
|
|
|
|
#pragma once
|
|
#define HAVE_IRCD_M_ROOMS_H
|
|
|
|
/// Convenience iterface for rooms; utilities for the server's collection of
|
|
/// rooms and some rooms list related linkages.
|
|
///
|
|
namespace ircd::m::rooms
|
|
{
|
|
// All rooms known to IRCd
|
|
bool for_each(const string_view &room_id_lb, const room::id::closure_bool &);
|
|
bool for_each(const room::id::closure_bool &);
|
|
void for_each(const room::id::closure &);
|
|
bool for_each(const room::closure_bool &);
|
|
void for_each(const room::closure &);
|
|
|
|
// All rooms for a user (alias to interface in user::)
|
|
bool for_each(const user &, const string_view &membership, const user::rooms::closure_bool &);
|
|
void for_each(const user &, const string_view &membership, const user::rooms::closure &);
|
|
bool for_each(const user &, const user::rooms::closure_bool &);
|
|
void for_each(const user &, const user::rooms::closure &);
|
|
|
|
// All public rooms only; key is either a server hostname or room_id.
|
|
// - for server hostname: iterates known rooms from that server.
|
|
// - for room_id: starts iteration from that (or closest) room_id
|
|
// which can be used as a since/pagination token.
|
|
bool for_each_public(const string_view &key, const room::id::closure_bool &);
|
|
bool for_each_public(const room::id::closure_bool &);
|
|
|
|
size_t count_public(const string_view &server = {});
|
|
|
|
// Linkage to utils that build a publicrooms summary from room state.
|
|
void summary_chunk(const m::room &, json::stack::object &chunk);
|
|
json::object summary_chunk(const m::room &, const mutable_buffer &out);
|
|
event::id::buf summary_set(const m::room::id &, const json::object &summary);
|
|
event::id::buf summary_set(const m::room &);
|
|
}
|