-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContactsController.php
More file actions
178 lines (150 loc) · 5.44 KB
/
Copy pathContactsController.php
File metadata and controls
178 lines (150 loc) · 5.44 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
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
<?php
/* Icinga Notifications Web | (c) 2023 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Notifications\Controllers;
use Icinga\Module\Notifications\Common\Links;
use Icinga\Module\Notifications\View\ContactRenderer;
use Icinga\Module\Notifications\Web\Control\SearchBar\ObjectSuggestions;
use Icinga\Module\Notifications\Common\Database;
use Icinga\Module\Notifications\Model\Contact;
use Icinga\Module\Notifications\Web\Form\ContactForm;
use Icinga\Module\Notifications\Widget\ItemList\ObjectList;
use Icinga\Web\Notification;
use ipl\Sql\Connection;
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\Layout\MinimalItemLayout;
use ipl\Web\Widget\ButtonLink;
class ContactsController extends CompatController
{
use SearchControls;
/** @var Connection */
private $db;
/** @var Filter\Rule Filter from query string parameters */
private $filter;
public function init()
{
$this->assertPermission('notifications/config/contacts');
$this->db = Database::get();
}
public function indexAction()
{
$contacts = Contact::on($this->db);
$limitControl = $this->createLimitControl();
$paginationControl = $this->createPaginationControl($contacts);
$sortControl = $this->createSortControl(
$contacts,
[
'full_name' => t('Full Name'),
'changed_at' => t('Changed At')
]
);
$searchBar = $this->createSearchBar(
$contacts,
[
$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();
}
$contacts->filter($filter);
$this->addControl($paginationControl);
$this->addControl($sortControl);
$this->addControl($limitControl);
$this->addControl($searchBar);
$this->addContent(
(new ButtonLink(t('Add Contact'), Links::contactAdd(), 'plus'))
->setBaseTarget('_next')
->addAttributes(['class' => 'add-new-component'])
);
$this->addContent(
(new ObjectList($contacts, new ContactRenderer()))
->setItemLayoutClass(MinimalItemLayout::class)
);
if (! $searchBar->hasBeenSubmitted() && $searchBar->hasBeenSent()) {
$this->sendMultipartUpdate();
}
$this->setAutorefreshInterval(30);
$this->setTitle($this->translate('Contacts'));
$this->getTabs()->activate('contacts');
}
public function addAction(): void
{
$this->addTitleTab(t('Add Contact'));
$form = (new ContactForm($this->db))
->on(ContactForm::ON_SUCCESS, function (ContactForm $form) {
$form->addContact();
Notification::success(t('New contact has successfully been added'));
$this->redirectNow(Links::contacts());
})->handleRequest($this->getServerRequest());
$this->addContent($form);
}
public function completeAction(): void
{
$suggestions = new ObjectSuggestions();
$suggestions->setModel(Contact::class);
$suggestions->forRequest($this->getServerRequest());
$this->getDocument()->add($suggestions);
}
public function searchEditorAction(): void
{
$editor = $this->createSearchEditor(
Contact::on($this->db),
[
LimitControl::DEFAULT_LIMIT_PARAM,
SortControl::DEFAULT_SORT_PARAM,
]
);
$this->getDocument()->add($editor);
$this->setTitle($this->translate('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;
}
public function getTabs()
{
if ($this->getRequest()->getActionName() === 'index') {
return parent::getTabs()
->add('schedules', [
'label' => $this->translate('Schedules'),
'url' => Links::schedules(),
'baseTarget' => '_main'
])->add('event-rules', [
'label' => $this->translate('Event Rules'),
'url' => Links::eventRules(),
'baseTarget' => '_main'
])->add('contacts', [
'label' => $this->translate('Contacts'),
'url' => Links::contacts(),
'baseTarget' => '_main'
])->add('contact-groups', [
'label' => $this->translate('Contact Groups'),
'url' => Links::contactGroups(),
'baseTarget' => '_main'
]);
}
return parent::getTabs();
}
}