Observium_CE/html/pages/contacts.inc.php

231 lines
9.7 KiB
PHP

<?php
/**
* Observium
*
* This file is part of Observium.
*
* @package observium
* @subpackage web
* @copyright (C) 2006-2013 Adam Armstrong, (C) 2013-2022 Observium Limited
*
*/
// Contact display and editing page.
if ($_SESSION['userlevel'] < 7)
{
print_error_permission();
return;
}
include($config['html_dir'].'/includes/alerting-navbar.inc.php');
include($config['html_dir'].'/includes/contacts-navbar.inc.php');
?>
<div class="row">
<div class="col-sm-12">
<?php
// Hardcode Device sysContact
if (!dbExist('alert_contacts', '`contact_method` = ?', [ 'syscontact' ])) {
$syscontact = [
'contact_descr' => 'Device sysContact',
'contact_method' => 'syscontact',
'contact_endpoint' => '{"syscontact":"device"}',
//'contact_disabled' => '0',
//'contact_disabled_until' => NULL,
//'contact_message_custom' => 0,
//'contact_message_template' => NULL
];
dbInsert($syscontact, 'alert_contacts');
}
// FIXME. Show for anyone > 5 (also for non-ADMIN) and any contacts?
$contacts = dbFetchRows('SELECT * FROM `alert_contacts` WHERE 1');
if (count($contacts)) {
//r($contacts);
// We have contacts, print the table.
echo generate_box_open();
?>
<table class="table table-condensed table-striped table-rounded table-hover">
<thead>
<tr>
<th style="width: 1px"></th>
<th style="width: 50px">Id</th>
<th style="width: 100px">Transport</th>
<th style="width: 100px">Description</th>
<th>Destination</th>
<th style="width: 60px">Used</th>
<th style="width: 70px">Status</th>
<th style="width: 30px"></th>
</tr>
</thead>
<tbody>
<?php
$modals = '';
foreach ($contacts as $contact) {
if ($contact['contact_method'] === 'syscontact' && $config['email']['default_syscontact']) {
$num_assocs = dbFetchCell('SELECT COUNT(*) FROM `alert_tests`') + 0;
$num_assocs += dbFetchCell('SELECT COUNT(*) FROM `syslog_rules`') + 0;
} else {
$num_assocs = dbFetchCell("SELECT COUNT(*) FROM `alert_contacts_assoc` WHERE `contact_id` = ?", array( $contact['contact_id'] )) + 0;
}
if ($contact['contact_disabled'] == 1) { $disabled = ""; }
// If we have "identifiers" set for this type of transport, use those to print a user friendly destination.
// If we don't, just dump the JSON array as we don't have a better idea what to do right now.
$transport = $contact['contact_method'];
if (isset($config['transports'][$transport]['identifiers'])) {
// Decode JSON for use below
$contact['endpoint_variables'] = json_decode($contact['contact_endpoint'], TRUE);
// Add all identifier strings to an array and implode them into the description variable
// We can't just foreach the identifiers array as we don't know what section the variable is in
foreach ($config['transports'][$contact['contact_method']]['identifiers'] as $key) {
foreach ($config['transports'][$contact['contact_method']]['parameters'] as $section => $parameters) {
if (isset($parameters[$key]) && isset($contact['endpoint_variables'][$key])) {
$contact['endpoint_identifiers'][] = escape_html($parameters[$key]['description'] . ': ' . $contact['endpoint_variables'][$key]);
}
}
}
$contact['endpoint_descr'] = implode('<br />', $contact['endpoint_identifiers']);
} else {
$contact['endpoint_descr'] = escape_html($contact['contact_endpoint']);
}
if ($transport === 'syscontact') {
$transport_name = 'sysContact';
$transport_status = $contact['contact_disabled'] ? '<span class="label label-error">disabled</span>' : '<span class="label label-success">enabled</span>';
$contact['endpoint_descr'] = 'Device specified contact in sysContact field (email only)';
} elseif (!isset($config['transports'][$transport])) {
// Transport undefined (removed or limited to Pro)
$transport_name = nicecase($transport) . ' (Missing)';
$transport_status = '<span class="label">missing</span>';
} else {
$transport_name = $config['transports'][$transport]['name'];
$transport_status = $contact['contact_disabled'] ? '<span class="label label-error">disabled</span>' : '<span class="label label-success">enabled</span>';
}
echo ' <tr>';
echo ' <td></td>';
echo ' <td>'.$contact['contact_id'].'</td>';
echo ' <td><span class="label">'.$transport_name.'</span></td>';
echo ' <td class="text-nowrap">'.escape_html($contact['contact_descr']).'</td>';
echo ' <td><a href="' . generate_url(array('page' => 'contact', 'contact_id' => $contact['contact_id'])) . '">' . $contact['endpoint_descr'] . '</a></td>';
echo ' <td><span class="label label-primary">'.$num_assocs.'</span></td>';
echo ' <td>' . $transport_status . '</td>';
echo ' <td style="text-align: right;">';
if ($_SESSION['userlevel'] >= 10 && $transport !== 'syscontact') {
echo '
<div class="btn-group btn-group-xs" role="group" aria-label="Contact actions">
<a class="btn btn-danger" role="group" title="Delete" href="#modal-contact_delete_' . $contact['contact_id'] . '" data-toggle="modal"><i class="icon-trash"></i></a>
</div>';
}
echo '</td>';
echo ' </tr>';
/* now in defaults for generate_form_modal()
$modal_args = array(
//'hide' => TRUE,
//'fade' => TRUE,
//'role' => 'dialog',
//'class' => 'modal-md',
);
*/
$form = array('type' => 'horizontal',
'userlevel' => 10, // Minimum user level for display form
'id' => 'modal-contact_delete_'.$contact['contact_id'],
'title' => 'Delete Contact "' . escape_html($contact['contact_descr']) .
'" (Id: '. $contact['contact_id'] . ', ' . $config['transports'][$contact['contact_method']]['name'] . ')',
//'modal_args' => $modal_args, // modal specific options
//'help' => 'This will delete the selected contact and any alert assocations.',
//'class' => '', // Clean default box class (default for modals)
//'url' => 'delhost/'
);
//$form['fieldset']['body'] = array('class' => 'modal-body'); // Required this class for modal body!
//$form['fieldset']['footer'] = array('class' => 'modal-footer'); // Required this class for modal footer!
$form['row'][0]['contact_id'] = array(
'type' => 'hidden',
'fieldset' => 'body',
'value' => $contact['contact_id']);
$form['row'][0]['action'] = array(
'type' => 'hidden',
'fieldset' => 'body',
'value' => 'delete_contact');
$form['row'][6]['confirm_'.$contact['contact_id']] = array(
'type' => 'checkbox',
'fieldset' => 'body',
//'offset' => FALSE,
'name' => 'Confirm',
'placeholder' => 'Yes, please delete this contact!',
'onchange' => "javascript: toggleAttrib('disabled', 'delete_button_".$contact['contact_id']."'); showDiv(!this.checked, 'warning_".$contact['contact_id']."_div');",
'value' => 'confirm');
$form['row'][7]['warning_'.$contact['contact_id']] = array(
'type' => 'html',
'fieldset' => 'body',
'html' => '<h4 class="alert-heading"><i class="icon-warning-sign"></i> Warning!</h4>' .
' Are you sure you want to delete this contact?',
'div_style' => 'display: none', // hide initially
'div_class' => 'alert alert-warning');
$form['row'][8]['close'] = array(
'type' => 'submit',
'fieldset' => 'footer',
'div_class' => '', // Clean default form-action class!
'name' => 'Close',
'icon' => '',
'attribs' => array('data-dismiss' => 'modal', // dismiss modal
'aria-hidden' => 'true')); // do not sent any value
$form['row'][9]['delete_button_'.$contact['contact_id']] = array(
'type' => 'submit',
'fieldset' => 'footer',
'div_class' => '', // Clean default form-action class!
'name' => 'Delete Contact',
'icon' => 'icon-trash icon-white',
//'right' => TRUE,
'class' => 'btn-danger',
'disabled' => TRUE,
'value' => 'contact_delete');
$modals .= generate_form_modal($form);
unset($form);
}
?>
</tbody>
</table>
<?php
echo generate_box_close();
echo $modals;
unset($modals);
} else {
// We don't have contacts. Say so.
print_warning("There are currently no contacts configured.");
}
?>
</div> <!-- col-sm-12 -->
</div> <!-- row -->
<?php
// EOF