2018-02-03 18:22:01 -08: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 15:10:28 -06:00
|
|
|
|
2017-08-18 12:19:13 -06:00
|
|
|
#pragma once
|
2017-09-24 18:05:42 -07:00
|
|
|
#define HAVE_IRCD_M_USER_H
|
2017-08-23 15:10:28 -06:00
|
|
|
|
2017-09-24 18:05:42 -07:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
|
|
|
struct user;
|
2018-02-15 13:11:51 -08:00
|
|
|
|
2018-02-25 00:19:03 -08:00
|
|
|
bool my(const user &);
|
2018-03-09 09:00:28 -08:00
|
|
|
bool exists(const user &);
|
2018-02-15 13:11:51 -08:00
|
|
|
bool exists(const id::user &);
|
2018-03-09 09:00:28 -08:00
|
|
|
user create(const id::user &, const json::members &args = {});
|
2017-09-24 18:05:42 -07:00
|
|
|
}
|
2017-08-18 12:19:13 -06:00
|
|
|
|
2017-09-24 18:05:42 -07:00
|
|
|
struct ircd::m::user
|
2017-08-23 15:10:28 -06:00
|
|
|
{
|
2018-02-15 13:08:10 -08:00
|
|
|
struct room;
|
2017-09-24 18:05:42 -07:00
|
|
|
using id = m::id::user;
|
|
|
|
|
|
|
|
id user_id;
|
2017-09-08 02:32:49 -07:00
|
|
|
|
2018-03-05 23:39:44 -08:00
|
|
|
operator const id &() const;
|
|
|
|
|
2018-02-15 13:08:10 -08:00
|
|
|
static m::room users;
|
|
|
|
static m::room tokens;
|
2017-08-18 12:19:13 -06:00
|
|
|
|
2018-02-15 13:05:00 -08:00
|
|
|
static string_view gen_access_token(const mutable_buffer &out);
|
|
|
|
|
2018-02-15 13:08:10 -08:00
|
|
|
id::room room_id(const mutable_buffer &) const;
|
|
|
|
id::room::buf room_id() const;
|
|
|
|
|
2018-02-19 19:38:09 -08:00
|
|
|
bool is_password(const string_view &password) const noexcept;
|
2018-03-05 04:00:17 -08:00
|
|
|
event::id::buf password(const string_view &password);
|
2018-03-05 03:42:41 -08:00
|
|
|
|
|
|
|
bool is_active() const;
|
2018-03-09 09:00:28 -08:00
|
|
|
event::id::buf deactivate();
|
|
|
|
event::id::buf activate();
|
2017-09-24 20:47:13 -07:00
|
|
|
|
|
|
|
user(const id &user_id)
|
|
|
|
:user_id{user_id}
|
|
|
|
{}
|
2018-02-15 12:11:28 -08:00
|
|
|
|
|
|
|
user() = default;
|
2017-09-24 20:47:13 -07:00
|
|
|
};
|
2018-02-15 13:08:10 -08:00
|
|
|
|
|
|
|
struct ircd::m::user::room
|
|
|
|
:m::room
|
|
|
|
{
|
|
|
|
m::user user;
|
|
|
|
id::room::buf room_id;
|
|
|
|
|
|
|
|
room(const m::user &user);
|
|
|
|
room(const m::user::id &user_id);
|
|
|
|
room() = default;
|
|
|
|
room(const room &) = delete;
|
|
|
|
room &operator=(const room &) = delete;
|
|
|
|
};
|
2018-03-05 23:39:44 -08:00
|
|
|
|
|
|
|
inline ircd::m::user::operator
|
|
|
|
const ircd::m::user::id &()
|
|
|
|
const
|
|
|
|
{
|
|
|
|
return user_id;
|
|
|
|
}
|