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;
|
|
|
|
}
|
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
|
|
|
{
|
2017-09-25 03:05:42 +02:00
|
|
|
using id = m::id::user;
|
|
|
|
|
|
|
|
id user_id;
|
2017-09-08 11:32:49 +02:00
|
|
|
|
2017-09-25 05:47:13 +02:00
|
|
|
static room accounts;
|
2017-09-26 06:42:07 +02:00
|
|
|
static room sessions;
|
2017-08-18 20:19:13 +02:00
|
|
|
|
2017-09-25 05:47:13 +02: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}
|
|
|
|
{}
|
|
|
|
};
|