zoneminder/web/skins/classic/includes/control_functions.php

362 lines
14 KiB
PHP
Raw Normal View History

<?php
//
// ZoneMinder web control function library, $Date$, $Revision$
// Copyright (C) 2001-2008 Philip Coombes
//
// 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.
//
2018-05-16 23:14:11 +08:00
function getControlCommands( $monitor ) {
$cmds = array();
$cmds['Wake'] = 'wake';
$cmds['Sleep'] = 'sleep';
$cmds['Reset'] = 'reset';
$cmds['PresetSet'] = 'presetSet';
$cmds['PresetGoto'] = 'presetGoto';
$cmds['PresetHome'] = 'presetHome';
2018-05-16 23:14:11 +08:00
if ( $monitor->CanZoom() ) {
if ( $monitor->CanZoomCon() )
$cmds['ZoomRoot'] = 'zoomCon';
2018-05-16 23:14:11 +08:00
elseif ( $monitor->CanZoomRel() )
$cmds['ZoomRoot'] = 'zoomRel';
2018-05-16 23:14:11 +08:00
elseif ( $monitor->CanZoomAbs() )
$cmds['ZoomRoot'] = 'zoomAbs';
$cmds['ZoomTele'] = $cmds['ZoomRoot'].'Tele';
$cmds['ZoomWide'] = $cmds['ZoomRoot'].'Wide';
$cmds['ZoomStop'] = 'zoomStop';
$cmds['ZoomAuto'] = 'zoomAuto';
$cmds['ZoomMan'] = 'zoomMan';
2018-05-16 23:14:11 +08:00
}
2018-05-16 23:14:11 +08:00
if ( $monitor->CanFocus() ) {
if ( $monitor->CanFocusCon() )
$cmds['FocusRoot'] = 'focusCon';
2018-05-16 23:14:11 +08:00
elseif ( $monitor->CanFocusRel() )
$cmds['FocusRoot'] = 'focusRel';
2018-05-16 23:14:11 +08:00
elseif ( $monitor->CanFocusAbs() )
$cmds['FocusRoot'] = 'focusAbs';
$cmds['FocusFar'] = $cmds['FocusRoot'].'Far';
$cmds['FocusNear'] = $cmds['FocusRoot'].'Near';
$cmds['FocusStop'] = 'focusStop';
$cmds['FocusAuto'] = 'focusAuto';
$cmds['FocusMan'] = 'focusMan';
2018-05-16 23:14:11 +08:00
}
2018-05-16 23:14:11 +08:00
if ( $monitor->CanIris() ) {
if ( $monitor->CanIrisCon() )
$cmds['IrisRoot'] = 'irisCon';
2018-05-16 23:14:11 +08:00
elseif ( $monitor->CanIrisRel() )
$cmds['IrisRoot'] = 'irisRel';
2018-05-16 23:14:11 +08:00
elseif ( $monitor->CanIrisAbs() )
$cmds['IrisRoot'] = 'irisAbs';
$cmds['IrisOpen'] = $cmds['IrisRoot'].'Open';
$cmds['IrisClose'] = $cmds['IrisRoot'].'Close';
$cmds['IrisStop'] = 'irisStop';
$cmds['IrisAuto'] = 'irisAuto';
$cmds['IrisMan'] = 'irisMan';
2018-05-16 23:14:11 +08:00
}
2018-05-16 23:14:11 +08:00
if ( $monitor->CanWhite() ) {
if ( $monitor->CanWhiteCon() )
$cmds['WhiteRoot'] = 'whiteCon';
2018-05-16 23:14:11 +08:00
elseif ( $monitor->CanWhiteRel() )
$cmds['WhiteRoot'] = 'whiteRel';
2018-05-16 23:14:11 +08:00
elseif ( $monitor->CanWhiteAbs() )
$cmds['WhiteRoot'] = 'whiteAbs';
$cmds['WhiteIn'] = $cmds['WhiteRoot'].'In';
$cmds['WhiteOut'] = $cmds['WhiteRoot'].'Out';
$cmds['WhiteAuto'] = 'whiteAuto';
$cmds['WhiteMan'] = 'whiteMan';
2018-05-16 23:14:11 +08:00
}
2018-05-16 23:14:11 +08:00
if ( $monitor->CanGain() ) {
if ( $monitor->CanGainCon() )
$cmds['GainRoot'] = 'gainCon';
2018-05-16 23:14:11 +08:00
elseif ( $monitor->CanGainRel() )
$cmds['GainRoot'] = 'gainRel';
2018-05-16 23:14:11 +08:00
elseif ( $monitor->CanGainAbs() )
$cmds['GainRoot'] = 'gainAbs';
$cmds['GainUp'] = $cmds['GainRoot'].'Up';
$cmds['GainDown'] = $cmds['GainRoot'].'Down';
$cmds['GainAuto'] = 'gainAuto';
$cmds['GainMan'] = 'gainMan';
2018-05-16 23:14:11 +08:00
}
2018-05-16 23:14:11 +08:00
if ( $monitor->CanMove() ) {
if ( $monitor->CanMoveCon() ) {
$cmds['MoveRoot'] = 'moveCon';
$cmds['Center'] = 'moveStop';
2018-05-16 23:14:11 +08:00
} elseif ( $monitor->CanMoveRel() ) {
$cmds['MoveRoot'] = 'moveRel';
2018-05-16 23:14:11 +08:00
$cmds['Center'] = $cmds['PresetHome'];
} elseif ( $monitor->CanMoveAbs() ) {
$cmds['MoveRoot'] = 'moveAbs';
2018-05-16 23:14:11 +08:00
$cmds['Center'] = $cmds['PresetHome'];
} else {
$cmds['MoveRoot'] = '';
}
2018-05-16 23:14:11 +08:00
$cmds['MoveUp'] = $cmds['MoveRoot'].'Up';
$cmds['MoveDown'] = $cmds['MoveRoot'].'Down';
$cmds['MoveLeft'] = $cmds['MoveRoot'].'Left';
$cmds['MoveRight'] = $cmds['MoveRoot'].'Right';
$cmds['MoveUpLeft'] = $cmds['MoveRoot'].'UpLeft';
$cmds['MoveUpRight'] = $cmds['MoveRoot'].'UpRight';
$cmds['MoveDownLeft'] = $cmds['MoveRoot'].'DownLeft';
$cmds['MoveDownRight'] = $cmds['MoveRoot'].'DownRight';
2018-05-16 23:14:11 +08:00
}
return( $cmds );
}
2018-05-16 23:14:11 +08:00
function controlFocus( $monitor, $cmds ) {
ob_start();
?>
<div class="arrowControl focusControls">
2015-05-10 21:10:30 +08:00
<div class="arrowLabel"><?php echo translate('Near') ?></div>
<button type="button" class="longArrowBtn upBtn" onclick="controlCmd('<?php echo $cmds['FocusNear'] ?>',event,0,-1)"></button>
<button type="button" class="arrowCenter"<?php if ( $monitor->CanFocusCon() ) { ?> onclick="controlCmd('<?php echo $cmds['FocusStop'] ?>')"<?php } ?>><?php echo translate('Focus') ?></button>
<button type="button" class="longArrowBtn downBtn" onclick="controlCmd('<?php echo $cmds['FocusFar'] ?>',event,0,1)"></button>
2015-05-10 21:10:30 +08:00
<div class="arrowLabel"><?php echo translate('Far') ?></div>
<?php
2018-05-16 23:14:11 +08:00
if ( $monitor->CanAutoFocus() ) {
?>
<button type="button" class="ptzTextBtn" value="<?php echo $cmds['FocusAuto'] ?>" onclick="controlCmd('<?php echo $cmds['FocusAuto'] ?>')"><?php echo translate('Auto') ?></button>
<button type="button" class="ptzTextBtn" value="<?php echo $cmds['FocusMan'] ?>" onclick="controlCmd('<?php echo $cmds['FocusMan'] ?>')"><?php echo translate('Man') ?></button>
<?php
2018-05-16 23:14:11 +08:00
}
?>
</div>
<?php
2018-05-16 23:14:11 +08:00
return ob_get_clean();
}
2018-05-16 23:14:11 +08:00
function controlZoom( $monitor, $cmds ) {
global $SLANG;
2018-05-16 23:14:11 +08:00
ob_start();
?>
<div class="arrowControl zoomControls">
2015-05-10 21:10:30 +08:00
<div class="arrowLabel"><?php echo translate('Tele') ?></div>
<button type="button" class="longArrowBtn upBtn" onclick="controlCmd('<?php echo $cmds['ZoomTele'] ?>',event,0,-1)"></button>
<button type="button" class="arrowCenter"<?php if ( $monitor->CanZoomCon() ) { ?> onclick="controlCmd('<?php echo $cmds['ZoomStop'] ?>')"<?php } ?>><?php echo translate('Zoom') ?></button>
<button type="button" class="longArrowBtn downBtn" onclick="controlCmd('<?php echo $cmds['ZoomWide'] ?>',event,0,1)"></button>
2015-05-10 21:10:30 +08:00
<div class="arrowLabel"><?php echo translate('Wide') ?></div>
<?php
2018-05-16 23:14:11 +08:00
if ( $monitor->CanAutoZoom() ) {
?>
<button type="button" class="ptzTextBtn" value="Auto" onclick="controlCmd('<?php echo $cmds['ZoomAuto'] ?>')"><?php echo translate('Auto') ?></button>
<button type="button" class="ptzTextBtn" value="Man" onclick="controlCmd('<?php echo $cmds['ZoomMan'] ?>')"><?php echo translate('Man') ?></button>
<?php
2018-05-16 23:14:11 +08:00
}
?>
</div><?php
2018-05-16 23:14:11 +08:00
return ob_get_clean();
}
2018-05-16 23:14:11 +08:00
function controlIris( $monitor, $cmds ) {
global $SLANG;
2018-05-16 23:14:11 +08:00
ob_start();
?>
<div class="arrowControl irisControls">
2015-05-10 21:10:30 +08:00
<div class="arrowLabel"><?php echo translate('Open') ?></div>
<button type="button" class="longArrowBtn upBtn" onclick="controlCmd('<?php echo $cmds['IrisOpen'] ?>',event,0,-1)"></button>
<button type="button" class="arrowCenter"<?php if ( $monitor->CanIrisCon() ) { ?> onclick="controlCmd('<?php echo $cmds['IrisStop'] ?>')"<?php } ?>><?php echo translate('Iris') ?></button>
<button type="button" class="longArrowBtn downBtn" onclick="controlCmd('<?php echo $cmds['IrisClose'] ?>',event,0,1)"></button>
2015-05-10 21:10:30 +08:00
<div class="arrowLabel"><?php echo translate('Close') ?></div>
<?php
2018-05-16 23:14:11 +08:00
if ( $monitor->CanAutoIris() ) {
?>
<button type="button" class="ptzTextBtn" value="Auto" onclick="controlCmd('<?php echo $cmds['IrisAuto'] ?>')"><?php echo translate('Auto') ?></button>
<button type="button" class="ptzTextBtn" value="Man" onclick="controlCmd('<?php echo $cmds['IrisMan'] ?>')"><?php echo translate('Man') ?></button>
<?php
2018-05-16 23:14:11 +08:00
}
?>
</div>
<?php
2018-05-16 23:14:11 +08:00
return ob_get_clean();
}
2018-05-16 23:14:11 +08:00
function controlWhite( $monitor, $cmds ) {
global $SLANG;
2018-05-16 23:14:11 +08:00
ob_start();
?>
<div class="arrowControl whiteControls">
2015-05-10 21:10:30 +08:00
<div class="arrowLabel"><?php echo translate('In') ?></div>
<button type="button" class="longArrowBtn upBtn" onclick="controlCmd('<?php echo $cmds['WhiteIn'] ?>',event,0,-1)"></button>
<button type="button" class="arrowCenter"<?php if ( $monitor->CanWhiteCon() ) { ?> onclick="controlCmd('<?php echo $cmds['WhiteStop'] ?>')"<?php } ?>><?php echo translate('White') ?></button>
<button type="button" class="longArrowBtn downBtn" onclick="controlCmd('<?php echo $cmds['WhiteOut'] ?>',event,0,1)"></button>
2015-05-10 21:10:30 +08:00
<div class="arrowLabel"><?php echo translate('Out') ?></div>
<?php
2018-05-16 23:14:11 +08:00
if ( $monitor->CanAutoWhite() ) {
?>
<button type="button" class="ptzTextBtn" value="Auto" onclick="controlCmd('<?php echo $cmds['WhiteAuto'] ?>')"><?php echo translate('Auto') ?></button>
<button type="button" class="ptzTextBtn" value="Man" onclick="controlCmd('<?php echo $cmds['WhiteMan'] ?>')"><?php echo translate('Man') ?></button>
<?php
2018-05-16 23:14:11 +08:00
}
?>
</div>
<?php
2018-05-16 23:14:11 +08:00
return ob_get_clean();
}
2018-05-16 23:14:11 +08:00
function controlPanTilt( $monitor, $cmds ) {
global $SLANG;
2018-05-16 23:14:11 +08:00
ob_start();
?>
<div class="pantiltControls">
2016-04-04 23:38:16 +08:00
<div class="pantiltLabel"><?php echo translate('PanTilt') ?></div>
<div class="pantiltButtons">
<?php
2018-05-16 23:14:11 +08:00
$hasPan = $monitor->CanPan();
$hasTilt = $monitor->CanTilt();
$hasDiag = $hasPan && $hasTilt && $monitor->CanMoveDiag();
?>
<button type="button" class="arrowBtn upLeftBtn<?php echo $hasDiag?'':' invisible' ?>" onclick="controlCmd('<?php echo $cmds['MoveUpLeft'] ?>',event,-1,-1)"></button>
<button type="button" class="arrowBtn upBtn<?php echo $hasTilt?'':' invisible' ?>" onclick="controlCmd('<?php echo $cmds['MoveUp'] ?>',event,0,-1)"></button>
<button type="button" class="arrowBtn upRightBtn<?php echo $hasDiag?'':' invisible' ?>" onclick="controlCmd('<?php echo $cmds['MoveUpRight'] ?>',event,1,-1)"></button>
<button type="button" class="arrowBtn leftBtn<?php echo $hasPan?'':' invisible' ?>" onclick="controlCmd('<?php echo $cmds['MoveLeft'] ?>',event,1,0)"></button>
<?php if ( isset($cmds['Center']) ) { ?>
<button type="button" class="arrowBtn centerBtn" onclick="controlCmd('<?php echo $cmds['Center'] ?>')"></button>
<?php } else { ?>
<button type="button" class="arrowBtn NocenterBtn"></button>
<?php } ?>
<button type="button" class="arrowBtn rightBtn<?php echo $hasPan?'':' invisible' ?>" onclick="controlCmd('<?php echo $cmds['MoveRight'] ?>',event,1,0)"></button>
<button type="button" class="arrowBtn downLeftBtn<?php echo $hasDiag?'':' invisible' ?>" onclick="controlCmd('<?php echo $cmds['MoveDownLeft'] ?>',event,-1,1)"></button>
<button type="button" class="arrowBtn downBtn<?php echo $hasTilt?'':' invisible' ?>" onclick="controlCmd('<?php echo $cmds['MoveDown'] ?>',event,0,1)"></button>
<button type="button" class="arrowBtn downRightBtn<?php echo $hasDiag?'':' invisible' ?>" onclick="controlCmd('<?php echo $cmds['MoveDownRight'] ?>',event,1,1)"></button>
</div>
</div>
<?php
2018-05-16 23:14:11 +08:00
return ob_get_clean();
}
2018-05-16 23:14:11 +08:00
function controlPresets( $monitor, $cmds ) {
global $SLANG;
2018-05-16 23:14:11 +08:00
// MAX_PRESETS IS PER LINE
define( "MAX_PRESETS", "12" );
2018-05-16 23:14:11 +08:00
$sql = 'SELECT * FROM ControlPresets WHERE MonitorId = ?';
$labels = array();
foreach( dbFetchAll( $sql, NULL, array( $monitor->Id() ) ) as $row ) {
$labels[$row['Preset']] = $row['Label'];
}
2018-05-16 23:14:11 +08:00
$presetBreak = (int)(($monitor->NumPresets()+1)/((int)(($monitor->NumPresets()-1)/MAX_PRESETS)+1));
2018-05-16 23:14:11 +08:00
ob_start();
?>
<div class="presetControls">
2015-05-10 21:10:30 +08:00
<!--<div><?php echo translate('Presets') ?></div>-->
<div>
<?php
2018-05-16 23:14:11 +08:00
for ( $i = 1; $i <= $monitor->NumPresets(); $i++ ) {
?>
<button type="button" class="ptzNumBtn" title="<?php echo isset($labels[$i])?htmlentities($labels[$i]):'' ?>" value="<?php echo $i ?>" onclick="controlCmd('<?php echo $cmds['PresetGoto'] ?><?php echo $i ?>');"/><?php echo $i ?></button>
2018-05-16 23:14:11 +08:00
<?php
if ( $i && (($i%$presetBreak) == 0) ) {
?><br/><?php
}
2018-05-16 23:14:11 +08:00
} // end foreach preset
?>
</div>
<div>
<?php
2018-05-16 23:14:11 +08:00
if ( $monitor->HasHomePreset() ) {
?>
<button type="button" class="ptzTextBtn" value="<?php echo translate('Home') ?>" onclick="controlCmd('<?php echo $cmds['PresetHome'] ?>');"/>
<?php
2018-05-16 23:14:11 +08:00
}
if ( canEdit('Monitors') && $monitor->CanSetPresets() ) {
?>
<button type="button" class="ptzTextBtn popup-link" value="<?php echo translate('Set') ?>" data-url="?view=controlpreset&amp;mid=<?php echo $monitor->Id() ?>" data-window-name="zmPreset" data-window-tag="preset"/>
<?php
2018-05-16 23:14:11 +08:00
}
?>
</div>
</div>
<?php
2018-05-16 23:14:11 +08:00
return ob_get_clean();
}
2018-05-16 23:14:11 +08:00
function controlPower( $monitor, $cmds ) {
global $SLANG;
2018-05-16 23:14:11 +08:00
ob_start();
?>
<div class="powerControls">
2015-05-10 21:10:30 +08:00
<div class="powerLabel"><?php echo translate('Control') ?></div>
<div>
<?php
2018-05-16 23:14:11 +08:00
if ( $monitor->CanWake() ) {
?>
<button type="button" class="ptzTextBtn" value="Wake" onclick="controlCmd('<?php echo $cmds['Wake'] ?>')"><?php echo translate('Wake') ?></button>
<?php
2018-05-16 23:14:11 +08:00
}
if ( $monitor->CanSleep() ) {
?>
<button type="button" class="ptzTextBtn" value="Sleep" onclick="controlCmd('<?php echo $cmds['Sleep'] ?>')"><?php echo translate('Sleep') ?></button>
<?php
2018-05-16 23:14:11 +08:00
}
if ( $monitor->CanReset() ) {
?>
<button type="button" class="ptzTextBtn" value="Reset" onclick="controlCmd('<?php echo $cmds['Reset'] ?>')"><?php echo translate('Reset') ?></button>
<?php
2018-05-16 23:14:11 +08:00
}
?>
</div>
</div>
<?php
2018-05-16 23:14:11 +08:00
return ob_get_clean();
}
2018-05-16 23:14:11 +08:00
function ptzControls( $monitor ) {
$cmds = getControlCommands($monitor);
ob_start();
?>
2018-05-16 23:14:11 +08:00
<div class="controlsPanel">
<?php
2018-05-16 23:14:11 +08:00
if ( $monitor->CanFocus() )
echo controlFocus($monitor, $cmds);
if ( $monitor->CanZoom() )
echo controlZoom($monitor, $cmds);
if ( $monitor->CanIris() )
echo controlIris($monitor, $cmds);
if ( $monitor->CanWhite() )
echo controlWhite($monitor, $cmds);
if ( $monitor->CanMove() ) {
?>
2018-05-16 23:14:11 +08:00
<div class="pantiltPanel">
<?php echo controlPanTilt($monitor, $cmds); ?>
</div>
<?php
2018-05-16 23:14:11 +08:00
}
if ( $monitor->CanWake() || $monitor->CanSleep() || $monitor->CanReset() )
echo controlPower($monitor, $cmds);
if ( $monitor->HasPresets() )
echo controlPresets($monitor, $cmds);
?>
2018-05-16 23:14:11 +08:00
</div>
<?php
2018-05-16 23:14:11 +08:00
return ob_get_clean();
}
?>