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-09-08 11:32:49 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_M_ROOM_H
|
|
|
|
|
2018-12-10 01:27:02 +01:00
|
|
|
// Matrix Room interface.
|
|
|
|
//
|
|
|
|
// This header is the index for the Room interface suite. The `class room`
|
|
|
|
// itself is available in room/room.h.
|
|
|
|
//
|
|
|
|
// See room/README.md for more information.
|
|
|
|
//
|
|
|
|
|
2017-09-08 11:32:49 +02:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
|
|
|
IRCD_M_EXCEPTION(m::error, CONFLICT, http::CONFLICT);
|
|
|
|
IRCD_M_EXCEPTION(m::error, NOT_MODIFIED, http::NOT_MODIFIED);
|
|
|
|
IRCD_M_EXCEPTION(CONFLICT, ALREADY_MEMBER, http::CONFLICT);
|
|
|
|
|
2018-11-29 23:54:50 +01:00
|
|
|
struct room; // see: room/room.h
|
2017-10-25 18:47:03 +02:00
|
|
|
|
2018-02-13 23:23:56 +01:00
|
|
|
// Util
|
2017-12-12 21:33:14 +01:00
|
|
|
bool my(const room &);
|
2018-02-13 23:23:56 +01:00
|
|
|
|
|
|
|
// [GET] Util
|
2018-03-08 20:38:29 +01:00
|
|
|
bool exists(const room &);
|
2017-11-30 19:51:01 +01:00
|
|
|
bool exists(const id::room &);
|
2018-03-08 20:39:09 +01:00
|
|
|
bool exists(const id::room_alias &, const bool &remote = false);
|
2018-09-13 08:26:28 +02:00
|
|
|
bool federate(const id::room &);
|
2018-10-26 01:25:18 +02:00
|
|
|
id::user::buf creator(const id::room &);
|
|
|
|
bool creator(const id::room &, const id::user &);
|
2019-03-06 20:03:06 +01:00
|
|
|
string_view version(const mutable_buffer &, const room &, std::nothrow_t);
|
|
|
|
string_view version(const mutable_buffer &, const room &);
|
2017-10-25 18:47:03 +02:00
|
|
|
|
2018-04-06 06:57:17 +02:00
|
|
|
// [GET]
|
2018-02-26 13:55:27 +01:00
|
|
|
id::room room_id(const mutable_buffer &, const id::room_alias &);
|
2018-04-07 06:08:59 +02:00
|
|
|
id::room room_id(const mutable_buffer &, const string_view &id_or_alias);
|
2018-02-26 13:55:27 +01:00
|
|
|
id::room::buf room_id(const id::room_alias &);
|
2018-04-07 06:08:59 +02:00
|
|
|
id::room::buf room_id(const string_view &id_or_alias);
|
2018-02-26 13:55:27 +01:00
|
|
|
|
2018-02-09 05:59:48 +01:00
|
|
|
// [SET] Lowest-level
|
2018-01-26 21:23:28 +01:00
|
|
|
event::id::buf commit(const room &, json::iov &event, const json::iov &content);
|
|
|
|
|
2018-02-09 08:18:42 +01:00
|
|
|
// [SET] Send state to room
|
2018-01-26 21:23:28 +01:00
|
|
|
event::id::buf send(const room &, const m::id::user &sender, const string_view &type, const string_view &state_key, const json::iov &content);
|
|
|
|
event::id::buf send(const room &, const m::id::user &sender, const string_view &type, const string_view &state_key, const json::members &content);
|
|
|
|
event::id::buf send(const room &, const m::id::user &sender, const string_view &type, const string_view &state_key, const json::object &content);
|
|
|
|
|
2018-02-09 08:18:42 +01:00
|
|
|
// [SET] Send non-state to room
|
2018-01-26 21:23:28 +01:00
|
|
|
event::id::buf send(const room &, const m::id::user &sender, const string_view &type, const json::iov &content);
|
|
|
|
event::id::buf send(const room &, const m::id::user &sender, const string_view &type, const json::members &content);
|
|
|
|
event::id::buf send(const room &, const m::id::user &sender, const string_view &type, const json::object &content);
|
|
|
|
|
2018-02-09 08:18:42 +01:00
|
|
|
// [SET] Convenience sends
|
2018-02-15 23:57:56 +01:00
|
|
|
event::id::buf redact(const room &, const m::id::user &sender, const m::id::event &, const string_view &reason);
|
2018-01-26 21:23:28 +01:00
|
|
|
event::id::buf message(const room &, const m::id::user &sender, const json::members &content);
|
|
|
|
event::id::buf message(const room &, const m::id::user &sender, const string_view &body, const string_view &msgtype = "m.text");
|
2018-03-03 08:08:15 +01:00
|
|
|
event::id::buf msghtml(const room &, const m::id::user &sender, const string_view &html, const string_view &alt = {}, const string_view &msgtype = "m.notice");
|
2018-03-02 12:42:16 +01:00
|
|
|
event::id::buf notice(const room &, const m::id::user &sender, const string_view &body);
|
|
|
|
event::id::buf notice(const room &, const string_view &body); // sender is @ircd
|
2018-04-03 21:56:46 +02:00
|
|
|
event::id::buf invite(const room &, const m::id::user &target, const m::id::user &sender);
|
2018-01-26 21:23:28 +01:00
|
|
|
event::id::buf leave(const room &, const m::id::user &);
|
|
|
|
event::id::buf join(const room &, const m::id::user &);
|
2018-03-27 12:00:09 +02:00
|
|
|
event::id::buf join(const id::room_alias &, const m::id::user &);
|
2018-01-26 21:23:28 +01:00
|
|
|
|
2018-02-09 08:18:42 +01:00
|
|
|
// [SET] Create new room
|
2019-03-06 21:00:47 +01:00
|
|
|
room create(const createroom &, json::stack::array *const &errors = nullptr);
|
|
|
|
room create(const id::room &, const id::user &creator, const string_view &preset = {});
|
2017-09-08 11:32:49 +02:00
|
|
|
}
|
2018-12-02 00:05:50 +01:00
|
|
|
|
|
|
|
#include "room/room.h"
|
|
|
|
#include "room/messages.h"
|
|
|
|
#include "room/state.h"
|
|
|
|
#include "room/members.h"
|
|
|
|
#include "room/origins.h"
|
|
|
|
#include "room/head.h"
|
2019-02-12 20:03:59 +01:00
|
|
|
#include "room/auth.h"
|
2018-12-02 00:05:50 +01:00
|
|
|
#include "room/power.h"
|
2019-02-26 01:28:53 +01:00
|
|
|
#include "room/stats.h"
|