-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathContactForm.php
431 lines (364 loc) · 13.5 KB
/
ContactForm.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
<?php
/* Icinga Notifications Web | (c) 2023 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Notifications\Web\Form;
use Icinga\Exception\Http\HttpNotFoundException;
use Icinga\Module\Notifications\Model\AvailableChannelType;
use Icinga\Module\Notifications\Model\Channel;
use Icinga\Module\Notifications\Model\Contact;
use Icinga\Module\Notifications\Model\Rotation;
use Icinga\Module\Notifications\Model\RotationMember;
use Icinga\Module\Notifications\Model\RuleEscalationRecipient;
use Icinga\Web\Session;
use ipl\Html\Contract\FormSubmitElement;
use ipl\Html\FormElement\FieldsetElement;
use ipl\Sql\Connection;
use ipl\Stdlib\Filter;
use ipl\Validator\CallbackValidator;
use ipl\Validator\EmailAddressValidator;
use ipl\Validator\StringLengthValidator;
use ipl\Web\Common\CsrfCounterMeasure;
use ipl\Web\Compat\CompatForm;
class ContactForm extends CompatForm
{
use CsrfCounterMeasure;
/** @var string Emitted in case the contact should be removed */
public const ON_REMOVE = 'on_remove';
/** @var Connection */
private $db;
/** @var ?string Contact ID*/
private $contactId;
public function __construct(Connection $db)
{
$this->db = $db;
$this->on(self::ON_SENT, function () {
if ($this->hasBeenRemoved()) {
$this->emit(self::ON_REMOVE, [$this]);
}
});
}
/**
* Get whether the user pushed the remove button
*
* @return bool
*/
private function hasBeenRemoved(): bool
{
$btn = $this->getPressedSubmitElement();
$csrf = $this->getElement('CSRFToken');
return $csrf !== null && $csrf->isValid() && $btn !== null && $btn->getName() === 'remove';
}
public function isValidEvent($event)
{
if ($event === self::ON_REMOVE) {
return true;
}
return parent::isValidEvent($event);
}
protected function assemble()
{
$this->addElement($this->createCsrfCounterMeasure(Session::getSession()->getId()));
// Fieldset for contact full name and username
$contact = (new FieldsetElement(
'contact',
[
'label' => $this->translate('Contact'),
]
));
$this->addElement($contact);
$channelOptions = ['' => sprintf(' - %s - ', $this->translate('Please choose'))];
$channelOptions += Channel::fetchChannelNames($this->db);
$contact->addElement(
'text',
'full_name',
[
'label' => $this->translate('Full Name'),
'required' => true
]
)->addElement(
'text',
'username',
[
'label' => $this->translate('Username'),
'validators' => [
new StringLengthValidator(['max' => 254]),
new CallbackValidator(function ($value, $validator) {
$contact = Contact::on($this->db)
->filter(Filter::equal('username', $value));
if ($this->contactId) {
$contact->filter(Filter::unequal('id', $this->contactId));
}
if ($contact->first() !== null) {
$validator->addMessage($this->translate(
'A contact with the same username already exists.'
));
return false;
}
return true;
})
]
]
)->addElement(
'select',
'default_channel_id',
[
'label' => $this->translate('Default Channel'),
'required' => true,
'disabledOptions' => [''],
'options' => $channelOptions
]
);
$this->addAddressElements();
$this->addElement(
'submit',
'submit',
[
'label' => $this->contactId === null ?
$this->translate('Add Contact') :
$this->translate('Save Changes')
]
);
if ($this->contactId !== null) {
/** @var FormSubmitElement $removeButton */
$removeButton = $this->createElement(
'submit',
'remove',
[
'label' => $this->translate('Remove'),
'class' => 'btn-remove',
'formnovalidate' => true
]
);
$this->registerElement($removeButton);
$this->getElement('submit')
->getWrapper()
->prepend($removeButton);
}
}
/**
* Load the contact with given id
*
* @param int $id
*
* @return $this
*
* @throws HttpNotFoundException
*/
public function loadContact(int $id): self
{
$this->contactId = $id;
$this->populate($this->fetchDbValues());
return $this;
}
/**
* Add the new contact
*/
public function addContact(): void
{
$contactInfo = $this->getValues();
$changedAt = time() * 1000;
$this->db->beginTransaction();
$this->db->insert('contact', $contactInfo['contact'] + ['changed_at' => $changedAt]);
$this->contactId = $this->db->lastInsertId();
foreach (array_filter($contactInfo['contact_address']) as $type => $address) {
$address = [
'contact_id' => $this->contactId,
'type' => $type,
'address' => $address,
'changed_at' => $changedAt
];
$this->db->insert('contact_address', $address);
}
$this->db->commitTransaction();
}
/**
* Edit the contact
*
* @return void
*/
public function editContact(): void
{
$this->db->beginTransaction();
$values = $this->getValues();
$storedValues = $this->fetchDbValues();
$changedAt = time() * 1000;
if ($storedValues['contact'] !== $values['contact']) {
$this->db->update(
'contact',
$values['contact'] + ['changed_at' => $changedAt],
['id = ?' => $this->contactId]
);
}
$storedAddresses = $storedValues['contact_address_with_id'];
foreach ($values['contact_address'] as $type => $address) {
if ($address === null) {
if (isset($storedAddresses[$type])) {
$this->db->update(
'contact_address',
['changed_at' => $changedAt, 'deleted' => 'y'],
['id = ?' => $storedAddresses[$type][0], 'deleted = ?' => 'n']
);
}
} elseif (! isset($storedAddresses[$type])) {
$address = [
'contact_id' => $this->contactId,
'type' => $type,
'address' => $address,
'changed_at' => $changedAt
];
$this->db->insert('contact_address', $address);
} elseif ($storedAddresses[$type][1] !== $address) {
$this->db->update(
'contact_address',
['address' => $address, 'changed_at' => $changedAt],
[
'id = ?' => $storedAddresses[$type][0],
'contact_id = ?' => $this->contactId
]
);
}
}
$this->db->commitTransaction();
}
/**
* Remove the contact
*/
public function removeContact(): void
{
$this->db->beginTransaction();
$markAsDeleted = ['changed_at' => time() * 1000, 'deleted' => 'y'];
$updateCondition = ['contact_id = ?' => $this->contactId, 'deleted = ?' => 'n'];
$rotationAndMemberIds = $this->db->fetchPairs(
RotationMember::on($this->db)
->columns(['id', 'rotation_id'])
->filter(Filter::equal('contact_id', $this->contactId))
->assembleSelect()
);
$rotationMemberIds = array_keys($rotationAndMemberIds);
$rotationIds = array_values($rotationAndMemberIds);
$this->db->update('rotation_member', $markAsDeleted + ['position' => null], $updateCondition);
if (! empty($rotationMemberIds)) {
$this->db->update(
'timeperiod_entry',
$markAsDeleted,
['rotation_member_id IN (?)' => $rotationMemberIds, 'deleted = ?' => 'n']
);
}
if (! empty($rotationIds)) {
$rotationIdsWithOtherMembers = $this->db->fetchCol(
RotationMember::on($this->db)
->columns('rotation_id')
->filter(
Filter::all(
Filter::equal('rotation_id', $rotationIds),
Filter::unequal('contact_id', $this->contactId)
)
)->assembleSelect()
);
$toRemoveRotations = array_diff($rotationIds, $rotationIdsWithOtherMembers);
if (! empty($toRemoveRotations)) {
$rotations = Rotation::on($this->db)
->columns(['id', 'schedule_id', 'priority', 'timeperiod.id'])
->filter(Filter::equal('id', $toRemoveRotations));
/** @var Rotation $rotation */
foreach ($rotations as $rotation) {
$rotation->delete();
}
}
}
$escalationIds = $this->db->fetchCol(
RuleEscalationRecipient::on($this->db)
->columns('rule_escalation_id')
->filter(Filter::equal('contact_id', $this->contactId))
->assembleSelect()
);
$this->db->update('rule_escalation_recipient', $markAsDeleted, $updateCondition);
if (! empty($escalationIds)) {
$escalationIdsWithOtherRecipients = $this->db->fetchCol(
RuleEscalationRecipient::on($this->db)
->columns('rule_escalation_id')
->filter(Filter::all(
Filter::equal('rule_escalation_id', $escalationIds),
Filter::unequal('contact_id', $this->contactId)
))->assembleSelect()
);
$toRemoveEscalations = array_diff($escalationIds, $escalationIdsWithOtherRecipients);
if (! empty($toRemoveEscalations)) {
$this->db->update(
'rule_escalation',
$markAsDeleted + ['position' => null],
['id IN (?)' => $toRemoveEscalations]
);
}
}
$this->db->update('contactgroup_member', $markAsDeleted, $updateCondition);
$this->db->update('contact_address', $markAsDeleted, $updateCondition);
$this->db->update('contact', $markAsDeleted + ['username' => null], ['id = ?' => $this->contactId]);
$this->db->commitTransaction();
}
/**
* Get the contact name
*
* @return string
*/
public function getContactName(): string
{
return $this->getElement('contact')->getValue('full_name');
}
/**
* Fetch the values from the database
*
* @return array
*
* @throws HttpNotFoundException
*/
private function fetchDbValues(): array
{
/** @var ?Contact $contact */
$contact = Contact::on($this->db)
->filter(Filter::equal('id', $this->contactId))
->first();
if ($contact === null) {
throw new HttpNotFoundException(t('Contact not found'));
}
$values['contact'] = [
'full_name' => $contact->full_name,
'username' => $contact->username,
'default_channel_id' => (string) $contact->default_channel_id
];
$values['contact_address'] = [];
$values['contact_address_with_id'] = []; //TODO: only used in editContact(), find better solution
foreach ($contact->contact_address as $contactInfo) {
$values['contact_address'][$contactInfo->type] = $contactInfo->address;
$values['contact_address_with_id'][$contactInfo->type] = [$contactInfo->id, $contactInfo->address];
}
return $values;
}
/**
* Add address elements for all existing channel plugins
*
* @return void
*/
private function addAddressElements(): void
{
$plugins = $this->db->fetchPairs(
AvailableChannelType::on($this->db)
->columns(['type', 'name'])
->assembleSelect()
);
if (empty($plugins)) {
return;
}
$address = new FieldsetElement('contact_address', ['label' => $this->translate('Addresses')]);
$this->addElement($address);
foreach ($plugins as $type => $label) {
$element = $this->createElement('text', $type, [
'label' => $label,
'validators' => [new StringLengthValidator(['max' => 255])]
]);
if ($type === 'email') {
$element->addAttributes(['validators' => [new EmailAddressValidator()]]);
}
$address->addElement($element);
}
}
}