-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEventsController.php
More file actions
148 lines (120 loc) · 4.39 KB
/
Copy pathEventsController.php
File metadata and controls
148 lines (120 loc) · 4.39 KB
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
<?php
// SPDX-FileCopyrightText: 2023 Icinga GmbH <https://icinga.com>
// SPDX-License-Identifier: GPL-3.0-or-later
namespace Icinga\Module\Notifications\Controllers;
use Icinga\Module\Notifications\Common\Auth;
use Icinga\Module\Notifications\Common\Database;
use Icinga\Module\Notifications\Hook\ObjectsRendererHook;
use Icinga\Module\Notifications\Web\Control\SearchBar\ObjectSuggestions;
use Icinga\Module\Notifications\Model\Event;
use Icinga\Module\Notifications\Widget\ItemList\LoadMoreObjectList;
use ipl\Stdlib\Filter;
use ipl\Web\Compat\CompatController;
use ipl\Web\Compat\SearchControls;
use ipl\Web\Control\LimitControl;
use ipl\Web\Control\SortControl;
use ipl\Web\Filter\QueryString;
use ipl\Web\Url;
use ipl\Web\Widget\ItemList;
use ipl\Web\Widget\ListItem;
class EventsController extends CompatController
{
use Auth;
use SearchControls;
/** @var Filter\Rule Filter from query string parameters */
private $filter;
public function indexAction(): void
{
$this->addTitleTab(t('Events'));
$compact = $this->view->compact;
$events = Event::on(Database::get())
->with(['object', 'object.source', 'incident'])
->withColumns('object.id_tags');
$limitControl = $this->createLimitControl();
$sortControl = $this->createSortControl(
$events,
['event.time desc' => t('Received On')]
);
$paginationControl = $this->createPaginationControl($events);
$before = $this->params->shift('before', time());
$preserveParams = [
$limitControl->getLimitParam(),
$sortControl->getSortParam(),
];
$searchBar = $this->createSearchBar($events, $preserveParams);
if ($searchBar->hasBeenSent() && ! $searchBar->isValid()) {
if ($searchBar->hasBeenSubmitted()) {
$filter = $this->getFilter();
} else {
$this->addControl($searchBar);
$this->sendMultipartUpdate();
return;
}
} else {
$filter = $searchBar->getFilter();
}
$events->peekAhead();
$page = $paginationControl->getCurrentPageNumber();
if ($page > 1 && ! $compact) {
$events->resetOffset();
$events->limit($page * $limitControl->getLimit());
}
$this->applyRestrictions($events);
$events->filter($filter);
$events->filter(Filter::lessThanOrEqual('time', $before));
$this->addControl($sortControl);
$this->addControl($limitControl);
$this->addControl($searchBar);
$url = Url::fromRequest()
->onlyWith($preserveParams)
->setFilter($filter);
$eventList = (new LoadMoreObjectList($events->execute()))
->setPageSize($limitControl->getLimit())
->setLoadMoreUrl($url->setParam('before', $before))
->on(ItemList::ON_ITEM_ADD, function (ListItem $item, Event $data) {
ObjectsRendererHook::register($data->object);
})
->on(ItemList::ON_ASSEMBLED, function () {
ObjectsRendererHook::load();
});
if ($compact) {
$eventList->setPageNumber($page);
}
if ($compact && $page > 1) {
$this->document->addFrom($eventList);
} else {
$this->addContent($eventList);
}
if (! $searchBar->hasBeenSubmitted() && $searchBar->hasBeenSent()) {
$this->sendMultipartUpdate();
}
}
public function completeAction(): void
{
$suggestions = new ObjectSuggestions();
$suggestions->setModel(Event::class);
$suggestions->forRequest($this->getServerRequest());
$this->getDocument()->add($suggestions);
}
public function searchEditorAction(): void
{
$editor = $this->createSearchEditor(Event::on(Database::get()), [
LimitControl::DEFAULT_LIMIT_PARAM,
SortControl::DEFAULT_SORT_PARAM,
]);
$this->getDocument()->add($editor);
$this->setTitle(t('Adjust Filter'));
}
/**
* Get the filter created from query string parameters
*
* @return Filter\Rule
*/
protected function getFilter(): Filter\Rule
{
if ($this->filter === null) {
$this->filter = QueryString::parse((string) $this->params);
}
return $this->filter;
}
}