oms-Admin/Models/AccountMapper.php

232 lines
7.5 KiB
PHP
Executable File

<?php
/**
* Orange Management
*
* PHP Version 7.4
*
* @package Modules\Admin\Models
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace Modules\Admin\Models;
use phpOMS\Account\AccountStatus;
use phpOMS\Auth\LoginReturnType;
use phpOMS\DataStorage\Database\DataMapperAbstract;
use phpOMS\DataStorage\Database\Query\Builder;
use phpOMS\DataStorage\Database\RelationType;
/**
* Account mapper class.
*
* @package Modules\Admin\Models
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0
*/
final class AccountMapper extends DataMapperAbstract
{
/**
* Columns.
*
* @var array<string, array<string, bool|string|array>>
* @since 1.0.0
*/
protected static array $columns = [
'account_id' => ['name' => 'account_id', 'type' => 'int', 'internal' => 'id'],
'account_status' => ['name' => 'account_status', 'type' => 'int', 'internal' => 'status'],
'account_type' => ['name' => 'account_type', 'type' => 'int', 'internal' => 'type'],
'account_login' => ['name' => 'account_login', 'type' => 'string', 'internal' => 'login', 'autocomplete' => true],
'account_name1' => ['name' => 'account_name1', 'type' => 'string', 'internal' => 'name1', 'autocomplete' => true, 'annotations' => ['gdpr' => true]],
'account_name2' => ['name' => 'account_name2', 'type' => 'string', 'internal' => 'name2', 'autocomplete' => true, 'annotations' => ['gdpr' => true]],
'account_name3' => ['name' => 'account_name3', 'type' => 'string', 'internal' => 'name3', 'autocomplete' => true, 'annotations' => ['gdpr' => true]],
'account_password' => ['name' => 'account_password', 'type' => 'string', 'internal' => 'password', 'writeonly' => true],
'account_email' => ['name' => 'account_email', 'type' => 'string', 'internal' => 'email', 'autocomplete' => true, 'annotations' => ['gdpr' => true]],
'account_tries' => ['name' => 'account_tries', 'type' => 'int', 'internal' => 'tries'],
'account_lactive' => ['name' => 'account_lactive', 'type' => 'DateTime', 'internal' => 'lastActive'],
'account_localization' => ['name' => 'account_localization', 'type' => 'int', 'internal' => 'localization'],
'account_created_at' => ['name' => 'account_created_at', 'type' => 'DateTime', 'internal' => 'createdAt', 'readonly' => true],
];
/**
* Has one relation.
*
* @var array<string, array{mapper:string, self:string, by?:string, column?:string}>
* @since 1.0.0
*/
protected static array $ownsOne = [
'localization' => [
'mapper' => LocalizationMapper::class,
'self' => 'account_localization',
],
];
/**
* Has many relation.
*
* @var array<string, array{mapper:string, table:string, self?:?string, external?:?string, column?:string}>
* @since 1.0.0
*/
protected static array $hasMany = [
'groups' => [
'mapper' => GroupMapper::class,
'table' => 'account_group',
'external' => 'account_group_account',
'self' => 'account_group_group',
],
];
/**
* Model to use by the mapper.
*
* @var string
* @since 1.0.0
*/
protected static string $model = Account::class;
/**
* Primary table.
*
* @var string
* @since 1.0.0
*/
protected static string $table = 'account';
/**
* Primary field name.
*
* @var string
* @since 1.0.0
*/
protected static string $primaryField = 'account_id';
/**
* Created at column
*
* @var string
* @since 1.0.0
*/
protected static string $createdAt = 'account_created_at';
/**
* Get account with permissions
*
* @param int $id Account id
*
* @return Account
*
* @todo Orange-Management/oms-Admin#11
* [AccountMapper] Create test for getWithPermission()
*
* @since 1.0.0
*/
public static function getWithPermissions(int $id) : Account
{
$account = self::get($id);
$groupPermissions = GroupPermissionMapper::getFor(
\array_keys($account->getGroups()),
'group',
RelationType::ALL,
2
);
if (\is_array($groupPermissions)) {
foreach ($groupPermissions as $permission) {
$account->addPermissions(\is_array($permission) ? $permission : [$permission]);
}
} else {
$account->addPermissions([$groupPermissions]);
}
$accountPermissions = AccountPermissionMapper::getFor($id, 'account', RelationType::ALL, 2);
if (\is_array($accountPermissions)) {
foreach ($accountPermissions as $permission) {
$account->addPermissions(\is_array($permission) ? $permission : [$permission]);
}
} else {
$account->addPermissions([$accountPermissions]);
}
return $account;
}
/**
* Login user.
*
* @param string $login Username
* @param string $password Password
*
* @return int Login code
*
* @since 1.0.0
*/
public static function login(string $login, string $password) : int
{
if (empty($password)) {
return LoginReturnType::WRONG_PASSWORD;
}
try {
$result = null;
$query = new Builder(self::$db);
$result = $query->select('account_id', 'account_login', 'account_password', 'account_password_temp', 'account_tries', 'account_status')
->from('account')
->where('account_login', '=', $login)
->execute()
->fetchAll();
if (!isset($result[0])) {
return LoginReturnType::WRONG_USERNAME;
}
$result = $result[0];
// @todo: implement account tries
if ($result['account_tries'] <= 0) {
return LoginReturnType::WRONG_INPUT_EXCEEDED;
}
if ($result['account_status'] !== AccountStatus::ACTIVE) {
return LoginReturnType::INACTIVE;
}
if (empty($result['account_password'])) {
return LoginReturnType::EMPTY_PASSWORD;
}
if (\password_verify($password, $result['account_password'] ?? '')) {
$query->update('account')
->set(['account_lactive' => new \DateTime('now')])
->where('account_login', '=', $login)
->execute();
return $result['account_id'];
}
if (!empty($result['account_password_temp'])
&& \password_verify($password, $result['account_password_temp'] ?? '')
) {
$query->update('account')
->set([
'account_password_temp' => '',
'account_lactive' => new \DateTime('now'),
])
->where('account_login', '=', $login)
->execute();
return $result['account_id'];
}
return LoginReturnType::WRONG_PASSWORD;
} catch (\Exception $e) {
return LoginReturnType::FAILURE;
}
}
}