2019-01-04 22:26:34 +08:00
< ? 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.
//
// System edit actions
2019-01-04 22:37:26 +08:00
if ( ! canEdit ( 'System' ) ) {
2019-02-22 22:19:07 +08:00
ZM\Warning ( 'Must have System permissions to perform options actions' );
2019-01-04 22:26:34 +08:00
return ;
}
2022-02-09 02:29:51 +08:00
global $error_message ;
2019-01-04 22:26:34 +08:00
if ( $action == 'delete' ) {
if ( isset ( $_REQUEST [ 'object' ]) ) {
if ( $_REQUEST [ 'object' ] == 'server' ) {
if ( ! empty ( $_REQUEST [ 'markIds' ]) ) {
foreach ( $_REQUEST [ 'markIds' ] as $Id )
dbQuery ( 'DELETE FROM Servers WHERE Id=?' , array ( $Id ));
}
$refreshParent = true ;
} else if ( $_REQUEST [ 'object' ] == 'storage' ) {
if ( ! empty ( $_REQUEST [ 'markIds' ]) ) {
foreach ( $_REQUEST [ 'markIds' ] as $Id )
dbQuery ( 'DELETE FROM Storage WHERE Id=?' , array ( $Id ));
}
$refreshParent = true ;
} # end if isset($_REQUEST['object'] )
} else if ( isset ( $_REQUEST [ 'markUids' ]) ) {
// deletes users
foreach ( $_REQUEST [ 'markUids' ] as $markUid )
dbQuery ( 'DELETE FROM Users WHERE Id = ?' , array ( $markUid ));
if ( $markUid == $user [ 'Id' ] )
userLogout ();
}
} else if ( $action == 'options' && isset ( $_REQUEST [ 'tab' ]) ) {
2019-01-04 22:43:36 +08:00
$result = dbQuery ( 'SELECT Name,Value,Type FROM Config WHERE Category=? ORDER BY Id ASC' , array ( $_REQUEST [ 'tab' ]));
if ( ! $result ) {
echo mysql_error ();
return ;
}
2019-01-04 22:26:34 +08:00
$changed = false ;
2021-02-19 02:46:29 +08:00
while ( $config = dbFetchNext ( $result )) {
2019-01-04 22:26:34 +08:00
unset ( $newValue );
2021-02-19 02:46:29 +08:00
if ( ( $config [ 'Type' ] == 'boolean' ) and empty ( $_REQUEST [ 'newConfig' ][ $config [ 'Name' ]]) ) {
2019-01-04 22:26:34 +08:00
$newValue = 0 ;
2019-01-04 22:43:36 +08:00
} else if ( isset ( $_REQUEST [ 'newConfig' ][ $config [ 'Name' ]]) ) {
$newValue = preg_replace ( " / \r \n / " , " \n " , stripslashes ( $_REQUEST [ 'newConfig' ][ $config [ 'Name' ]]));
2019-01-04 22:26:34 +08:00
}
2019-01-04 22:43:36 +08:00
if ( isset ( $newValue ) && ( $newValue != $config [ 'Value' ]) ) {
2022-02-09 02:29:51 +08:00
# Handle special cases first
if ( $config [ 'Name' ] == 'ZM_LANG_DEFAULT' ) {
# Verify that the language file exists in the lang directory.
if ( ! file_exists ( ZM_PATH_WEB . '/lang/' . $newValue . '.php' )) {
$error_message .= 'Error setting ' . $config [ 'Name' ] . '. New value ' . $newValue . ' not saved because ' . ZM_PATH_WEB . '/lang/' . $newValue . '.php doesn\'t exist.<br/>' ;
ZM\Error ( $error_message );
continue ;
}
}
2019-01-04 22:43:36 +08:00
dbQuery ( 'UPDATE Config SET Value=? WHERE Name=?' , array ( $newValue , $config [ 'Name' ]));
2019-01-04 22:26:34 +08:00
$changed = true ;
2022-02-09 02:29:51 +08:00
} # end if value changed
} # end foreach config entry
2019-01-04 22:26:34 +08:00
if ( $changed ) {
2019-06-05 04:30:57 +08:00
switch ( $_REQUEST [ 'tab' ] ) {
2019-01-04 22:26:34 +08:00
case 'system' :
case 'config' :
$restartWarning = true ;
break ;
2019-05-12 22:56:17 +08:00
case 'API' :
2019-01-04 22:26:34 +08:00
case 'web' :
case 'tools' :
break ;
case 'logging' :
case 'network' :
case 'mail' :
case 'upload' :
$restartWarning = true ;
break ;
case 'highband' :
case 'medband' :
case 'lowband' :
break ;
}
2019-02-10 14:12:36 +08:00
$redirect = '?view=options&tab=' . $_REQUEST [ 'tab' ];
2019-06-05 04:27:25 +08:00
loadConfig ( false );
# Might need to update auth hash
2019-06-05 04:30:57 +08:00
# This doesn't work because the config are constants and won't really be loaded until the next refresh.
#generateAuthHash(ZM_AUTH_HASH_IPS, true);
2019-01-04 22:26:34 +08:00
}
return ;
} // end if object vs action
?>