-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUser.php
168 lines (145 loc) · 3.69 KB
/
User.php
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
<?php declare(strict_types=1);
namespace App;
class User implements \JsonSerializable
{
static public function fromArray(array $source): User
{
return new User(
$source['id'],
$source['name'],
$source['email'],
$source['is_admin'] ?? false,
$source['birth_date'] ?? null,
);
}
static public function fromJson(string $json): User
{
$source = json_decode($json, true);
if (false === $source) {
throw new \InvalidArgumentException('JSON decode error: '.json_last_error_msg());
}
if (!is_array($source)) {
throw new \InvalidArgumentException('Your JSON didnt decoded to an array');
}
return User::fromArray($source);
}
private $id;
private $name;
private $email;
private $isAdmin;
private $birthDate;
public function __construct(
int $id,
string $name,
string $email,
bool $isAdmin = false,
?\DateTime $birthDate = null
) {
$this->id = $id;
$this->name = $name;
$this->email = $email;
$this->isAdmin = $isAdmin;
$this->birthDate = $birthDate;
}
public function getId(): int
{
return $this->id;
}
public function withId(int $id): User
{
return new User(
$id,
$this->name,
$this->email,
$this->isAdmin,
$this->birthDate
);
}
public function getName(): string
{
return $this->name;
}
public function withName(string $name): User
{
return new User(
$this->id,
$name,
$this->email,
$this->isAdmin,
$this->birthDate
);
}
public function getEmail(): string
{
return $this->email;
}
public function withEmail(string $email): User
{
return new User(
$this->id,
$this->name,
$email,
$this->isAdmin,
$this->birthDate
);
}
public function getIsAdmin(): bool
{
return $this->isAdmin;
}
public function withIsAdmin(bool $isAdmin): User
{
return new User(
$this->id,
$this->name,
$this->email,
$isAdmin,
$this->birthDate
);
}
public function getBirthDate(): ?\DateTime
{
return $this->birthDate;
}
public function withBirthDate(?\DateTime $birthDate): User
{
return new User(
$this->id,
$this->name,
$this->email,
$this->isAdmin,
$birthDate
);
}
public function toArray(): array
{
return [
'id' => $this->id,
'name' => $this->name,
'email' => $this->email,
'is_admin' => $this->isAdmin,
'birth_date' => $this->birthDate,
];
}
public function toString(): string
{
$id = json_encode($this->id);
$name = json_encode($this->name);
$email = json_encode($this->email);
$isAdmin = json_encode($this->isAdmin);
$birthDate = json_encode($this->birthDate);
return "User(\n\tid => {$id};\n\tname => {$name};\n\temail => {$email};\n\tisAdmin => {$isAdmin};\n\tbirthDate => {$birthDate};\n)";
}
public function jsonSerialize()
{
return $this->toArray();
}
public function __clone()
{
$this->id = $this->id;
$this->name = $this->name;
$this->email = $this->email;
$this->isAdmin = $this->isAdmin;
$this->birthDate = clone $this->birthDate;
}
}