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, monitor id derived, require edit permissions for that monitor
|
2021-03-14 01:10:55 +08:00
|
|
|
if ( !canEdit('Monitors') ) {
|
2019-05-31 22:35:18 +08:00
|
|
|
ZM\Warning('Monitor actions require Monitors Permissions');
|
2019-01-04 22:26:34 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-09-23 02:33:26 +08:00
|
|
|
if ( $action == 'save' ) {
|
2019-01-04 22:26:34 +08:00
|
|
|
$mid = 0;
|
|
|
|
if ( !empty($_REQUEST['mid']) ) {
|
|
|
|
$mid = validInt($_REQUEST['mid']);
|
2020-02-26 07:13:42 +08:00
|
|
|
if ( !canEdit('Monitors', $mid) ) {
|
2019-09-20 02:56:16 +08:00
|
|
|
ZM\Warning('You do not have permission to edit this monitor');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if ( ZM_OPT_X10 ) {
|
2021-02-02 05:44:41 +08:00
|
|
|
$x10Monitor = dbFetchOne('SELECT * FROM TriggersX10 WHERE MonitorId=?', NULL, array($mid));
|
2021-03-14 01:10:55 +08:00
|
|
|
if ( !$x10Monitor ) $x10Monitor = array();
|
2019-09-20 02:56:16 +08:00
|
|
|
}
|
2021-02-02 05:44:41 +08:00
|
|
|
} else {
|
2019-09-20 02:56:16 +08:00
|
|
|
if ( $user['MonitorIds'] ) {
|
|
|
|
ZM\Warning('You are restricted to certain monitors so cannot add a new one.');
|
|
|
|
return;
|
|
|
|
}
|
2021-02-02 05:44:41 +08:00
|
|
|
if ( ZM_OPT_X10 ) {
|
|
|
|
$x10Monitor = array();
|
|
|
|
}
|
2019-01-04 22:26:34 +08:00
|
|
|
}
|
2019-09-20 02:56:16 +08:00
|
|
|
|
2019-09-09 00:26:11 +08:00
|
|
|
$monitor = new ZM\Monitor($mid);
|
2019-01-04 22:26:34 +08:00
|
|
|
|
|
|
|
// Define a field type for anything that's not simple text equivalent
|
|
|
|
$types = array(
|
2019-11-30 03:49:43 +08:00
|
|
|
'Triggers' => array(),
|
|
|
|
'Controllable' => 0,
|
|
|
|
'TrackMotion' => 0,
|
2021-04-24 00:56:45 +08:00
|
|
|
'ModectDuringPTZ' => 0,
|
2019-11-30 03:49:43 +08:00
|
|
|
'Enabled' => 0,
|
2020-12-11 05:24:09 +08:00
|
|
|
'DecodingEnabled' => 0,
|
2019-11-30 03:49:43 +08:00
|
|
|
'Exif' => 0,
|
|
|
|
'RTSPDescribe' => 0,
|
2020-02-26 07:13:42 +08:00
|
|
|
'V4LMultiBuffer' => '',
|
2019-11-30 03:49:43 +08:00
|
|
|
'RecordAudio' => 0,
|
2019-01-04 22:26:34 +08:00
|
|
|
'Method' => 'raw',
|
2019-11-30 03:49:43 +08:00
|
|
|
'GroupIds' => array(),
|
2021-02-18 01:07:55 +08:00
|
|
|
'LinkedMonitors' => array(),
|
|
|
|
'RTSPServer' => 0
|
2019-01-04 22:26:34 +08:00
|
|
|
);
|
|
|
|
|
2019-11-30 03:49:43 +08:00
|
|
|
# Checkboxes don't return an element in the POST data, so won't be present in newMonitor.
|
|
|
|
# So force a value for these fields
|
|
|
|
foreach ( $types as $field => $value ) {
|
|
|
|
if ( ! isset($_REQUEST['newMonitor'][$field] ) ) {
|
|
|
|
$_REQUEST['newMonitor'][$field] = $value;
|
|
|
|
}
|
|
|
|
} # end foreach type
|
|
|
|
|
2019-01-04 22:26:34 +08:00
|
|
|
if ( $_REQUEST['newMonitor']['ServerId'] == 'auto' ) {
|
|
|
|
$_REQUEST['newMonitor']['ServerId'] = dbFetchOne(
|
|
|
|
'SELECT Id FROM Servers WHERE Status=\'Running\' ORDER BY FreeMem DESC, CpuLoad ASC LIMIT 1', 'Id');
|
2020-10-14 22:39:25 +08:00
|
|
|
ZM\Debug('Auto selecting server: Got ' . $_REQUEST['newMonitor']['ServerId']);
|
2019-05-31 22:35:18 +08:00
|
|
|
if ( ( !$_REQUEST['newMonitor'] ) and defined('ZM_SERVER_ID') ) {
|
2019-01-04 22:26:34 +08:00
|
|
|
$_REQUEST['newMonitor']['ServerId'] = ZM_SERVER_ID;
|
2020-10-14 22:39:25 +08:00
|
|
|
ZM\Debug('Auto selecting server to ' . ZM_SERVER_ID);
|
2019-01-04 22:26:34 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-12-11 05:24:09 +08:00
|
|
|
$changes = $monitor->changes($_REQUEST['newMonitor']);
|
2019-09-20 02:56:16 +08:00
|
|
|
$restart = false;
|
2019-01-04 22:26:34 +08:00
|
|
|
|
|
|
|
if ( count($changes) ) {
|
2021-03-14 01:10:55 +08:00
|
|
|
// monitor->Id() has a value when the db record exists
|
2019-10-16 22:08:30 +08:00
|
|
|
if ( $monitor->Id() ) {
|
2019-01-04 22:26:34 +08:00
|
|
|
|
|
|
|
# If we change anything that changes the shared mem size, zma can complain. So let's stop first.
|
2019-09-09 00:26:11 +08:00
|
|
|
if ( $monitor->Type() != 'WebSite' ) {
|
|
|
|
$monitor->zmcControl('stop');
|
2020-03-27 01:57:00 +08:00
|
|
|
if ( $monitor->Controllable() ) {
|
|
|
|
$monitor->sendControlCommand('stop');
|
|
|
|
}
|
2019-01-04 22:26:34 +08:00
|
|
|
}
|
2019-09-23 23:42:49 +08:00
|
|
|
|
|
|
|
# These are used in updating zones
|
|
|
|
$oldW = $monitor->Width();
|
|
|
|
$oldH = $monitor->Height();
|
|
|
|
|
2019-09-20 02:56:16 +08:00
|
|
|
if ( $monitor->save($changes) ) {
|
|
|
|
|
|
|
|
// Groups will be added below
|
|
|
|
if ( isset($changes['Name']) or isset($changes['StorageId']) ) {
|
|
|
|
// creating symlinks when symlink already exists reports errors, but is perfectly ok
|
|
|
|
error_reporting(0);
|
|
|
|
|
2019-09-23 23:42:49 +08:00
|
|
|
$OldStorage = $monitor->Storage();
|
2019-09-20 02:56:16 +08:00
|
|
|
$saferOldName = basename($monitor->Name());
|
|
|
|
if ( file_exists($OldStorage->Path().'/'.$saferOldName) )
|
|
|
|
unlink($OldStorage->Path().'/'.$saferOldName);
|
|
|
|
|
|
|
|
$NewStorage = new ZM\Storage($_REQUEST['newMonitor']['StorageId']);
|
|
|
|
if ( !file_exists($NewStorage->Path().'/'.$mid) ) {
|
|
|
|
if ( !mkdir($NewStorage->Path().'/'.$mid, 0755) ) {
|
|
|
|
ZM\Error('Unable to mkdir ' . $NewStorage->Path().'/'.$mid);
|
|
|
|
}
|
2019-01-04 22:26:34 +08:00
|
|
|
}
|
2019-09-20 02:56:16 +08:00
|
|
|
$saferNewName = basename($_REQUEST['newMonitor']['Name']);
|
|
|
|
$link_path = $NewStorage->Path().'/'.$saferNewName;
|
2020-11-02 06:55:08 +08:00
|
|
|
// Use a relative path for the target so the link continues to work from backups or directory changes.
|
|
|
|
if ( !symlink($mid, $link_path) ) {
|
2019-09-20 02:56:16 +08:00
|
|
|
if ( ! ( file_exists($link_path) and is_link($link_path) ) ) {
|
|
|
|
ZM\Warning('Unable to symlink ' . $NewStorage->Path().'/'.$mid . ' to ' . $NewStorage->Path().'/'.$saferNewName);
|
|
|
|
}
|
2019-01-04 22:26:34 +08:00
|
|
|
}
|
2019-09-20 02:56:16 +08:00
|
|
|
} // end if Name or Storage Area Change
|
|
|
|
|
|
|
|
if ( isset($changes['Width']) || isset($changes['Height']) ) {
|
|
|
|
$newW = $_REQUEST['newMonitor']['Width'];
|
|
|
|
$newH = $_REQUEST['newMonitor']['Height'];
|
|
|
|
|
|
|
|
$zones = dbFetchAll('SELECT * FROM Zones WHERE MonitorId=?', NULL, array($mid));
|
2019-09-23 23:42:49 +08:00
|
|
|
|
|
|
|
if ( ($newW == $oldH) and ($newH == $oldW) ) {
|
|
|
|
foreach ( $zones as $zone ) {
|
|
|
|
$newZone = $zone;
|
|
|
|
# Rotation, no change to area etc just swap the coords
|
|
|
|
$newZone = $zone;
|
|
|
|
$points = coordsToPoints($zone['Coords']);
|
|
|
|
for ( $i = 0; $i < count($points); $i++ ) {
|
|
|
|
$x = $points[$i]['x'];
|
|
|
|
$points[$i]['x'] = $points[$i]['y'];
|
|
|
|
$points[$i]['y'] = $x;
|
|
|
|
|
2019-09-23 23:48:58 +08:00
|
|
|
if ( $points[$i]['x'] > ($newW-1) ) {
|
2019-09-23 23:42:49 +08:00
|
|
|
ZM\Warning("Correcting x {$points[$i]['x']} > $newW of zone {$newZone['Name']} as it extends outside the new dimensions");
|
2019-09-23 23:48:58 +08:00
|
|
|
$points[$i]['x'] = ($newW-1);
|
2019-09-23 23:42:49 +08:00
|
|
|
}
|
2019-09-23 23:48:58 +08:00
|
|
|
if ( $points[$i]['y'] > ($newH-1) ) {
|
|
|
|
ZM\Warning("Correcting y {$points[$i]['y']} $newH of zone {$newZone['Name']} as it extends outside the new dimensions");
|
|
|
|
$points[$i]['y'] = ($newH-1);
|
2019-09-23 23:42:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$newZone['Coords'] = pointsToCoords($points);
|
|
|
|
$changes = getFormChanges($zone, $newZone, $types);
|
|
|
|
|
|
|
|
if ( count($changes) ) {
|
|
|
|
dbQuery('UPDATE Zones SET '.implode(', ', $changes).' WHERE MonitorId=? AND Id=?',
|
|
|
|
array($mid, $zone['Id']));
|
|
|
|
}
|
|
|
|
} # end foreach zone
|
|
|
|
} else {
|
|
|
|
$newA = $newW * $newH;
|
|
|
|
$oldA = $oldW * $oldH;
|
|
|
|
|
|
|
|
foreach ( $zones as $zone ) {
|
|
|
|
$newZone = $zone;
|
|
|
|
$points = coordsToPoints($zone['Coords']);
|
|
|
|
for ( $i = 0; $i < count($points); $i++ ) {
|
|
|
|
$points[$i]['x'] = intval(($points[$i]['x']*($newW-1))/($oldW-1));
|
|
|
|
$points[$i]['y'] = intval(($points[$i]['y']*($newH-1))/($oldH-1));
|
2019-09-23 23:48:58 +08:00
|
|
|
if ( $points[$i]['x'] > ($newW-1) ) {
|
2019-09-23 23:42:49 +08:00
|
|
|
ZM\Warning("Correcting x of zone {$newZone['Name']} as it extends outside the new dimensions");
|
2019-09-23 23:48:58 +08:00
|
|
|
$points[$i]['x'] = ($newW-1);
|
2019-09-23 23:42:49 +08:00
|
|
|
}
|
2019-09-23 23:48:58 +08:00
|
|
|
if ( $points[$i]['y'] > ($newH-1) ) {
|
2019-09-23 23:42:49 +08:00
|
|
|
ZM\Warning("Correcting y of zone {$newZone['Name']} as it extends outside the new dimensions");
|
2019-09-23 23:48:58 +08:00
|
|
|
$points[$i]['y'] = ($newH-1);
|
2019-09-23 23:42:49 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
$newZone['Coords'] = pointsToCoords($points);
|
|
|
|
$newZone['Area'] = intval(round(($zone['Area']*$newA)/$oldA));
|
|
|
|
$newZone['MinAlarmPixels'] = intval(round(($newZone['MinAlarmPixels']*$newA)/$oldA));
|
|
|
|
$newZone['MaxAlarmPixels'] = intval(round(($newZone['MaxAlarmPixels']*$newA)/$oldA));
|
|
|
|
$newZone['MinFilterPixels'] = intval(round(($newZone['MinFilterPixels']*$newA)/$oldA));
|
|
|
|
$newZone['MaxFilterPixels'] = intval(round(($newZone['MaxFilterPixels']*$newA)/$oldA));
|
|
|
|
$newZone['MinBlobPixels'] = intval(round(($newZone['MinBlobPixels']*$newA)/$oldA));
|
|
|
|
$newZone['MaxBlobPixels'] = intval(round(($newZone['MaxBlobPixels']*$newA)/$oldA));
|
|
|
|
|
|
|
|
$changes = getFormChanges($zone, $newZone, $types);
|
|
|
|
|
|
|
|
if ( count($changes) ) {
|
|
|
|
dbQuery('UPDATE Zones SET '.implode(', ', $changes).' WHERE MonitorId=? AND Id=?',
|
|
|
|
array($mid, $zone['Id']));
|
|
|
|
}
|
|
|
|
} // end foreach zone
|
|
|
|
} // end if rotation or just size change
|
|
|
|
} // end if changes in width or height
|
2020-12-30 01:18:26 +08:00
|
|
|
} else {
|
|
|
|
global $error_message;
|
|
|
|
$error_message = dbError();
|
2019-09-20 02:56:16 +08:00
|
|
|
} // end if successful save
|
2019-01-04 22:26:34 +08:00
|
|
|
$restart = true;
|
2019-09-20 02:56:16 +08:00
|
|
|
} else { // new monitor
|
2019-01-04 22:26:34 +08:00
|
|
|
// Can only create new monitors if we are not restricted to specific monitors
|
|
|
|
# FIXME This is actually a race condition. Should lock the table.
|
|
|
|
$maxSeq = dbFetchOne('SELECT MAX(Sequence) AS MaxSequence FROM Monitors', 'MaxSequence');
|
2019-09-09 00:26:11 +08:00
|
|
|
$changes['Sequence'] = $maxSeq+1;
|
2021-03-14 01:10:55 +08:00
|
|
|
if ( $mid ) $changes['Id'] = $mid; # mid specified in request, doesn't exist in db, will re-use slot
|
2019-01-04 22:26:34 +08:00
|
|
|
|
2021-02-02 05:44:41 +08:00
|
|
|
if ( $monitor->insert($changes) ) {
|
2019-09-09 00:26:11 +08:00
|
|
|
$mid = $monitor->Id();
|
2019-01-04 22:26:34 +08:00
|
|
|
$zoneArea = $_REQUEST['newMonitor']['Width'] * $_REQUEST['newMonitor']['Height'];
|
|
|
|
dbQuery("INSERT INTO Zones SET MonitorId = ?, Name = 'All', Type = 'Active', Units = 'Percent', NumCoords = 4, Coords = ?, Area=?, AlarmRGB = 0xff0000, CheckMethod = 'Blobs', MinPixelThreshold = 25, MinAlarmPixels=?, MaxAlarmPixels=?, FilterX = 3, FilterY = 3, MinFilterPixels=?, MaxFilterPixels=?, MinBlobPixels=?, MinBlobs = 1", array( $mid, sprintf( "%d,%d %d,%d %d,%d %d,%d", 0, 0, $_REQUEST['newMonitor']['Width']-1, 0, $_REQUEST['newMonitor']['Width']-1, $_REQUEST['newMonitor']['Height']-1, 0, $_REQUEST['newMonitor']['Height']-1 ), $zoneArea, intval(($zoneArea*3)/100), intval(($zoneArea*75)/100), intval(($zoneArea*3)/100), intval(($zoneArea*75)/100), intval(($zoneArea*2)/100) ) );
|
|
|
|
//$view = 'none';
|
2019-09-09 00:26:11 +08:00
|
|
|
$Storage = $monitor->Storage();
|
2019-10-16 22:08:30 +08:00
|
|
|
|
|
|
|
error_reporting(0);
|
2019-01-04 22:26:34 +08:00
|
|
|
mkdir($Storage->Path().'/'.$mid, 0755);
|
|
|
|
$saferName = basename($_REQUEST['newMonitor']['Name']);
|
|
|
|
symlink($mid, $Storage->Path().'/'.$saferName);
|
|
|
|
|
|
|
|
} else {
|
2019-02-22 22:19:07 +08:00
|
|
|
ZM\Error('Error saving new Monitor.');
|
2019-01-04 22:26:34 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-25 22:14:12 +08:00
|
|
|
if ( isset($changes['GroupIds']) ) {
|
|
|
|
dbQuery('DELETE FROM Groups_Monitors WHERE MonitorId=?', array($mid));
|
|
|
|
foreach ( $changes['GroupIds'] as $group_id ) {
|
|
|
|
dbQuery('INSERT INTO Groups_Monitors (GroupId, MonitorId) VALUES (?,?)', array($group_id, $mid));
|
|
|
|
}
|
|
|
|
} // end if there has been a change of groups
|
|
|
|
|
2019-01-04 22:26:34 +08:00
|
|
|
$restart = true;
|
|
|
|
} else {
|
2020-10-14 22:39:25 +08:00
|
|
|
ZM\Debug('No action due to no changes to Monitor');
|
2019-01-04 22:26:34 +08:00
|
|
|
} # end if count(changes)
|
|
|
|
|
2019-09-20 02:56:16 +08:00
|
|
|
if ( !$mid ) {
|
|
|
|
ZM\Error("We should have a mid by now. Something went wrong.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-01-04 22:26:34 +08:00
|
|
|
if ( ZM_OPT_X10 ) {
|
|
|
|
$x10Changes = getFormChanges($x10Monitor, $_REQUEST['newX10Monitor']);
|
|
|
|
|
|
|
|
if ( count($x10Changes) ) {
|
|
|
|
if ( $x10Monitor && isset($_REQUEST['newX10Monitor']) ) {
|
|
|
|
dbQuery('UPDATE TriggersX10 SET '.implode(', ', $x10Changes).' WHERE MonitorId=?', array($mid));
|
|
|
|
} elseif ( !$user['MonitorIds'] ) {
|
|
|
|
if ( !$x10Monitor ) {
|
|
|
|
dbQuery('INSERT INTO TriggersX10 SET MonitorId = ?, '.implode(', ', $x10Changes), array($mid));
|
|
|
|
} else {
|
|
|
|
dbQuery('DELETE FROM TriggersX10 WHERE MonitorId = ?', array($mid));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$restart = true;
|
|
|
|
} # end if has x10Changes
|
|
|
|
} # end if ZM_OPT_X10
|
|
|
|
|
|
|
|
if ( $restart ) {
|
2019-09-09 00:26:11 +08:00
|
|
|
if ( $monitor->Function() != 'None' and $monitor->Type() != 'WebSite' ) {
|
|
|
|
$monitor->zmcControl('start');
|
2019-01-04 22:26:34 +08:00
|
|
|
|
2019-09-09 00:26:11 +08:00
|
|
|
if ( $monitor->Controllable() ) {
|
2020-03-27 01:57:00 +08:00
|
|
|
$monitor->sendControlCommand('start');
|
2019-05-31 22:15:02 +08:00
|
|
|
}
|
2019-01-04 22:26:34 +08:00
|
|
|
}
|
|
|
|
// really should thump zmwatch and maybe zmtrigger too.
|
|
|
|
//daemonControl( 'restart', 'zmwatch.pl' );
|
|
|
|
} // end if restart
|
2020-09-23 02:05:37 +08:00
|
|
|
$redirect = '?view=console';
|
2019-01-04 22:26:34 +08:00
|
|
|
} else {
|
2019-02-22 22:19:07 +08:00
|
|
|
ZM\Warning("Unknown action $action in Monitor");
|
2019-01-04 22:26:34 +08:00
|
|
|
} // end if action == Delete
|
|
|
|
?>
|