123 lines
6.3 KiB
PHP
123 lines
6.3 KiB
PHP
<?php
|
|
//
|
|
// ZoneMinder web frame view file, $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.
|
|
//
|
|
|
|
if ( !canView( 'Events' ) ) {
|
|
$view = "error";
|
|
return;
|
|
}
|
|
|
|
require_once('includes/Frame.php');
|
|
|
|
$eid = validInt($_REQUEST['eid']);
|
|
if ( !empty($_REQUEST['fid']) )
|
|
$fid = validInt($_REQUEST['fid']);
|
|
|
|
$Event = new Event( $eid );
|
|
$Monitor = $Event->Monitor();
|
|
|
|
if ( !empty($fid) ) {
|
|
$sql = 'SELECT * FROM Frames WHERE EventId = ? AND FrameId = ?';
|
|
if ( !($frame = dbFetchOne( $sql, NULL, array($eid, $fid) )) )
|
|
$frame = array( 'FrameId'=>$fid, 'Type'=>'Normal', 'Score'=>0 );
|
|
} else {
|
|
$frame = dbFetchOne( 'SELECT * FROM Frames WHERE EventId = ? AND Score = ?', NULL, array( $eid, $Event->MaxScore() ) );
|
|
}
|
|
$Frame = new Frame( $frame );
|
|
|
|
$maxFid = $Event->Frames();
|
|
|
|
$firstFid = 1;
|
|
$prevFid = $Frame->FrameId()-1;
|
|
$nextFid = $Frame->FrameId()+1;
|
|
$lastFid = $maxFid;
|
|
|
|
$alarmFrame = $Frame->Type()=='Alarm';
|
|
|
|
if ( isset( $_REQUEST['scale'] ) ) {
|
|
$scale = validInt($_REQUEST['scale']);
|
|
} else if ( isset( $_COOKIE['zmWatchScale'.$Monitor->Id()] ) ) {
|
|
$scale = $_COOKIE['zmWatchScale'.$Monitor->Id()];
|
|
} else if ( isset( $_COOKIE['zmWatchScale'] ) ) {
|
|
$scale = $_COOKIE['zmWatchScale'];
|
|
} else {
|
|
$scale = max( reScale( SCALE_BASE, $Monitor->DefaultScale(), ZM_WEB_DEFAULT_SCALE ), SCALE_BASE );
|
|
}
|
|
|
|
$imageData = $Event->getImageSrc( $frame, $scale, (isset($_REQUEST['show']) && $_REQUEST['show']=="capt") );
|
|
|
|
$imagePath = $imageData['thumbPath'];
|
|
$eventPath = $imageData['eventPath'];
|
|
$dImagePath = sprintf( "%s/%0".ZM_EVENT_IMAGE_DIGITS."d-diag-d.jpg", $eventPath, $Frame->FrameId() );
|
|
$rImagePath = sprintf( "%s/%0".ZM_EVENT_IMAGE_DIGITS."d-diag-r.jpg", $eventPath, $Frame->FrameId() );
|
|
|
|
$focusWindow = true;
|
|
|
|
xhtmlHeaders(__FILE__, translate('Frame')." - ".$Event->Id()." - ".$Frame->FrameId() );
|
|
?>
|
|
<body>
|
|
<div id="page">
|
|
<div id="header">
|
|
<form>
|
|
<div id="headerButtons">
|
|
<?php if ( ZM_RECORD_EVENT_STATS && $alarmFrame ) { echo makePopupLink( '?view=stats&eid='.$Event->Id().'&fid='.$Frame->FrameId(), 'zmStats', 'stats', translate('Stats') ); } ?>
|
|
<?php if ( canEdit( 'Events' ) ) { ?><a href="?view=none&action=delete&markEid=<?php echo $Event->Id() ?>"><?php echo translate('Delete') ?></a><?php } ?>
|
|
<a href="#" onclick="closeWindow(); return( false );"><?php echo translate('Close') ?></a>
|
|
</div>
|
|
<div id="scaleControl"><label for="scale"><?php echo translate('Scale') ?></label><?php echo buildSelect( "scale", $scales, "changeScale();" ); ?></div>
|
|
<h2><?php echo translate('Frame') ?> <?php echo $Event->Id()."-".$Frame->FrameId()." (".$Frame->Score().")" ?></h2>
|
|
<input type="hidden" name="base_width" id="base_width" value="<?php echo $Event->Width(); ?>"/>
|
|
<input type="hidden" name="base_height" id="base_height" value="<?php echo $Event->Height(); ?>"/>
|
|
</form>
|
|
</div>
|
|
<div id="content">
|
|
<p id="image">
|
|
<?php if ( in_array($event['VideoWriter'],array("1","2")) ) { ?>
|
|
<img src="?view=image-ffmpeg&eid=<?php echo $event['Id'] ?>&fid=<?php echo $frame['FrameId'] ?>&scale=<?php echo $event['DefaultScale'] ?>" class="<?php echo $imageData['imageClass'] ?>">
|
|
<?php } else {
|
|
if ( $imageData['hasAnalImage'] ) { ?>
|
|
<a href="?view=frame&eid=<?php echo $Event->Id() ?>&fid=<?php echo $Frame->FrameId() ?>&scale=<?php echo $scale ?>&show=<?php echo $imageData['isAnalImage']?"capt":"anal" ?>">
|
|
<?php } ?>
|
|
<img id="frameImg" src="<?php echo $Frame->getImageSrc($imageData['isAnalImage']?'analyse':'capture') ?>" width="<?php echo reScale( $Event->Width(), $Event->DefaultScale(), $scale ) ?>" height="<?php echo reScale( $Event->Height(), $Event->DefaultScale(), $scale ) ?>" alt="<?php echo $Frame->EventId()."-".$Frame->FrameId() ?>" class="<?php echo $imageData['imageClass'] ?>"/>
|
|
<?php if ( $imageData['hasAnalImage'] ) { ?></a><?php } ?>
|
|
<?php } ?>
|
|
</p>
|
|
<p id="controls">
|
|
<?php if ( $Frame->FrameId() > 1 ) { ?>
|
|
<a id="firstLink" href="?view=frame&eid=<?php echo $Event->Id() ?>&fid=<?php echo $firstFid ?>&scale=<?php echo $scale ?>"><?php echo translate('First') ?></a>
|
|
<?php } if ( $Frame->FrameId() > 1 ) { ?>
|
|
<a id="prevLink" href="?view=frame&eid=<?php echo $Event->Id() ?>&fid=<?php echo $prevFid ?>&scale=<?php echo $scale ?>"><?php echo translate('Prev') ?></a>
|
|
<?php } if ( $Frame->FrameId() < $maxFid ) { ?>
|
|
<a id="nextLink" href="?view=frame&eid=<?php echo $Event->Id() ?>&fid=<?php echo $nextFid ?>&scale=<?php echo $scale ?>"><?php echo translate('Next') ?></a>
|
|
<?php } if ( $Frame->FrameId() < $maxFid ) { ?>
|
|
<a id="lastLink" href="?view=frame&eid=<?php echo $Event->Id() ?>&fid=<?php echo $lastFid ?>&scale=<?php echo $scale ?>"><?php echo translate('Last') ?></a>
|
|
<?php } ?>
|
|
</p>
|
|
<?php if (file_exists ($dImagePath)) { ?>
|
|
<p id="diagImagePath"><?php echo $dImagePath ?></p>
|
|
<p id="diagImage"><img src=?"<?php echo viewImagePath( $dImagePath ) ?>" width="<?php echo reScale( $Event->Width(), $Event->DefaultScale(), $scale ) ?>" height="<?php echo reScale( $Event->Height(), $Event->DefaultScale(), $scale ) ?>" class="<?php echo $imageData['imageClass'] ?>"/></p>
|
|
<?php } if (file_exists ($rImagePath)) { ?>
|
|
<p id="refImagePath"><?php echo $rImagePath ?></p>
|
|
<p id="refImage"><img src="<?php echo viewImagePath( $rImagePath ) ?>" width="<?php echo reScale( $Event->Width(), $Event->DefaultScale(), $scale ) ?>" height="<?php echo reScale( $Event->Height(), $Event->DefaultScale(), $scale ) ?>" class="<?php echo $imageData['imageClass'] ?>"/></p>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|