1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2024-12-23 17:12:41 +00:00
Arsse/lib/User/Internal/Driver.php

65 lines
1.9 KiB
PHP
Raw Normal View History

<?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1);
2017-03-28 04:12:12 +00:00
namespace JKingWeb\Arsse\User\Internal;
2018-11-03 17:26:22 +00:00
use JKingWeb\Arsse\Arsse;
use JKingWeb\Arsse\User\Exception;
2018-11-03 17:26:22 +00:00
class Driver implements \JKingWeb\Arsse\User\Driver {
public function __construct() {
}
2017-08-29 14:50:31 +00:00
public static function driverName(): string {
return Arsse::$lang->msg("Driver.User.Internal.Name");
}
public function auth(string $user, string $password): bool {
try {
$hash = $this->userPasswordGet($user);
} catch (Exception $e) {
return false;
2017-07-21 02:40:09 +00:00
}
if ($password==="" && $hash==="") {
return true;
}
return password_verify($password, $hash);
}
public function authorize(string $affectedUser, string $action): bool {
return true;
}
public function userExists(string $user): bool {
return Arsse::$db->userExists($user);
}
public function userAdd(string $user, string $password = null) {
if (isset($password)) {
// only add the user if the password is not null; the user manager will retry with a generated password if null is returned
Arsse::$db->userAdd($user, $password);
}
return $password;
}
public function userRemove(string $user): bool {
return Arsse::$db->userRemove($user);
}
public function userList(): array {
return Arsse::$db->userList();
}
public function userPasswordSet(string $user, string $newPassword = null, string $oldPassword = null) {
// do nothing: the internal database is updated regardless of what the driver does (assuming it does not throw an exception)
return $newPassword;
}
protected function userPasswordGet(string $user): string {
return Arsse::$db->userPasswordGet($user);
}
2017-08-29 14:50:31 +00:00
}