/usr/share/zabbix/adm.macros.php is in zabbix-frontend-php 1:2.2.7+dfsg-2+deb8u3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <?php
/*
** Zabbix
** Copyright (C) 2001-2014 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.
**/
require_once dirname(__FILE__).'/include/config.inc.php';
$page['title'] = _('Configuration of macros');
$page['file'] = 'adm.macros.php';
$page['hist_arg'] = array();
require_once dirname(__FILE__).'/include/page_header.php';
// VAR TYPE OPTIONAL FLAGS VALIDATION EXCEPTION
$fields = array(
'macros_rem'=> array(T_ZBX_STR, O_OPT, P_SYS|P_ACT, null, null),
'macros'=> array(T_ZBX_STR, O_OPT, P_SYS, null, null),
'macro_new'=> array(T_ZBX_STR, O_OPT, P_SYS|P_ACT, null, 'isset({macro_add})'),
'value_new'=> array(T_ZBX_STR, O_OPT, P_SYS|P_ACT, null, 'isset({macro_add})'),
'macro_add' => array(T_ZBX_STR, O_OPT, P_SYS|P_ACT, null, null),
'save'=> array(T_ZBX_STR, O_OPT, P_SYS|P_ACT, null, null),
'form_refresh' => array(T_ZBX_INT, O_OPT, null, null, null)
);
check_fields($fields);
/*
* Actions
*/
$result = true;
if (isset($_REQUEST['save'])) {
try {
DBstart();
$globalMacros = API::UserMacro()->get(array(
'globalmacro' => true,
'output' => API_OUTPUT_EXTEND,
'preservekeys' => true
));
$newMacros = get_request('macros', array());
// remove empty new macro lines
foreach ($newMacros as $number => $newMacro) {
if (!isset($newMacro['globalmacroid']) && zbx_empty($newMacro['macro']) && zbx_empty($newMacro['value'])) {
unset($newMacros[$number]);
}
}
$duplicatedMacros = array();
foreach ($newMacros as $number => $newMacro) {
// transform macros to uppercase {$aaa} => {$AAA}
$newMacros[$number]['macro'] = zbx_strtoupper($newMacro['macro']);
}
// update
$macrosToUpdate = array();
foreach ($newMacros as $number => $newMacro) {
if (isset($newMacro['globalmacroid']) && isset($globalMacros[$newMacro['globalmacroid']])) {
$dbGlobalMacro = $globalMacros[$newMacro['globalmacroid']];
// remove item from new macros array
unset($newMacros[$number]);
unset($globalMacros[$newMacro['globalmacroid']]);
// if the macro is unchanged - skip it
if ($dbGlobalMacro == $newMacro) {
continue;
}
$macrosToUpdate[$newMacro['globalmacroid']] = $newMacro;
}
}
if (!empty($macrosToUpdate)) {
if (!API::UserMacro()->updateGlobal($macrosToUpdate)) {
throw new Exception(_('Cannot update macro.'));
}
foreach ($macrosToUpdate as $macro) {
add_audit_ext(AUDIT_ACTION_UPDATE, AUDIT_RESOURCE_MACRO, $macro['globalmacroid'], $macro['macro'].SPACE.RARR.SPACE.$macro['value'], null, null, null);
}
}
// delete the remaining global macros
if ($globalMacros) {
$ids = zbx_objectValues($globalMacros, 'globalmacroid');
if (!API::UserMacro()->deleteGlobal($ids)) {
throw new Exception(_('Cannot remove macro.'));
}
foreach ($globalMacros as $macro) {
add_audit_ext(AUDIT_ACTION_DELETE, AUDIT_RESOURCE_MACRO, $macro['globalmacroid'], $macro['macro'].SPACE.RARR.SPACE.$macro['value'], null, null, null);
}
}
// create
if (!empty($newMacros)) {
// mark marcos as new
foreach ($newMacros as $number => $macro) {
$_REQUEST['macros'][$number]['type'] = 'new';
}
$newMacrosIds = API::UserMacro()->createGlobal(array_values($newMacros));
if (!$newMacrosIds) {
throw new Exception(_('Cannot add macro.'));
}
$newMacrosCreated = API::UserMacro()->get(array(
'globalmacroids' => $newMacrosIds['globalmacroids'],
'globalmacro' => 1,
'output' => API_OUTPUT_EXTEND
));
foreach ($newMacrosCreated as $macro) {
add_audit_ext(AUDIT_ACTION_ADD, AUDIT_RESOURCE_MACRO, $macro['globalmacroid'], $macro['macro'].SPACE.RARR.SPACE.$macro['value'], null, null, null);
}
}
// reload macros after updating to properly display them in the form
$_REQUEST['macros'] = API::UserMacro()->get(array(
'globalmacro' => true,
'output' => API_OUTPUT_EXTEND,
'preservekeys' => true
));
$result = true;
DBend(true);
show_message(_('Macros updated'));
}
catch (Exception $e) {
$result = false;
DBend(false);
error($e->getMessage());
show_error_message(_('Cannot update macros'));
}
}
/*
* Display
*/
$form = new CForm();
$form->cleanItems();
$cmbConf = new CComboBox('configDropDown', 'adm.macros.php', 'redirect(this.options[this.selectedIndex].value);');
$cmbConf->addItems(array(
'adm.gui.php' => _('GUI'),
'adm.housekeeper.php' => _('Housekeeping'),
'adm.images.php' => _('Images'),
'adm.iconmapping.php' => _('Icon mapping'),
'adm.regexps.php' => _('Regular expressions'),
'adm.macros.php' => _('Macros'),
'adm.valuemapping.php' => _('Value mapping'),
'adm.workingtime.php' => _('Working time'),
'adm.triggerseverities.php' => _('Trigger severities'),
'adm.triggerdisplayoptions.php' => _('Trigger displaying options'),
'adm.other.php' => _('Other')
));
$form->addItem($cmbConf);
$cnf_wdgt = new CWidget();
$cnf_wdgt->addPageHeader(_('CONFIGURATION OF MACROS'), $form);
$data = array();
$data['form_refresh'] = get_request('form_refresh', 0);
$data['macros'] = array();
if ($data['form_refresh']) {
$data['macros'] = get_request('macros', array());
}
else {
$data['macros'] = API::UserMacro()->get(array(
'output' => API_OUTPUT_EXTEND,
'globalmacro' => 1
));
}
if (empty($data['macros'])) {
$data['macros'] = array(
0 => array(
'macro' => '',
'value' => ''
)
);
}
if ($result) {
$data['macros'] = order_macros($data['macros'], 'macro');
}
$macrosForm = new CView('administration.general.macros.edit', $data);
$cnf_wdgt->addItem($macrosForm->render());
$cnf_wdgt->show();
require_once dirname(__FILE__).'/include/page_footer.php';
|