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.
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
// Monitor edit actions, require a monitor id and edit permissions for that monitor
|
2019-01-17 21:50:33 +08:00
|
|
|
if ( empty($_REQUEST['mid']) ) {
|
2019-02-22 22:19:07 +08:00
|
|
|
ZM\Error('Must specify mid');
|
2019-01-17 21:50:33 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
$mid = validInt($_REQUEST['mid']);
|
|
|
|
if ( !canEdit('Monitors', $mid) ) {
|
2019-02-22 22:19:07 +08:00
|
|
|
ZM\Error("You do not have permission to edit monitor $mid");
|
2019-01-17 21:50:33 +08:00
|
|
|
return;
|
|
|
|
}
|
2019-01-04 22:26:34 +08:00
|
|
|
|
2019-01-17 21:50:33 +08:00
|
|
|
if ( $action == 'function' ) {
|
2020-09-04 06:21:08 +08:00
|
|
|
$monitor = new ZM\Monitor($mid);
|
2020-09-30 04:48:22 +08:00
|
|
|
if ( !$monitor->Id() ) {
|
2020-09-04 06:21:08 +08:00
|
|
|
ZM\Error("Monitor not found with Id=$mid");
|
|
|
|
return;
|
|
|
|
}
|
2019-01-04 22:26:34 +08:00
|
|
|
|
2019-01-17 21:50:33 +08:00
|
|
|
$newFunction = validStr($_REQUEST['newFunction']);
|
|
|
|
# Because we use a checkbox, it won't get passed in the request. So not being in _REQUEST means 0
|
|
|
|
$newEnabled = ( !isset($_REQUEST['newEnabled']) or $_REQUEST['newEnabled'] != '1' ) ? '0' : '1';
|
2021-03-17 00:09:14 +08:00
|
|
|
$newDecodingEnabled = ( !isset($_REQUEST['newDecodingEnabled']) or $_REQUEST['newDecodingEnabled'] != '1' ) ? '0' : '1';
|
2020-09-04 06:21:08 +08:00
|
|
|
$oldFunction = $monitor->Function();
|
|
|
|
$oldEnabled = $monitor->Enabled();
|
2021-03-17 00:09:14 +08:00
|
|
|
$oldDecodingEnabled = $monitor->DecodingEnabled();
|
|
|
|
if ( $newFunction != $oldFunction || $newEnabled != $oldEnabled || $newDecodingEnabled != $oldDecodingEnabled ) {
|
|
|
|
$monitor->save(array('Function'=>$newFunction, 'Enabled'=>$newEnabled, 'DecodingEnabled'=>$newDecodingEnabled));
|
2019-01-17 21:50:33 +08:00
|
|
|
|
2020-09-04 06:21:08 +08:00
|
|
|
if ( daemonCheck() && ($monitor->Type() != 'WebSite') ) {
|
2020-09-30 04:48:22 +08:00
|
|
|
$monitor->zmcControl(($newFunction != 'None') ? 'restart' : 'stop');
|
2019-01-04 22:26:34 +08:00
|
|
|
}
|
2019-01-17 21:50:33 +08:00
|
|
|
} else {
|
2020-10-14 22:39:25 +08:00
|
|
|
ZM\Debug('No change to function, not doing anything.');
|
2019-01-17 21:50:33 +08:00
|
|
|
}
|
|
|
|
} // end if action
|
2020-10-07 23:59:11 +08:00
|
|
|
$redirect = '?view=console';
|
2019-01-04 22:26:34 +08:00
|
|
|
?>
|