mirror of
https://github.com/matrix-construct/construct
synced 2024-11-03 12:28:52 +01:00
64 lines
1.5 KiB
C++
64 lines
1.5 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_USER_H
|
|
|
|
namespace ircd::m
|
|
{
|
|
struct user;
|
|
|
|
bool my(const user &);
|
|
|
|
bool exists(const id::user &);
|
|
}
|
|
|
|
struct ircd::m::user
|
|
{
|
|
struct room;
|
|
using id = m::id::user;
|
|
|
|
id user_id;
|
|
|
|
static m::room users;
|
|
static m::room tokens;
|
|
|
|
static string_view gen_password_hash(const mutable_buffer &out, const string_view &candidate);
|
|
static string_view gen_access_token(const mutable_buffer &out);
|
|
|
|
id::room room_id(const mutable_buffer &) const;
|
|
id::room::buf room_id() const;
|
|
|
|
bool is_active() const;
|
|
bool is_password(const string_view &password) const noexcept;
|
|
|
|
void password(const string_view &password);
|
|
void activate(const json::members &contents = {});
|
|
void deactivate(const json::members &contents = {});
|
|
|
|
user(const id &user_id)
|
|
:user_id{user_id}
|
|
{}
|
|
|
|
user() = default;
|
|
};
|
|
|
|
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;
|
|
};
|