mirror of
https://github.com/ZoneMinder/zoneminder.git
synced 2026-03-27 18:23:00 -04:00
Add a new AUDIT logging level (-5) between PANIC (-4) and NOLOG (shifted to -6) across C++, PHP, and Perl loggers. AUDIT entries use code 'AUD' and syslog priority LOG_NOTICE. They record who changed what, from where, for monitors, filters, users, config, roles, groups, zones, states, servers, storage, events, snapshots, control caps, and login/logout. AUDIT entries have their own retention period (ZM_LOG_AUDIT_DATABASE_LIMIT, default 1 year) separate from regular log pruning. The log pruning in zmstats.pl and zmaudit.pl now excludes AUDIT rows from regular pruning and prunes them independently. Critical safety: the C++ termination logic is changed from 'if (level <= FATAL)' to 'if (level == FATAL || level == PANIC)' to prevent AUDIT-level log calls from killing the process. Includes db migration zm_update-1.39.1.sql to shift any stored NOLOG config values from -5 to -6. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
102 lines
3.0 KiB
PHP
102 lines
3.0 KiB
PHP
<?php
|
|
//
|
|
// ZoneMinder web action file
|
|
// Copyright (C) 2019 ZoneMinder LLC
|
|
//
|
|
// 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.
|
|
//
|
|
|
|
|
|
if ( !canEdit('Control') ) {
|
|
ZM\Warning('Need Control permissions to edit control capabilities');
|
|
return;
|
|
} // end if !canEdit Controls
|
|
|
|
if ( $action == 'Save' ) {
|
|
require_once('includes/Control.php');
|
|
$Control = new ZM\Control( !empty($_REQUEST['cid']) ? $_REQUEST['cid'] : null );
|
|
|
|
$field_defaults = array(
|
|
'CanWake' => 0,
|
|
'CanSleep' => 0,
|
|
'CanReset' => 0,
|
|
'CanReboot' => 0,
|
|
'CanMove' => 0,
|
|
'CanMoveDiag' => 0,
|
|
'CanMoveMap' => 0,
|
|
'CanMoveRel' => 0,
|
|
'CanMoveAbs' => 0,
|
|
'CanMoveCon' => 0,
|
|
'CanPan' => 0,
|
|
'HasPanSpeed' => 0,
|
|
'HasTurboPan' => 0,
|
|
'CanTilt' => 0,
|
|
'HasTiltSpeed' => 0,
|
|
'HasTurboTilt' => 0,
|
|
'CanZoom' => 0,
|
|
'CanZoomRel' => 0,
|
|
'CanZoomAbs' => 0,
|
|
'CanZoomCon' => 0,
|
|
'HasZoomSpeed' => 0,
|
|
'CanFocus' => 0,
|
|
'CanAutoFocus' => 0,
|
|
'CanFocusRel' => 0,
|
|
'CanFocusAbs' => 0,
|
|
'CanFocusCon' => 0,
|
|
'HasFocusSpeed' => 0,
|
|
'CanGain' => 0,
|
|
'CanAutoGain' => 0,
|
|
'CanGainRel' => 0,
|
|
'CanGainAbs' => 0,
|
|
'CanGainCon' => 0,
|
|
'HasGainSpeed' => 0,
|
|
'CanWhite' => 0,
|
|
'CanAutoWhite' => 0,
|
|
'CanWhiteRel' => 0,
|
|
'CanWhiteAbs' => 0,
|
|
'CanWhiteCon' => 0,
|
|
'HasWhiteSpeed' => 0,
|
|
'CanIris' => 0,
|
|
'CanAutoIris' => 0,
|
|
'CanIrisRel' => 0,
|
|
'CanIrisAbs' => 0,
|
|
'CanIrisCon' => 0,
|
|
'HasIrisSpeed' => 0,
|
|
'HasPresets' => 0,
|
|
'HasHomePreset' => 0,
|
|
'CanSetPresets' => 0,
|
|
'CanLed' => 0,
|
|
'CanLight' => 0,
|
|
);
|
|
|
|
# Checkboxes don't return an element in the POST data, so won't be present in newControl.
|
|
# So force a value for these fields
|
|
foreach ( $field_defaults as $field => $value ) {
|
|
if ( ! (isset($_REQUEST['Control'][$field]) and $_REQUEST['Control'][$field]) ) {
|
|
$_REQUEST['Control'][$field] = $value;
|
|
}
|
|
} # end foreach type
|
|
|
|
//$changes = getFormChanges( $control, $_REQUEST['newControl'], $types, $columns );
|
|
if (!$Control->save($_REQUEST['Control'])) {
|
|
global $error_message;
|
|
$error_message .= "Error saving control: " . $Control->get_last_error().'</br>';
|
|
} else {
|
|
ZM\AuditAction((!empty($_REQUEST['cid']) ? 'update' : 'create'), 'control', $Control->Id(), 'Name: '.($Control->Name() ?? ''));
|
|
$redirect = '?view=options&tab=control';
|
|
}
|
|
} // end if action
|
|
?>
|