You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
141 lines
5.0 KiB
141 lines
5.0 KiB
<?php
|
|
/*
|
|
** 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.
|
|
**/
|
|
|
|
|
|
/**
|
|
* @var CPartial $this
|
|
* @var array $data
|
|
*/
|
|
|
|
if ($data['readonly'] && !$data['macros']) {
|
|
$table = new CObject(_('No macros found.'));
|
|
}
|
|
else {
|
|
$table = (new CTable())
|
|
->setId('tbl_macros')
|
|
->addClass(ZBX_STYLE_TEXTAREA_FLEXIBLE_CONTAINER)
|
|
->addClass('host-macros-table')
|
|
->setColumns([
|
|
(new CTableColumn(_('Macro')))->addClass('table-col-macro'),
|
|
(new CTableColumn(_('Value')))->addClass('table-col-value'),
|
|
(new CTableColumn(_('Description')))->addClass('table-col-description'),
|
|
$data['readonly'] ? null : (new CTableColumn())->addClass('table-col-action')
|
|
]);
|
|
|
|
foreach ($data['macros'] as $i => $macro) {
|
|
$macro_value = (new CMacroValue($macro['type'], 'macros['.$i.']', null, false))
|
|
->setReadonly($data['readonly']
|
|
|| !($macro['discovery_state'] & CControllerHostMacrosList::DISCOVERY_STATE_CONVERTING)
|
|
);
|
|
|
|
$macro_cell = [
|
|
(new CTextAreaFlexible('macros['.$i.'][macro]', $macro['macro']))
|
|
->setReadonly($data['readonly']
|
|
|| $macro['discovery_state'] != CControllerHostMacrosList::DISCOVERY_STATE_MANUAL
|
|
)
|
|
->addClass('macro')
|
|
->setWidth(ZBX_TEXTAREA_MACRO_WIDTH)
|
|
->setAttribute('placeholder', '{$MACRO}')
|
|
->disableSpellcheck()
|
|
];
|
|
|
|
if (!$data['readonly']) {
|
|
$macro_cell[] = new CVar('macros['.$i.'][discovery_state]', $macro['discovery_state']);
|
|
|
|
if (array_key_exists('hostmacroid', $macro)) {
|
|
$macro_cell[] = new CVar('macros['.$i.'][hostmacroid]', $macro['hostmacroid']);
|
|
}
|
|
|
|
if (array_key_exists('allow_revert', $macro)) {
|
|
$macro_value->addRevertButton();
|
|
$macro_value->setRevertButtonVisibility($macro['type'] != ZBX_MACRO_TYPE_SECRET
|
|
|| array_key_exists('value', $macro)
|
|
);
|
|
|
|
$macro_cell[] = new CVar('macros['.$i.'][allow_revert]', '1');
|
|
}
|
|
|
|
if ($macro['discovery_state'] != CControllerHostMacrosList::DISCOVERY_STATE_MANUAL) {
|
|
$macro_cell[] = new CVar('macros['.$i.'][original_value]', $macro['original']['value']);
|
|
$macro_cell[] = new CVar('macros['.$i.'][original_description]', $macro['original']['description']);
|
|
$macro_cell[] = new CVar('macros['.$i.'][original_macro_type]', $macro['original']['type']);
|
|
}
|
|
}
|
|
|
|
if (array_key_exists('value', $macro)) {
|
|
$macro_value->setAttribute('value', $macro['value']);
|
|
}
|
|
|
|
if (!$data['readonly']) {
|
|
$action_column = [];
|
|
|
|
if ($macro['discovery_state'] == CControllerHostMacrosList::DISCOVERY_STATE_AUTOMATIC) {
|
|
$action_column[] = (new CButton('macros['.$i.'][change_state]', _x('Change', 'verb')))
|
|
->addClass(ZBX_STYLE_BTN_LINK)
|
|
->addClass('element-table-set-manual');
|
|
}
|
|
elseif ($macro['discovery_state'] == CControllerHostMacrosList::DISCOVERY_STATE_CONVERTING) {
|
|
$action_column[] = (new CButton('macros['.$i.'][change_state]', _('Revert')))
|
|
->addClass(ZBX_STYLE_BTN_LINK)
|
|
->addClass('element-table-set-manual');
|
|
}
|
|
|
|
$action_column[] = (new CButton('macros['.$i.'][remove]', _('Remove')))
|
|
->addClass(ZBX_STYLE_BTN_LINK)
|
|
->addClass('element-table-remove');
|
|
|
|
if ($macro['discovery_state'] != CControllerHostMacrosList::DISCOVERY_STATE_MANUAL) {
|
|
$action_column[] = (new CSpan(_('(created by host discovery)')))->addClass(ZBX_STYLE_GREY);
|
|
}
|
|
}
|
|
|
|
$table->addRow([
|
|
(new CCol($macro_cell))->addClass(ZBX_STYLE_TEXTAREA_FLEXIBLE_PARENT),
|
|
(new CCol($macro_value))
|
|
->addClass(ZBX_STYLE_TEXTAREA_FLEXIBLE_PARENT)
|
|
->addClass(ZBX_STYLE_NOWRAP),
|
|
(new CCol(
|
|
(new CTextAreaFlexible('macros['.$i.'][description]', $macro['description']))
|
|
->setWidth(ZBX_TEXTAREA_MACRO_VALUE_WIDTH)
|
|
->setMaxlength(DB::getFieldLength('hostmacro', 'description'))
|
|
->setReadonly($data['readonly']
|
|
|| !($macro['discovery_state'] & CControllerHostMacrosList::DISCOVERY_STATE_CONVERTING)
|
|
)
|
|
->setAttribute('placeholder', _('description'))
|
|
))->addClass(ZBX_STYLE_TEXTAREA_FLEXIBLE_PARENT),
|
|
$data['readonly'] ? null : new CCol(new CHorList($action_column))
|
|
], 'form_row');
|
|
}
|
|
|
|
if (!$data['readonly']) {
|
|
$table->setFooter(new CCol(
|
|
(new CButton('macro_add', _('Add')))
|
|
->addClass(ZBX_STYLE_BTN_LINK)
|
|
->addClass('element-table-add')
|
|
));
|
|
}
|
|
}
|
|
|
|
$table->show();
|
|
|
|
// Initializing input secret and macro value init script separately.
|
|
(new CScriptTag("jQuery('.input-secret').inputSecret();"))->show();
|
|
(new CScriptTag("jQuery('.macro-input-group').macroValue();"))->show();
|