/usr/share/zabbix/adm.valuemapping.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 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 | <?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 value mapping');
$page['file'] = 'adm.valuemapping.php';
$page['hist_arg'] = array();
require_once dirname(__FILE__).'/include/page_header.php';
// VAR TYPE OPTIONAL FLAGS VALIDATION EXCEPTION
$fields = array(
'valuemapid' => array(T_ZBX_INT, O_NO, P_SYS, DB_ID, '(isset({form})&&{form}=="update")||isset({delete})'),
'mapname' => array(T_ZBX_STR, O_OPT, null, NOT_EMPTY, 'isset({save})'),
'mappings' => array(T_ZBX_STR, O_OPT, null, null, null),
'save' => array(T_ZBX_STR, O_OPT, P_SYS|P_ACT, null, null),
'delete' => array(T_ZBX_STR, O_OPT, P_SYS|P_ACT, null, null),
'form' => array(T_ZBX_STR, O_OPT, P_SYS, null, null),
'form_refresh' => array(T_ZBX_INT, O_OPT, null, null, null)
);
check_fields($fields);
/*
* Permissions
*/
if (isset($_REQUEST['valuemapid'])) {
$dbValueMap = DBfetch(DBselect('SELECT v.name FROM valuemaps v WHERE v.valuemapid='.zbx_dbstr(get_request('valuemapid'))));
if (empty($dbValueMap)) {
access_deny();
}
}
/*
* Actions
*/
try {
$msgOk = $msgFail = '';
if (isset($_REQUEST['save'])) {
DBstart();
$valueMap = array('name' => get_request('mapname'));
$mappings = get_request('mappings', array());
if (isset($_REQUEST['valuemapid'])) {
$msgOk = _('Value map updated');
$msgFail = _('Cannot update value map');
$audit_action = AUDIT_ACTION_UPDATE;
$valueMap['valuemapid'] = get_request('valuemapid');
updateValueMap($valueMap, $mappings);
}
else {
$msgOk = _('Value map added');
$msgFail = _('Cannot add value map');
$audit_action = AUDIT_ACTION_ADD;
addValueMap($valueMap, $mappings);
}
add_audit($audit_action, AUDIT_RESOURCE_VALUE_MAP, _s('Value map "%1$s".', $valueMap['name']));
show_messages(true, $msgOk);
unset($_REQUEST['form']);
DBend(true);
}
elseif (isset($_REQUEST['delete']) && isset($_REQUEST['valuemapid'])) {
DBstart();
$msgOk = _('Value map deleted');
$msgFail = _('Cannot delete value map');
$sql = 'SELECT v.name,v.valuemapid'.
' FROM valuemaps v'.
' WHERE v.valuemapid='.zbx_dbstr($_REQUEST['valuemapid']).
andDbNode('v.valuemapid');
if ($valueMapToDelete = DBfetch(DBselect($sql))) {
deleteValueMap($_REQUEST['valuemapid']);
}
else {
throw new Exception(_s('Value map with valuemapid "%1$s" does not exist.', $_REQUEST['valuemapid']));
}
add_audit(
AUDIT_ACTION_DELETE,
AUDIT_RESOURCE_VALUE_MAP,
_s('Value map "%1$s" "%2$s".', $valueMapToDelete['name'], $valueMapToDelete['valuemapid'])
);
show_messages(true, $msgOk);
unset($_REQUEST['form']);
DBend(true);
}
}
catch (Exception $e) {
DBend(false);
error($e->getMessage());
show_messages(false, null, $msgFail);
}
/*
* Display
*/
$generalComboBox = new CComboBox('configDropDown', 'adm.valuemapping.php', 'redirect(this.options[this.selectedIndex].value);');
$generalComboBox->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')
));
$valueMapForm = new CForm();
$valueMapForm->cleanItems();
$valueMapForm->addItem($generalComboBox);
if (!isset($_REQUEST['form'])) {
$valueMapForm->addItem(new CSubmit('form', _('Create value map')));
}
$valueMapWidget = new CWidget();
$valueMapWidget->addPageHeader(_('CONFIGURATION OF VALUE MAPPING'), $valueMapForm);
if (isset($_REQUEST['form'])) {
$data = array(
'form' => get_request('form', 1),
'form_refresh' => get_request('form_refresh', 0),
'valuemapid' => get_request('valuemapid'),
'mappings' => array(),
'mapname' => '',
'confirmMessage' => null,
'add_value' => get_request('add_value'),
'add_newvalue' => get_request('add_newvalue')
);
if (isset($data['valuemapid'])) {
$data['mapname'] = $dbValueMap['name'];
if (empty($data['form_refresh'])) {
$data['mappings'] = DBfetchArray(DBselect(
'SELECT m.mappingid,m.value,m.newvalue FROM mappings m WHERE m.valuemapid='.zbx_dbstr($data['valuemapid'])
));
}
else {
$data['mapname'] = get_request('mapname', '');
$data['mappings'] = get_request('mappings', array());
}
$valueMapCount = DBfetch(DBselect(
'SELECT COUNT(i.itemid) AS cnt FROM items i WHERE i.valuemapid='.zbx_dbstr($data['valuemapid'])
));
$data['confirmMessage'] = $valueMapCount['cnt']
? _n('Delete selected value mapping? It is used for %d item!',
'Delete selected value mapping? It is used for %d items!', $valueMapCount['cnt'])
: _('Delete selected value mapping?');
}
if (empty($data['valuemapid']) && !empty($data['form_refresh'])) {
$data['mapname'] = get_request('mapname', '');
$data['mappings'] = get_request('mappings', array());
}
order_result($data['mappings'], 'value');
$valueMapForm = new CView('administration.general.valuemapping.edit', $data);
}
else {
$data = array(
'valuemaps' => array(),
'displayNodes' => is_array(get_current_nodeid())
);
$valueMapWidget->addHeader(_('Value mapping'));
$valueMapWidget->addItem(BR());
$dbValueMaps = DBselect(
'SELECT v.valuemapid,v.name'.
' FROM valuemaps v'.
whereDbNode('v.valuemapid')
);
while ($dbValueMap = DBfetch($dbValueMaps)) {
$dbValueMap['nodename'] = $data['displayNodes']
? get_node_name_by_elid($dbValueMap['valuemapid'], true)
: '';
$data['valuemaps'][$dbValueMap['valuemapid']] = $dbValueMap;
$data['valuemaps'][$dbValueMap['valuemapid']]['maps'] = array();
}
order_result($data['valuemaps'], 'name');
$dbMaps = DBselect(
'SELECT m.valuemapid,m.value,m.newvalue'.
' FROM mappings m'.
whereDbNode('m.mappingid')
);
while ($dbMap = DBfetch($dbMaps)) {
$data['valuemaps'][$dbMap['valuemapid']]['maps'][] = array(
'value' => $dbMap['value'],
'newvalue' => $dbMap['newvalue']
);
}
$valueMapForm = new CView('administration.general.valuemapping.list', $data);
}
$valueMapWidget->addItem($valueMapForm->render());
$valueMapWidget->show();
require_once dirname(__FILE__).'/include/page_footer.php';
|