blob: fa6589ca2a7164b1abfc5db464024e448e381dd8 (
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
|
<?php
class User
{
protected $id;
protected $level = 0;
protected $signature = '';
protected $password;
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 setid($id)
{
if (strlen($id) < Model::MAX_ID_LENGTH and is_string($id)) {
$this->id = idclean($id);
}
}
public function setlevel($level)
{
$level = intval($level);
if($level >= 0 && $level <= 10) {
$this->level = $level;
}
}
public function setpassword(string $password)
{
if(strlen($password) >= 4 && strlen($password) <= 32) {
$this->password = $password;
}
}
public function setsignature(string $signature)
{
if(strlen($signature) <= 128) {
$this->signature = $signature;
}
}
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;
}
}
?>
|