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 432 433 434 435 436 437 438 439 440 441
|
<?php declare(strict_types = 0);
/*
** Zabbix
** Copyright (C) 2001-2023 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
class CRouter {
/**
* Layout used for view rendering.
*
* @var string
*/
private $layout = null;
/**
* Controller class for action handling.
*
* @var string
*/
private $controller = null;
/**
* View used to generate HTML, CSV, JSON and other content.
*
* @var string
*/
private $view = null;
/**
* Unique action (request) identifier.
*
* @var string
*/
private $action = null;
/**
* Mapping between action and corresponding controller, layout and view.
*
* @var array
*/
private $routes = [
// action controller layout view
'action.operation.get' => ['CControllerActionOperationGet', 'layout.json', null],
'action.operation.validate' => ['CControllerActionOperationValidate', 'layout.json', null],
'auditlog.list' => ['CControllerAuditLogList', 'layout.htmlpage', 'reports.auditlog.list'],
'audit.settings.edit' => ['CControllerAuditSettingsEdit', 'layout.htmlpage', 'administration.audit.settings.edit'],
'audit.settings.update' => ['CControllerAuditSettingsUpdate', null, null],
'authentication.edit' => ['CControllerAuthenticationEdit', 'layout.htmlpage', 'administration.authentication.edit'],
'authentication.update' => ['CControllerAuthenticationUpdate', null, null],
'autoreg.edit' => ['CControllerAutoregEdit', 'layout.htmlpage', 'administration.autoreg.edit'],
'autoreg.update' => ['CControllerAutoregUpdate', null, null],
'charts.view' => ['CControllerChartsView', 'layout.htmlpage', 'monitoring.charts.view'],
'charts.view.json' => ['CControllerChartsViewJson', 'layout.json', 'monitoring.charts.view.json'],
'correlation.condition.add' => ['CControllerCorrelationConditionAdd', null, null],
'correlation.create' => ['CControllerCorrelationCreate', null, null],
'correlation.delete' => ['CControllerCorrelationDelete', null, null],
'correlation.disable' => ['CControllerCorrelationDisable', null, null],
'correlation.edit' => ['CControllerCorrelationEdit', 'layout.htmlpage', 'configuration.correlation.edit'],
'correlation.enable' => ['CControllerCorrelationEnable', null, null],
'correlation.list' => ['CControllerCorrelationList', 'layout.htmlpage', 'configuration.correlation.list'],
'correlation.update' => ['CControllerCorrelationUpdate', null, null],
'dashboard.delete' => ['CControllerDashboardDelete', null, null],
'dashboard.list' => ['CControllerDashboardList', 'layout.htmlpage', 'monitoring.dashboard.list'],
'dashboard.page.properties.check' => ['CControllerDashboardPagePropertiesCheck', 'layout.json', null],
'dashboard.page.properties.edit' => ['CControllerDashboardPagePropertiesEdit', 'layout.json', 'dashboard.page.properties.edit'],
'dashboard.print' => ['CControllerDashboardPrint', 'layout.htmlpage', 'monitoring.dashboard.print'],
'dashboard.properties.check' => ['CControllerDashboardPropertiesCheck', 'layout.json', null],
'dashboard.properties.edit' => ['CControllerDashboardPropertiesEdit', 'layout.json', 'dashboard.properties.edit'],
'dashboard.share.update' => ['CControllerDashboardShareUpdate', 'layout.json', null],
'dashboard.update' => ['CControllerDashboardUpdate', 'layout.json', null],
'dashboard.view' => ['CControllerDashboardView', 'layout.htmlpage', 'monitoring.dashboard.view'],
'dashboard.widget.check' => ['CControllerDashboardWidgetCheck', 'layout.json', null],
'dashboard.widget.configure' => ['CControllerDashboardWidgetConfigure', 'layout.json', null],
'dashboard.widget.edit' => ['CControllerDashboardWidgetEdit', 'layout.json', 'monitoring.dashboard.widget.edit'],
'dashboard.widget.rfrate' => ['CControllerDashboardWidgetRfRate', 'layout.json', null],
'dashboard.widgets.sanitize' => ['CControllerDashboardWidgetsSanitize', 'layout.json', null],
'discovery.create' => ['CControllerDiscoveryCreate', null, null],
'discovery.delete' => ['CControllerDiscoveryDelete', null, null],
'discovery.disable' => ['CControllerDiscoveryDisable', null, null],
'discovery.edit' => ['CControllerDiscoveryEdit', 'layout.htmlpage', 'configuration.discovery.edit'],
'discovery.enable' => ['CControllerDiscoveryEnable', null, null],
'discovery.list' => ['CControllerDiscoveryList', 'layout.htmlpage', 'configuration.discovery.list'],
'discovery.update' => ['CControllerDiscoveryUpdate', null, null],
'discovery.view' => ['CControllerDiscoveryView', 'layout.htmlpage', 'monitoring.discovery.view'],
'export.hosts' => ['CControllerExport', 'layout.export', null],
'export.mediatypes' => ['CControllerExport', 'layout.export', null],
'export.sysmaps' => ['CControllerExport', 'layout.export', null],
'export.templates' => ['CControllerExport', 'layout.export', null],
'export.valuemaps' => ['CControllerExport', 'layout.export', null],
'favourite.create' => ['CControllerFavouriteCreate', 'layout.javascript', null],
'favourite.delete' => ['CControllerFavouriteDelete', 'layout.javascript', null],
'geomaps.edit' => ['CControllerGeomapsEdit', 'layout.htmlpage', 'administration.geomaps.edit'],
'geomaps.update' => ['CControllerGeomapsUpdate', null, null],
'gui.edit' => ['CControllerGuiEdit', 'layout.htmlpage', 'administration.gui.edit'],
'gui.update' => ['CControllerGuiUpdate', null, null],
'hintbox.actionlist' => ['CControllerHintboxActionlist', 'layout.json', 'hintbox.actionlist'],
'hintbox.eventlist' => ['CControllerHintboxEventlist', 'layout.json', 'hintbox.eventlist'],
'host.dashboard.view' => ['CControllerHostDashboardView', 'layout.htmlpage', 'monitoring.host.dashboard.view'],
'host.list' => ['CControllerHostList', 'layout.htmlpage', 'configuration.host.list'],
'host.massdelete' => ['CControllerHostMassDelete', 'layout.json', null],
'host.create' => ['CControllerHostCreate', 'layout.json', null],
'host.edit' => ['CControllerHostEdit', 'layout.htmlpage', 'configuration.host.edit'],
'host.update' => ['CControllerHostUpdate', 'layout.json', null],
'host.view' => ['CControllerHostView', 'layout.htmlpage', 'monitoring.host.view'],
'host.view.refresh' => ['CControllerHostViewRefresh', 'layout.json', 'monitoring.host.view.refresh'],
'hostmacros.list' => ['CControllerHostMacrosList', 'layout.json', 'hostmacros.list'],
'housekeeping.edit' => ['CControllerHousekeepingEdit', 'layout.htmlpage', 'administration.housekeeping.edit'],
'housekeeping.update' => ['CControllerHousekeepingUpdate', null, null],
'iconmap.create' => ['CControllerIconMapCreate', null, null],
'iconmap.delete' => ['CControllerIconMapDelete', null, null],
'iconmap.edit' => ['CControllerIconMapEdit', 'layout.htmlpage', 'administration.iconmap.edit'],
'iconmap.list' => ['CControllerIconMapList', 'layout.htmlpage', 'administration.iconmap.list'],
'iconmap.update' => ['CControllerIconMapUpdate', null, null],
'image.create' => ['CControllerImageCreate', null, null],
'image.delete' => ['CControllerImageDelete', null, null],
'image.edit' => ['CControllerImageEdit', 'layout.htmlpage', 'administration.image.edit'],
'image.list' => ['CControllerImageList', 'layout.htmlpage', 'administration.image.list'],
'image.update' => ['CControllerImageUpdate', null, null],
'latest.view' => ['CControllerLatestView', 'layout.htmlpage', 'monitoring.latest.view'],
'latest.view.refresh' => ['CControllerLatestViewRefresh', 'layout.json', 'monitoring.latest.view.refresh'],
'macros.edit' => ['CControllerMacrosEdit', 'layout.htmlpage', 'administration.macros.edit'],
'macros.update' => ['CControllerMacrosUpdate', null, null],
'map.view' => ['CControllerMapView', 'layout.htmlpage', 'monitoring.map.view'],
'mediatype.create' => ['CControllerMediatypeCreate', null, null],
'mediatype.delete' => ['CControllerMediatypeDelete', null, null],
'mediatype.disable' => ['CControllerMediatypeDisable', null, null],
'mediatype.edit' => ['CControllerMediatypeEdit', 'layout.htmlpage', 'administration.mediatype.edit'],
'mediatype.enable' => ['CControllerMediatypeEnable', null, null],
'mediatype.list' => ['CControllerMediatypeList', 'layout.htmlpage', 'administration.mediatype.list'],
'mediatype.update' => ['CControllerMediatypeUpdate', null, null],
'menu.popup' => ['CControllerMenuPopup', 'layout.json', null],
'miscconfig.edit' => ['CControllerMiscConfigEdit', 'layout.htmlpage', 'administration.miscconfig.edit'],
'miscconfig.update' => ['CControllerMiscConfigUpdate', null, null],
'module.disable' => ['CControllerModuleUpdate', null, null],
'module.edit' => ['CControllerModuleEdit', 'layout.htmlpage', 'administration.module.edit'],
'module.enable' => ['CControllerModuleUpdate', null, null],
'module.list' => ['CControllerModuleList', 'layout.htmlpage', 'administration.module.list'],
'module.scan' => ['CControllerModuleScan', null, null],
'module.update' => ['CControllerModuleUpdate', null, null],
'notifications.get' => ['CControllerNotificationsGet', 'layout.json', null],
'notifications.mute' => ['CControllerNotificationsMute', 'layout.json', null],
'notifications.read' => ['CControllerNotificationsRead', 'layout.json', null],
'popup' => ['CControllerPopup', 'layout.htmlpage', 'popup.view'],
'popup.acknowledge.edit' => ['CControllerPopupAcknowledgeEdit', 'layout.json', 'popup.acknowledge.edit'],
'popup.acknowledge.create' => ['CControllerPopupAcknowledgeCreate', 'layout.json', null],
'popup.condition.actions' => ['CControllerPopupConditionActions', 'layout.json', 'popup.condition.common'],
'popup.condition.event.corr' => ['CControllerPopupConditionEventCorr', 'layout.json', 'popup.condition.common'],
'popup.condition.operations' => ['CControllerPopupConditionOperations', 'layout.json', 'popup.condition.common'],
'popup.dashboard.share.edit' => ['CControllerPopupDashboardShareEdit', 'layout.json', 'popup.dashboard.share.edit'],
'popup.discovery.check' => ['CControllerPopupDiscoveryCheck', 'layout.json', 'popup.discovery.check'],
'popup.generic' => ['CControllerPopupGeneric', 'layout.json', 'popup.generic'],
'popup.host.edit' => ['CControllerHostEdit', 'layout.json', 'popup.host.edit'],
'popup.httpstep' => ['CControllerPopupHttpStep', 'layout.json', 'popup.httpstep'],
'popup.import' => ['CControllerPopupImport', 'layout.json', 'popup.import'],
'popup.import.compare' => ['CControllerPopupImportCompare', 'layout.json', 'popup.import.compare'],
'popup.itemtest.edit' => ['CControllerPopupItemTestEdit', 'layout.json', 'popup.itemtestedit.view'],
'popup.itemtest.getvalue' => ['CControllerPopupItemTestGetValue', 'layout.json', null],
'popup.itemtest.send' => ['CControllerPopupItemTestSend', 'layout.json', null],
'popup.lldoperation' => ['CControllerPopupLldOperation', 'layout.json', 'popup.lldoperation'],
'popup.lldoverride' => ['CControllerPopupLldOverride', 'layout.json', 'popup.lldoverride'],
'popup.maintenance.period' => ['CControllerPopupMaintenancePeriod', 'layout.json', 'popup.maintenance.period'],
'popup.media' => ['CControllerPopupMedia', 'layout.json', 'popup.media'],
'popup.mediatype.message' => ['CControllerPopupMediatypeMessage', 'layout.json', 'popup.mediatype.message'],
'popup.mediatypetest.edit' => ['CControllerPopupMediatypeTestEdit', 'layout.json', 'popup.mediatypetest.edit'],
'popup.mediatypetest.send' => ['CControllerPopupMediatypeTestSend', 'layout.json', null],
'popup.scheduledreport.create' => ['CControllerPopupScheduledReportCreate', 'layout.json', null],
'popup.scheduledreport.edit' => ['CControllerPopupScheduledReportEdit', 'layout.json', 'popup.scheduledreport.edit'],
'popup.scheduledreport.list' => ['CControllerPopupScheduledReportList', 'layout.json', 'popup.scheduledreport.list'],
'popup.scheduledreport.subscription.edit' => ['CControllerPopupScheduledReportSubscriptionEdit', 'layout.json', 'popup.scheduledreport.subscription'],
'popup.scheduledreport.test' => ['CControllerPopupScheduledReportTest', 'layout.json', 'popup.scheduledreport.test'],
'popup.scriptexec' => ['CControllerPopupScriptExec', 'layout.json', 'popup.scriptexec'],
'popup.service.edit' => ['CControllerPopupServiceEdit', 'layout.json', 'popup.service.edit'],
'popup.service.statusrule.edit' => ['CControllerPopupServiceStatusRuleEdit', 'layout.json', 'popup.service.statusrule.edit'],
'popup.service.time.edit' => ['CControllerPopupServiceTimeEdit', 'layout.json', 'popup.service.time.edit'],
'popup.services' => ['CControllerPopupServices', 'layout.json', 'popup.services'],
'popup.sla.edit' => ['CControllerPopupSlaEdit', 'layout.json', 'popup.sla.edit'],
'popup.sla.excludeddowntime.edit' => ['CControllerPopupSlaExcludedDowntimeEdit', 'layout.json', 'popup.sla.excludeddowntime.edit'],
'popup.tabfilter.delete' => ['CControllerPopupTabFilterDelete', 'layout.json', null],
'popup.tabfilter.edit' => ['CControllerPopupTabFilterEdit', 'layout.json', 'popup.tabfilter.edit'],
'popup.tabfilter.update' => ['CControllerPopupTabFilterUpdate', 'layout.json', null],
'popup.testtriggerexpr' => ['CControllerPopupTestTriggerExpr', 'layout.json', 'popup.testtriggerexpr'],
'popup.triggerexpr' => ['CControllerPopupTriggerExpr', 'layout.json', 'popup.triggerexpr'],
'popup.massupdate.host' => ['CControllerPopupMassupdateHost', 'layout.json', 'popup.massupdate.host'],
'popup.massupdate.item' => ['CControllerPopupMassupdateItem', 'layout.json', 'popup.massupdate.item'],
'popup.massupdate.itemprototype' => ['CControllerPopupMassupdateItem', 'layout.json', 'popup.massupdate.item'],
'popup.massupdate.service' => ['CControllerPopupMassupdateService', 'layout.json', 'popup.massupdate.service'],
'popup.massupdate.template' => ['CControllerPopupMassupdateTemplate', 'layout.json', 'popup.massupdate.template'],
'popup.massupdate.trigger' => ['CControllerPopupMassupdateTrigger', 'layout.json', 'popup.massupdate.trigger'],
'popup.massupdate.triggerprototype' => ['CControllerPopupMassupdateTrigger', 'layout.json', 'popup.massupdate.trigger'],
'popup.valuemap.edit' => ['CControllerPopupValueMapEdit', 'layout.json', 'popup.valuemap.edit'],
'popup.valuemap.update' => ['CControllerPopupValueMapUpdate', 'layout.json', null],
'popup.tophosts.column.edit' => ['CControllerPopupTopHostsColumnEdit', 'layout.json', 'popup.tophosts.column.edit'],
'problem.view' => ['CControllerProblemView', 'layout.htmlpage', 'monitoring.problem.view'],
'problem.view.refresh' => ['CControllerProblemViewRefresh', 'layout.json', 'monitoring.problem.view.refresh'],
'problem.view.csv' => ['CControllerProblemView', 'layout.csv', 'monitoring.problem.view'],
'profile.update' => ['CControllerProfileUpdate', 'layout.json', null],
'proxy.create' => ['CControllerProxyCreate', null, null],
'proxy.delete' => ['CControllerProxyDelete', null, null],
'proxy.edit' => ['CControllerProxyEdit', 'layout.htmlpage', 'administration.proxy.edit'],
'proxy.hostdisable' => ['CControllerProxyHostDisable', null, null],
'proxy.hostenable' => ['CControllerProxyHostEnable', null, null],
'proxy.list' => ['CControllerProxyList', 'layout.htmlpage', 'administration.proxy.list'],
'proxy.update' => ['CControllerProxyUpdate', null, null],
'queue.details' => ['CControllerQueueDetails', 'layout.htmlpage', 'administration.queue.details'],
'queue.overview' => ['CControllerQueueOverview', 'layout.htmlpage', 'administration.queue.overview'],
'queue.overview.proxy' => ['CControllerQueueOverviewProxy', 'layout.htmlpage', 'administration.queue.overview.proxy'],
'regex.create' => ['CControllerRegExCreate', null, null],
'regex.delete' => ['CControllerRegExDelete', null, null],
'regex.edit' => ['CControllerRegExEdit', 'layout.htmlpage', 'administration.regex.edit'],
'regex.list' => ['CControllerRegExList', 'layout.htmlpage', 'administration.regex.list'],
'regex.test' => ['CControllerRegExTest', null, null],
'regex.update' => ['CControllerRegExUpdate', null, null],
'report.status' => ['CControllerReportStatus', 'layout.htmlpage', 'report.status'],
'scheduledreport.create' => ['CControllerScheduledReportCreate', null, null],
'scheduledreport.delete' => ['CControllerScheduledReportDelete', null, null],
'scheduledreport.disable' => ['CControllerScheduledReportDisable', null, null],
'scheduledreport.edit' => ['CControllerScheduledReportEdit', 'layout.htmlpage', 'reports.scheduledreport.edit'],
'scheduledreport.enable' => ['CControllerScheduledReportEnable', null, null],
'scheduledreport.list' => ['CControllerScheduledReportList', 'layout.htmlpage', 'reports.scheduledreport.list'],
'scheduledreport.update' => ['CControllerScheduledReportUpdate', null, null],
'script.create' => ['CControllerScriptCreate', null, null],
'script.delete' => ['CControllerScriptDelete', null, null],
'script.edit' => ['CControllerScriptEdit', 'layout.htmlpage', 'administration.script.edit'],
'script.list' => ['CControllerScriptList', 'layout.htmlpage', 'administration.script.list'],
'script.update' => ['CControllerScriptUpdate', null, null],
'search' => ['CControllerSearch', 'layout.htmlpage', 'search'],
'service.create' => ['CControllerServiceCreate', 'layout.json', null],
'service.delete' => ['CControllerServiceDelete', 'layout.json', null],
'service.list' => ['CControllerServiceList', 'layout.htmlpage', 'service.list'],
'service.list.refresh' => ['CControllerServiceListRefresh', 'layout.json', 'service.list.refresh'],
'service.list.edit' => ['CControllerServiceListEdit', 'layout.htmlpage', 'service.list.edit'],
'service.list.edit.refresh' => ['CControllerServiceListEditRefresh', 'layout.json', 'service.list.edit.refresh'],
'service.statusrule.validate' => ['CControllerServiceStatusRuleValidate', 'layout.json', null],
'service.update' => ['CControllerServiceUpdate', 'layout.json', null],
'sla.create' => ['CControllerSlaCreate', 'layout.json', null],
'sla.delete' => ['CControllerSlaDelete', 'layout.json', null],
'sla.disable' => ['CControllerSlaDisable', 'layout.json', null],
'sla.excludeddowntime.validate' => ['CControllerSlaExcludedDowntimeValidate', 'layout.json', null],
'sla.list' => ['CControllerSlaList', 'layout.htmlpage', 'sla.list'],
'sla.enable' => ['CControllerSlaEnable', 'layout.json', null],
'sla.update' => ['CControllerSlaUpdate', 'layout.json', null],
'slareport.list' => ['CControllerSlaReportList', 'layout.htmlpage', 'slareport.list'],
'system.warning' => ['CControllerSystemWarning', 'layout.warning', 'system.warning'],
'tabfilter.profile.update' => ['CControllerTabFilterProfileUpdate', 'layout.json', null],
'template.dashboard.delete' => ['CControllerTemplateDashboardDelete', null, null],
'template.dashboard.edit' => ['CControllerTemplateDashboardEdit', 'layout.htmlpage', 'configuration.dashboard.edit'],
'template.dashboard.list' => ['CControllerTemplateDashboardList', 'layout.htmlpage', 'configuration.dashboard.list'],
'template.dashboard.update' => ['CControllerTemplateDashboardUpdate', 'layout.json', null],
'token.create' => ['CControllerTokenCreate', null, null],
'token.delete' => ['CControllerTokenDelete', null, null],
'token.disable' => ['CControllerTokenDisable', null, null],
'token.edit' => ['CControllerTokenEdit', 'layout.htmlpage', 'administration.token.edit'],
'token.enable' => ['CControllerTokenEnable', null, null],
'token.list' => ['CControllerTokenList', 'layout.htmlpage', 'administration.token.list'],
'token.update' => ['CControllerTokenUpdate', null, null],
'token.view' => ['CControllerTokenView', 'layout.htmlpage', 'administration.token.view'],
'timeselector.update' => ['CControllerTimeSelectorUpdate', 'layout.json', null],
'trigdisplay.edit' => ['CControllerTrigDisplayEdit', 'layout.htmlpage', 'administration.trigdisplay.edit'],
'trigdisplay.update' => ['CControllerTrigDisplayUpdate', null, null],
'user.create' => ['CControllerUserCreate', null, null],
'user.delete' => ['CControllerUserDelete', null, null],
'user.edit' => ['CControllerUserEdit', 'layout.htmlpage', 'administration.user.edit'],
'user.list' => ['CControllerUserList', 'layout.htmlpage', 'administration.user.list'],
'user.token.edit' => ['CControllerUserTokenEdit', 'layout.htmlpage', 'administration.user.token.edit'],
'user.token.list' => ['CControllerUserTokenList', 'layout.htmlpage', 'administration.user.token.list'],
'user.token.view' => ['CControllerUserTokenView', 'layout.htmlpage', 'administration.user.token.view'],
'user.unblock' => ['CControllerUserUnblock', null, null],
'user.update' => ['CControllerUserUpdate', null, null],
'usergroup.create' => ['CControllerUsergroupCreate', null, null],
'usergroup.delete' => ['CControllerUsergroupDelete', null, null],
'usergroup.edit' => ['CControllerUsergroupEdit', 'layout.htmlpage', 'administration.usergroup.edit'],
'usergroup.groupright.add' => ['CControllerUsergroupGrouprightAdd', 'layout.json', 'administration.usergroup.grouprights'],
'usergroup.list' => ['CControllerUsergroupList', 'layout.htmlpage', 'administration.usergroup.list'],
'usergroup.massupdate' => ['CControllerUsergroupMassUpdate', null, null],
'usergroup.tagfilter.add' => ['CControllerUsergroupTagfilterAdd', 'layout.json', 'administration.usergroup.tagfilters'],
'usergroup.update' => ['CControllerUsergroupUpdate', null, null],
'userprofile.edit' => ['CControllerUserProfileEdit', 'layout.htmlpage', 'administration.user.edit'],
'userprofile.update' => ['CControllerUserProfileUpdate', null, null],
'userrole.delete' => ['CControllerUserroleDelete', null, null],
'userrole.list' => ['CControllerUserroleList', 'layout.htmlpage', 'administration.userrole.list'],
'userrole.create' => ['CControllerUserroleCreate', null, null],
'userrole.edit' => ['CControllerUserroleEdit', 'layout.htmlpage', 'administration.userrole.edit'],
'userrole.update' => ['CControllerUserroleUpdate', null, null],
'web.view' => ['CControllerWebView', 'layout.htmlpage', 'monitoring.web.view'],
'widget.actionlog.view' => ['CControllerWidgetActionLogView', 'layout.widget', 'monitoring.widget.actionlog.view'],
'widget.clock.view' => ['CControllerWidgetClockView', 'layout.widget', 'monitoring.widget.clock.view'],
'widget.dataover.view' => ['CControllerWidgetDataOverView', 'layout.widget', 'monitoring.widget.dataover.view'],
'widget.discovery.view' => ['CControllerWidgetDiscoveryView', 'layout.widget', 'monitoring.widget.discovery.view'],
'widget.favgraphs.view' => ['CControllerWidgetFavGraphsView', 'layout.widget', 'monitoring.widget.favgraphs.view'],
'widget.favmaps.view' => ['CControllerWidgetFavMapsView', 'layout.widget', 'monitoring.widget.favmaps.view'],
'widget.geomap.view' => ['CControllerWidgetGeoMapView', 'layout.widget', 'monitoring.widget.geomap.view'],
'widget.graph.view' => ['CControllerWidgetGraphView', 'layout.widget', 'monitoring.widget.graph.view'],
'widget.graphprototype.view' => ['CControllerWidgetIteratorGraphPrototypeView', 'layout.json', null],
'widget.item.view' => ['CControllerWidgetItemView', 'layout.widget', 'monitoring.widget.item.view'],
'widget.hostavail.view' => ['CControllerWidgetHostAvailView', 'layout.widget', 'monitoring.widget.hostavail.view'],
'widget.map.view' => ['CControllerWidgetMapView', 'layout.widget', 'monitoring.widget.map.view'],
'widget.navtree.item.edit' => ['CControllerWidgetNavTreeItemEdit', 'layout.json', 'monitoring.widget.navtreeitem.edit'],
'widget.navtree.item.update' => ['CControllerWidgetNavTreeItemUpdate', 'layout.json', null],
'widget.navtree.view' => ['CControllerWidgetNavTreeView', 'layout.widget', 'monitoring.widget.navtree.view'],
'widget.plaintext.view' => ['CControllerWidgetPlainTextView', 'layout.widget', 'monitoring.widget.plaintext.view'],
'widget.problemhosts.view' => ['CControllerWidgetProblemHostsView', 'layout.widget', 'monitoring.widget.problemhosts.view'],
'widget.problems.view' => ['CControllerWidgetProblemsView', 'layout.widget', 'monitoring.widget.problems.view'],
'widget.problemsbysv.view' => ['CControllerWidgetProblemsBySvView', 'layout.widget', 'monitoring.widget.problemsbysv.view'],
'widget.slareport.view' => ['CControllerWidgetSlaReportView', 'layout.widget', 'monitoring.widget.slareport.view'],
'widget.svggraph.view' => ['CControllerWidgetSvgGraphView', 'layout.widget', 'monitoring.widget.svggraph.view'],
'widget.systeminfo.view' => ['CControllerWidgetSystemInfoView', 'layout.widget', 'monitoring.widget.systeminfo.view'],
'widget.tophosts.view' => ['CControllerWidgetTopHostsView', 'layout.widget', 'monitoring.widget.tophosts.view'],
'widget.trigover.view' => ['CControllerWidgetTrigOverView', 'layout.widget', 'monitoring.widget.trigover.view'],
'widget.url.view' => ['CControllerWidgetUrlView', 'layout.widget', 'monitoring.widget.url.view'],
'widget.web.view' => ['CControllerWidgetWebView', 'layout.widget', 'monitoring.widget.web.view'],
// legacy actions
'actionconf.php' => ['CLegacyAction', null, null],
'auditacts.php' => ['CLegacyAction', null, null],
'browserwarning.php' => ['CLegacyAction', null, null],
'chart.php' => ['CLegacyAction', null, null],
'chart2.php' => ['CLegacyAction', null, null],
'chart3.php' => ['CLegacyAction', null, null],
'chart4.php' => ['CLegacyAction', null, null],
'chart6.php' => ['CLegacyAction', null, null],
'chart7.php' => ['CLegacyAction', null, null],
'disc_prototypes.php' => ['CLegacyAction', null, null],
'graphs.php' => ['CLegacyAction', null, null],
'history.php' => ['CLegacyAction', null, null],
'host_discovery.php' => ['CLegacyAction', null, null],
'host_prototypes.php' => ['CLegacyAction', null, null],
'hostgroups.php' => ['CLegacyAction', null, null],
'hostinventories.php' => ['CLegacyAction', null, null],
'hostinventoriesoverview.php' => ['CLegacyAction', null, null],
'httpconf.php' => ['CLegacyAction', null, null],
'httpdetails.php' => ['CLegacyAction', null, null],
'image.php' => ['CLegacyAction', null, null],
'imgstore.php' => ['CLegacyAction', null, null],
'index.php' => ['CLegacyAction', null, null],
'index_http.php' => ['CLegacyAction', null, null],
'index_sso.php' => ['CLegacyAction', null, null],
'items.php' => ['CLegacyAction', null, null],
'jsrpc.php' => ['CLegacyAction', null, null],
'maintenance.php' => ['CLegacyAction', null, null],
'map.php' => ['CLegacyAction', null, null],
'report2.php' => ['CLegacyAction', null, null],
'report4.php' => ['CLegacyAction', null, null],
'sysmap.php' => ['CLegacyAction', null, null],
'sysmaps.php' => ['CLegacyAction', null, null],
'templates.php' => ['CLegacyAction', null, null],
'toptriggers.php' => ['CLegacyAction', null, null],
'tr_events.php' => ['CLegacyAction', null, null],
'trigger_prototypes.php' => ['CLegacyAction', null, null],
'triggers.php' => ['CLegacyAction', null, null]
];
/**
* Add new actions (potentially overwriting the existing ones).
*
* @param array $actions List of actions.
* @param string $actions['action_name'] Definition of the 'action_name' action.
* @param string $actions['action_name']['class'] Controller class name of the 'action_name' action.
* @param string $actions['action_name']['layout'] Optional layout of the 'action_name' action.
* @param string $actions['action_name']['view'] Optional view of the 'action_name' action.
*/
public function addActions(array $actions): void {
foreach ($actions as $action => $route) {
if (is_array($route) && array_key_exists('class', $route)) {
$this->routes[$action] = [
$route['class'],
array_key_exists('layout', $route) ? $route['layout'] : null,
array_key_exists('view', $route) ? $route['view'] : null
];
}
}
}
/**
* Set controller, layout and view associated with the specified action.
*
* @param string $action Action name.
*/
public function setAction(string $action): void {
$this->action = $action;
if (array_key_exists($action, $this->routes)) {
[$this->controller, $this->layout, $this->view] = $this->routes[$action];
}
else {
$this->controller = null;
$this->layout = null;
$this->view = null;
}
}
/**
* Returns layout name.
*
* @return string|null
*/
public function getLayout(): ?string {
return $this->layout;
}
/**
* Returns controller name.
*
* @return string|null
*/
public function getController(): ?string {
return $this->controller;
}
/**
* Returns view name.
*
* @return string|null
*/
public function getView(): ?string {
return $this->view;
}
/**
* Returns action name.
*
* @return string|null
*/
public function getAction(): ?string {
return $this->action;
}
}
|