blob: 9bfc071f44304b900b92c78ffad02ca2cb68aa59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
<?php
class User
{
protected $id;
protected $level = 0;
protected $signature = '';
protected $password;
protected $passwordhashed = false;
public function __construct($datas = [])
{
if (!empty($datas)) {
$this->hydrate($datas);
}
}
public function hydrate($datas = [])
{
foreach ($datas as $key => $value) {
$method = 'set' . $key;
if (method_exists($this, $method)) {
$this->$method($value);
}
}
}
public function dry()
{
$array = [];
foreach (get_class_vars(__class__) as $var => $value) {
$array[$var] = $this->$var();
}
return $array;
}
public function id()
{
return $this->id;
}
public function level()
{
return $this->level;
}
public function password($type = 'string')
{
if ($type === 'int') {
return strlen($this->password);
} elseif ($type = 'string') {
return $this->password;
}
}
public function signature()
{
return $this->signature;
}
public function passwordhashed()
{
return $this->passwordhashed;
}
public function setid($id)
{
$id = idclean($id);
if (strlen($id) < Model::MAX_ID_LENGTH and is_string($id)) {
$this->id = $id;
}
}
public function setlevel($level)
{
$level = intval($level);
if ($level >= 0 && $level <= 10) {
$this->level = $level;
}
}
public function setpassword(string $password)
{
if (is_string($password) && !empty($password)) {
$this->password = $password;
}
}
public function setsignature(string $signature)
{
if (strlen($signature) <= 128) {
$this->signature = $signature;
}
}
public function setpasswordhashed($passwordhashed)
{
$this->passwordhashed = boolval($passwordhashed);
}
public function hashpassword()
{
$this->password = password_hash($this->password, PASSWORD_DEFAULT);
$this->passwordhashed = true;
}
public function validpassword()
{
if(is_string($this->password)) {
if(strlen($this->password) >= Model::PASSWORD_MIN_LENGTH && strlen($this->password) <= Model::PASSWORD_MAX_LENGTH) {
return true;
}
}
return false;
}
public function isvisitor()
{
return $this->level === Modeluser::FREE;
}
public function iseditor()
{
return $this->level >= Modeluser::EDITOR;
}
public function isinvite()
{
return $this->level >= Modeluser::INVITE;
}
public function isadmin()
{
return $this->level === Modeluser::ADMIN;
}
}
?>
|