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-08-23 23:10:28 +02:00
|
|
|
|
2017-08-18 20:19:13 +02:00
|
|
|
#pragma once
|
2017-09-25 03:05:42 +02:00
|
|
|
#define HAVE_IRCD_M_USER_H
|
2017-08-23 23:10:28 +02:00
|
|
|
|
2017-09-25 03:05:42 +02:00
|
|
|
namespace ircd::m
|
|
|
|
{
|
|
|
|
struct user;
|
2018-02-15 22:11:51 +01:00
|
|
|
|
2018-02-25 09:19:03 +01:00
|
|
|
bool my(const user &);
|
|
|
|
|
2018-02-15 22:11:51 +01:00
|
|
|
bool exists(const id::user &);
|
2017-09-25 03:05:42 +02:00
|
|
|
}
|
2017-08-18 20:19:13 +02:00
|
|
|
|
2017-09-25 03:05:42 +02:00
|
|
|
struct ircd::m::user
|
2017-08-23 23:10:28 +02:00
|
|
|
{
|
2018-02-15 22:08:10 +01:00
|
|
|
struct room;
|
2017-09-25 03:05:42 +02:00
|
|
|
using id = m::id::user;
|
|
|
|
|
|
|
|
id user_id;
|
2017-09-08 11:32:49 +02:00
|
|
|
|
2018-02-15 22:08:10 +01:00
|
|
|
static m::room users;
|
|
|
|
static m::room tokens;
|
2017-08-18 20:19:13 +02:00
|
|
|
|
2018-02-15 22:05:00 +01: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 22:08:10 +01:00
|
|
|
id::room room_id(const mutable_buffer &) const;
|
|
|
|
id::room::buf room_id() const;
|
|
|
|
|
2017-09-25 05:47:13 +02:00
|
|
|
bool is_active() const;
|
2018-02-20 04:38:09 +01:00
|
|
|
bool is_password(const string_view &password) const noexcept;
|
2017-09-25 05:47:13 +02:00
|
|
|
|
2018-03-02 16:25:37 +01:00
|
|
|
event::id::buf presence(const string_view &, const string_view &status = {});
|
|
|
|
|
2017-09-25 05:47:13 +02:00
|
|
|
void password(const string_view &password);
|
|
|
|
void deactivate(const json::members &contents = {});
|
2018-03-03 09:18:07 +01:00
|
|
|
event::id::buf activate(const json::members &contents = {});
|
2017-09-25 05:47:13 +02:00
|
|
|
|
|
|
|
user(const id &user_id)
|
|
|
|
:user_id{user_id}
|
|
|
|
{}
|
2018-02-15 21:11:28 +01:00
|
|
|
|
|
|
|
user() = default;
|
2017-09-25 05:47:13 +02:00
|
|
|
};
|
2018-02-15 22:08:10 +01: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;
|
|
|
|
};
|