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/InternalFunctions.php

55 lines
1.6 KiB
PHP
Raw Normal View History

<?php
declare(strict_types=1);
2017-03-28 04:12:12 +00:00
namespace JKingWeb\Arsse\User\Internal;
use JKingWeb\Arsse\Data;
trait InternalFunctions {
2017-02-16 20:29:42 +00:00
protected $actor = [];
public function __construct() {
$this->db = Data::$db;
}
2017-02-16 20:29:42 +00:00
function auth(string $user, string $password): bool {
if(!Data::$user->exists($user)) return false;
2017-02-16 20:29:42 +00:00
$hash = $this->db->userPasswordGet($user);
if($password==="" && $hash==="") return true;
2017-02-16 20:29:42 +00:00
return password_verify($password, $hash);
}
2017-02-16 20:29:42 +00:00
function userExists(string $user): bool {
return $this->db->userExists($user);
}
function userAdd(string $user, string $password = null): string {
2017-02-16 20:29:42 +00:00
return $this->db->userAdd($user, $password);
}
2017-02-16 20:29:42 +00:00
function userRemove(string $user): bool {
return $this->db->userRemove($user);
}
2017-02-16 20:29:42 +00:00
function userList(string $domain = null): array {
return $this->db->userList($domain);
}
function userPasswordSet(string $user, string $newPassword = null, string $oldPassword = null): string {
2017-02-16 20:29:42 +00:00
return $this->db->userPasswordSet($user, $newPassword);
}
2017-02-16 20:29:42 +00:00
function userPropertiesGet(string $user): array {
return $this->db->userPropertiesGet($user);
}
2017-02-16 20:29:42 +00:00
function userPropertiesSet(string $user, array $properties): array {
return $this->db->userPropertiesSet($user, $properties);
}
2016-11-04 02:54:27 +00:00
2017-02-16 20:29:42 +00:00
function userRightsGet(string $user): int {
return $this->db->userRightsGet($user);
}
2017-02-16 20:29:42 +00:00
function userRightsSet(string $user, int $level): bool {
return $this->db->userRightsSet($user, $level);
}
}