Newer
Older
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
<?php
namespace App\Entity;
use App\Listeners\UserListener;
use App\Repository\UserHistoryRepository;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Symfony\Component\Serializer\Annotation\Groups;
#[ORM\Entity(repositoryClass: UserHistoryRepository::class)]
class UserHistory
{
public const TYPE_CREATE = 'create';
public const TYPE_UPDATE = 'update';
public const TYPE_DELETE = 'delete';
public const TYPE_RECOVERY = 'recovery';
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[ORM\ManyToOne(inversedBy: 'userHistories')]
#[ORM\JoinColumn(nullable: false)]
private ?User $related_user = null;
#[ORM\Column(type: Types::DATETIME_MUTABLE)]
private ?\DateTimeInterface $date = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $field = null;
#[ORM\Column(length: 255)]
private ?string $type = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $value = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $old_value = null;
public function getId(): ?int
{
return $this->id;
}
public function getRelatedUser(): ?User
{
return $this->related_user;
}
public function setRelatedUser(?User $related_user): static
{
$this->related_user = $related_user;
return $this;
}
#[Groups(['all', 'profile'])]
public function getDate(): ?\DateTimeInterface
{
return $this->date;
}
public function setDate(\DateTimeInterface $date): static
{
$this->date = $date;
return $this;
}
#[Groups(['all', 'profile'])]
public function getField(): ?string
{
return $this->field;
}
public function setField(?string $field): static
{
$this->field = $field;
return $this;
}
#[Groups(['all', 'profile'])]
public function getType(): ?string
{
return $this->type;
}
public function setType(string $type): static
{
$this->type = $type;
return $this;
}
#[Groups(['all', 'profile'])]
public function getValue(): ?string
{
return $this->value;
}
public function setValue(?string $value): static
{
$this->value = $value;
return $this;
}
#[Groups(['all', 'profile'])]
public function getOldValue(): ?string
{
return $this->old_value;
}
public function setOldValue(?string $old_value): static
{
$this->old_value = $old_value;
return $this;
}
#[Groups(['all', 'profile'])]
public function getText(): ?string
{
$text = '';
$type = $this->getType();
switch ($field = $this->getField()) {
case 'confirm':
switch ($type) {
case self::TYPE_CREATE:
$text = 'Почта подтверждена';
break;
case self::TYPE_DELETE:
$text = 'Подтверждение почты сброшено';
break;
}
break;
case 'user':
switch ($type) {
case self::TYPE_CREATE:
$text = 'Пользователь зарегистрирован';
break;
case self::TYPE_UPDATE:
$text = 'Пользователь обновлен';
break;
case self::TYPE_RECOVERY:
$text = 'Пользователь восстановлен';
break;
case self::TYPE_DELETE:
$text = 'Пользователь удален';
break;
}
break;
default:
if (isset(UserListener::HISTORY_FIELDS[$field])) {
switch ($type) {
case self::TYPE_CREATE:
$text = 'Поле "' . UserListener::HISTORY_FIELDS[$field] . '" заполнено';
break;
case self::TYPE_UPDATE:
$text = 'Поле "' . UserListener::HISTORY_FIELDS[$field] . '" обновлено';
break;
case self::TYPE_DELETE:
$text = 'Поле "' . UserListener::HISTORY_FIELDS[$field] . '" удалено ';
break;
}
}
break;
}
$time = '';
if ($date = $this->getDate()) {
$time = $date->format('d.m.Y H:i:s') . ' - ';
}
return $time . $text;
}
}