0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-07-07 02:58:39 +02:00
construct/include/ircd/m/user/user.h

64 lines
1.5 KiB
C++

// Matrix Construct
//
// Copyright (C) Matrix Construct Developers, Authors & Contributors
// Copyright (C) 2016-2019 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_USER_H
struct ircd::m::user
{
struct room;
struct rooms;
struct mitsein;
struct events;
struct profile;
struct account_data;
struct room_account_data;
struct room_tags;
struct filter;
struct ignores;
using id = m::id::user;
using closure = std::function<void (const user &)>;
using closure_bool = std::function<bool (const user &)>;
static m::room users;
static m::room tokens;
id user_id;
operator const id &() const;
static string_view gen_access_token(const mutable_buffer &out);
static id::device::buf get_device_from_access_token(const string_view &token);
id::room room_id(const mutable_buffer &) const;
id::room::buf room_id() const;
bool is_password(const string_view &password) const noexcept;
event::id::buf password(const string_view &password);
bool is_active() const;
event::id::buf deactivate();
event::id::buf activate();
user(const id &user_id)
:user_id{user_id}
{}
user() = default;
};
inline ircd::m::user::operator
const ircd::m::user::id &()
const
{
return user_id;
}