-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathIncidentsController.php
96 lines (79 loc) · 2.99 KB
/
IncidentsController.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
<?php
/* Icinga Notifications Web | (c) 2023 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Notifications\Controllers;
use Icinga\Module\Notifications\Common\Auth;
use Icinga\Module\Notifications\Common\Database;
use Icinga\Module\Notifications\Web\Control\SearchBar\ObjectSuggestions;
use Icinga\Module\Notifications\Model\Incident;
use Icinga\Module\Notifications\Widget\ItemList\IncidentList;
use ipl\Web\Compat\CompatController;
use ipl\Web\Compat\SearchControls;
use ipl\Web\Control\LimitControl;
use ipl\Web\Control\SortControl;
class IncidentsController extends CompatController
{
use Auth;
use SearchControls;
public function indexAction(): void
{
$this->addTitleTab(t('Incidents'));
$incidents = Incident::on(Database::get())
->with('object');
$limitControl = $this->createLimitControl();
$sortControl = $this->createSortControl(
$incidents,
[
'incident.started_at' => t('Opened On'),
'incident.recovered_at' => t('Recovered At'),
'incident.severity desc, incident.started_at' => t('Severity')
]
);
$paginationControl = $this->createPaginationControl($incidents);
$searchBar = $this->createSearchBar($incidents, [
$limitControl->getLimitParam(),
$sortControl->getSortParam(),
]);
if ($searchBar->hasBeenSent() && ! $searchBar->isValid()) {
if ($searchBar->hasBeenSubmitted()) {
$filter = $this->getFilter();
} else {
$this->addControl($searchBar);
$this->sendMultipartUpdate();
return;
}
} else {
$filter = $searchBar->getFilter();
}
$this->applyRestrictions($incidents);
$incidents->filter($filter);
$this->addControl($paginationControl);
$this->addControl($sortControl);
$this->addControl($limitControl);
$this->addControl($searchBar);
$this->content->getAttributes()->add(['class' => 'full-width']);
$this->addContent(new IncidentList($incidents));
if (! $searchBar->hasBeenSubmitted() && $searchBar->hasBeenSent()) {
$this->sendMultipartUpdate();
}
}
public function completeAction(): void
{
$suggestions = new ObjectSuggestions();
$suggestions->setModel(Incident::class);
$suggestions->forRequest($this->getServerRequest());
$this->getDocument()->add($suggestions);
}
public function searchEditorAction(): void
{
$editor = $this->createSearchEditor(Incident::on(Database::get()), [
LimitControl::DEFAULT_LIMIT_PARAM,
SortControl::DEFAULT_SORT_PARAM,
]);
$this->getDocument()->add($editor);
$this->setTitle(t('Adjust Filter'));
}
protected function getPageSize($default)
{
return parent::getPageSize($default ?? 50);
}
}