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
|
<?php
/*
** Zabbix
** Copyright (C) 2001-2016 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.
**/
$auditWidget = (new CWidget())->setTitle(_('Audit log'));
// header
// create filter
$filterForm = new CFilter('web.auditlogs.filter.state');
$filterColumn = new CFormList();
$filterColumn->addRow(_('User'), [
(new CTextBox('alias', $this->data['alias']))->setWidth(ZBX_TEXTAREA_FILTER_STANDARD_WIDTH),
(new CDiv())->addClass(ZBX_STYLE_FORM_INPUT_MARGIN),
(new CButton('btn1', _('Select')))
->addClass(ZBX_STYLE_BTN_GREY)
->onClick('return PopUp("popup.php?dstfrm=zbx_filter&dstfld1=alias&srctbl=users&srcfld1=alias");')
]);
$filterColumn->addRow(_('Action'), new CComboBox('action', $this->data['action'], null, [
-1 => _('All'),
AUDIT_ACTION_LOGIN => _('Login'),
AUDIT_ACTION_LOGOUT => _('Logout'),
AUDIT_ACTION_ADD => _('Add'),
AUDIT_ACTION_UPDATE => _('Update'),
AUDIT_ACTION_DELETE => _('Delete'),
AUDIT_ACTION_ENABLE => _('Enable'),
AUDIT_ACTION_DISABLE => _('Disable')
]));
$filterColumn->addRow(_('Resource'), new CComboBox('resourcetype', $this->data['resourcetype'], null,
[-1 => _('All')] + audit_resource2str()
));
$filterForm->addColumn($filterColumn)
->addNavigator();
$auditWidget->addItem($filterForm);
// create form
$auditForm = (new CForm('get'))->setName('auditForm');
// create table
$auditTable = (new CTableInfo())
->setHeader([
_('Time'),
_('User'),
_('IP'),
_('Resource'),
_('Action'),
_('ID'),
_('Description'),
_('Details')
]);
foreach ($this->data['actions'] as $action) {
$details = [];
if (is_array($action['details'])) {
foreach ($action['details'] as $detail) {
$details[] = [$detail['table_name'].'.'.$detail['field_name'].NAME_DELIMITER.$detail['oldvalue'].' => '.$detail['newvalue'], BR()];
}
}
else {
$details = $action['details'];
}
$auditTable->addRow([
zbx_date2str(DATE_TIME_FORMAT_SECONDS, $action['clock']),
$action['alias'],
$action['ip'],
$action['resourcetype'],
$action['action'],
$action['resourceid'],
$action['resourcename'],
$details
]);
}
// append table to form
$auditForm->addItem([$auditTable, $this->data['paging']]);
// append navigation bar js
$objData = [
'id' => 'timeline_1',
'domid' => 'events',
'loadSBox' => 0,
'loadImage' => 0,
'loadScroll' => 1,
'dynamic' => 0,
'mainObject' => 1,
'periodFixed' => CProfile::get('web.auditlogs.timelinefixed', 1),
'sliderMaximumTimePeriod' => ZBX_MAX_PERIOD
];
zbx_add_post_js('timeControl.addObject("events", '.zbx_jsvalue($this->data['timeline']).', '.zbx_jsvalue($objData).');');
zbx_add_post_js('timeControl.processObjects();');
// append form to widget
$auditWidget->addItem($auditForm);
return $auditWidget;
|