mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
f902346b6c
- RuntimeData has now been replaced by a single static Data class - The Data class has a load() method which fills the same role as the constructor of RuntimeData - The static Lang class is now an instantiable class and is a member of Data - All tests have been adjusted and pass - The Exception tests no longer require convoluted workarounds: a simple mock for Data::$l suffices; Lang tests also use a mock to prevent loops now instead of using a workaround
68 lines
No EOL
2 KiB
PHP
68 lines
No EOL
2 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse\Test\User;
|
|
use JKingWeb\Arsse\Lang;
|
|
use JKingWeb\Arsse\User\Driver;
|
|
use JKingWeb\Arsse\User\Exception;
|
|
use JKingWeb\Arsse\User\ExceptionAuthz;
|
|
use PasswordGenerator\Generator as PassGen;
|
|
|
|
abstract class DriverSkeleton {
|
|
|
|
protected $db = [];
|
|
|
|
function userExists(string $user): bool {
|
|
return array_key_exists($user, $this->db);
|
|
}
|
|
|
|
function userAdd(string $user, string $password = null): string {
|
|
$u = [
|
|
'password' => $password ? password_hash($password, \PASSWORD_DEFAULT) : "",
|
|
'rights' => Driver::RIGHTS_NONE,
|
|
];
|
|
$this->db[$user] = $u;
|
|
return $password;
|
|
}
|
|
|
|
function userRemove(string $user): bool {
|
|
unset($this->db[$user]);
|
|
return true;
|
|
}
|
|
|
|
function userList(string $domain = null): array {
|
|
$list = array_keys($this->db);
|
|
if($domain===null) {
|
|
return $list;
|
|
} else {
|
|
$suffix = '@'.$domain;
|
|
$len = -1 * strlen($suffix);
|
|
return array_filter($list, function($user) use($suffix, $len) {
|
|
return substr_compare($user, $suffix, $len);
|
|
});
|
|
}
|
|
}
|
|
|
|
function userPasswordSet(string $user, string $newPassword = null, string $oldPassword = null): string {
|
|
$this->db[$user]['password'] = password_hash($newPassword, \PASSWORD_DEFAULT);
|
|
return $newPassword;
|
|
}
|
|
|
|
function userPropertiesGet(string $user): array {
|
|
$out = $this->db[$user];
|
|
return $out;
|
|
}
|
|
|
|
function userPropertiesSet(string $user, array $properties): array {
|
|
$this->db[$user] = array_merge($this->db[$user], $properties);
|
|
return $this->userPropertiesGet($user);
|
|
}
|
|
|
|
function userRightsGet(string $user): int {
|
|
return $this->db[$user]['rights'];
|
|
}
|
|
|
|
function userRightsSet(string $user, int $level): bool {
|
|
$this->db[$user]['rights'] = $level;
|
|
return true;
|
|
}
|
|
} |