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
|
|
|
|
|
|
|
bool exists(const id::user &);
|
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-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_password_hash(const mutable_buffer &out, const string_view &candidate);
|
|
|
|
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;
|
|
|
|
|
2017-09-24 20:47:13 -07:00
|
|
|
bool is_active() const;
|
|
|
|
bool is_password(const string_view &password) const;
|
|
|
|
|
|
|
|
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}
|
|
|
|
{}
|
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;
|
|
|
|
};
|