2008-07-14 21:54:50 +08:00
< ? php
//
// ZoneMinder web events view file, $Date$, $Revision$
2008-07-25 17:48:16 +08:00
// Copyright (C) 2001-2008 Philip Coombes
2008-07-14 21:54:50 +08:00
//
// 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
//
if ( ! canView ( 'Events' ) || ( ! empty ( $_REQUEST [ 'execute' ]) && ! canEdit ( 'Events' )) )
{
2008-09-26 17:47:20 +08:00
$view = " error " ;
2008-07-14 21:54:50 +08:00
return ;
}
if ( ! empty ( $_REQUEST [ 'execute' ]) )
{
2008-10-20 16:25:24 +08:00
executeFilter ( $tempFilterName );
2008-07-14 21:54:50 +08:00
}
2014-03-22 05:16:56 +08:00
$countSql = 'SELECT count(E.Id) AS EventCount FROM Monitors AS M INNER JOIN Events AS E ON (M.Id = E.MonitorId) WHERE' ;
$eventsSql = 'SELECT E.Id,E.MonitorId,M.Name AS MonitorName,M.DefaultScale,E.Name,E.Width,E.Height,E.Cause,E.Notes,E.StartTime,E.Length,E.Frames,E.AlarmFrames,E.TotScore,E.AvgScore,E.MaxScore,E.Archived FROM Monitors AS M INNER JOIN Events AS E on (M.Id = E.MonitorId) WHERE' ;
if ( $user [ 'MonitorIds' ] ) {
2015-02-24 03:34:13 +08:00
$user_monitor_ids = ' M.Id in (' . $user [ 'MonitorIds' ] . ')' ;
2014-03-22 05:16:56 +08:00
$countSql .= $user_monitor_ids ;
$eventsSql .= $user_monitor_ids ;
} else {
2008-07-14 21:54:50 +08:00
$countSql .= " 1 " ;
$eventsSql .= " 1 " ;
}
parseSort ();
parseFilter ( $_REQUEST [ 'filter' ] );
$filterQuery = $_REQUEST [ 'filter' ][ 'query' ];
if ( $_REQUEST [ 'filter' ][ 'sql' ] )
{
$countSql .= $_REQUEST [ 'filter' ][ 'sql' ];
$eventsSql .= $_REQUEST [ 'filter' ][ 'sql' ];
}
2014-03-22 05:16:56 +08:00
$eventsSql .= " ORDER BY $sortColumn $sortOrder " ;
2008-07-14 21:54:50 +08:00
2008-09-26 17:47:20 +08:00
if ( isset ( $_REQUEST [ 'page' ]) )
$page = validInt ( $_REQUEST [ 'page' ]);
else
$page = 0 ;
if ( isset ( $_REQUEST [ 'limit' ]) )
$limit = validInt ( $_REQUEST [ 'limit' ]);
else
$limit = 0 ;
2008-07-14 21:54:50 +08:00
$nEvents = dbFetchOne ( $countSql , 'EventCount' );
2008-09-26 17:47:20 +08:00
if ( ! empty ( $limit ) && $nEvents > $limit )
2008-07-14 21:54:50 +08:00
{
2008-09-26 17:47:20 +08:00
$nEvents = $limit ;
2008-07-14 21:54:50 +08:00
}
$pages = ( int ) ceil ( $nEvents / ZM_WEB_EVENTS_PER_PAGE );
2014-03-22 05:16:56 +08:00
if ( $pages > 1 ) {
if ( ! empty ( $page ) ) {
2008-09-26 17:47:20 +08:00
if ( $page < 0 )
$page = 1 ;
if ( $page > $pages )
$page = $pages ;
2008-07-14 21:54:50 +08:00
}
}
2014-03-22 05:16:56 +08:00
if ( ! empty ( $page ) ) {
2008-09-26 17:47:20 +08:00
$limitStart = (( $page - 1 ) * ZM_WEB_EVENTS_PER_PAGE );
if ( empty ( $limit ) )
2008-07-14 21:54:50 +08:00
{
2008-09-26 17:47:20 +08:00
$limitAmount = ZM_WEB_EVENTS_PER_PAGE ;
2008-07-14 21:54:50 +08:00
}
else
{
2008-09-26 17:47:20 +08:00
$limitLeft = $limit - $limitStart ;
$limitAmount = ( $limitLeft > ZM_WEB_EVENTS_PER_PAGE ) ? ZM_WEB_EVENTS_PER_PAGE : $limitLeft ;
2008-07-14 21:54:50 +08:00
}
2008-09-26 17:47:20 +08:00
$eventsSql .= " limit $limitStart , $limitAmount " ;
2014-03-22 05:16:56 +08:00
} elseif ( ! empty ( $limit ) ) {
$eventsSql .= " limit 0, " . $limit ;
2008-07-14 21:54:50 +08:00
}
$maxWidth = 0 ;
$maxHeight = 0 ;
$archived = false ;
$unarchived = false ;
$events = array ();
foreach ( dbFetchAll ( $eventsSql ) as $event )
{
$events [] = $event ;
$scale = max ( reScale ( SCALE_BASE , $event [ 'DefaultScale' ], ZM_WEB_DEFAULT_SCALE ), SCALE_BASE );
$eventWidth = reScale ( $event [ 'Width' ], $scale );
$eventHeight = reScale ( $event [ 'Height' ], $scale );
if ( $maxWidth < $eventWidth ) $maxWidth = $eventWidth ;
if ( $maxHeight < $eventHeight ) $maxHeight = $eventHeight ;
if ( $event [ 'Archived' ] )
$archived = true ;
else
$unarchived = true ;
}
$maxShortcuts = 5 ;
2009-10-17 01:09:16 +08:00
$pagination = getPagination ( $pages , $page , $maxShortcuts , $filterQuery . $sortQuery . '&limit=' . $limit );
2008-07-14 21:54:50 +08:00
$focusWindow = true ;
2015-05-10 21:10:30 +08:00
xhtmlHeaders ( __FILE__ , translate ( 'Events' ) );
2008-07-14 21:54:50 +08:00
?>
< body >
< div id = " page " >
< div id = " header " >
< div id = " headerButtons " >
< ? php
if ( $pages > 1 )
{
2008-09-26 17:47:20 +08:00
if ( ! empty ( $page ) )
2008-07-14 21:54:50 +08:00
{
?>
2015-05-10 21:10:30 +08:00
< a href = " ?view=<?php echo $view ?>&page=0<?php echo $filterQuery ?><?php echo $sortQuery ?>&limit=<?php echo $limit ?> " >< ? php echo translate ( 'ViewAll' ) ?> </a>
2008-07-14 21:54:50 +08:00
< ? php
}
else
{
?>
2015-05-10 21:10:30 +08:00
< a href = " ?view=<?php echo $view ?>&page=1<?php echo $filterQuery ?><?php echo $sortQuery ?>&limit=<?php echo $limit ?> " >< ? php echo translate ( 'ViewPaged' ) ?> </a>
2008-07-14 21:54:50 +08:00
< ? php
}
}
?>
2015-05-10 21:10:30 +08:00
< a href = " # " onclick = " closeWindows(); " >< ? php echo translate ( 'Close' ) ?> </a>
2008-07-14 21:54:50 +08:00
</ div >
2014-12-05 07:44:23 +08:00
< h2 >< ? php echo sprintf ( $CLANG [ 'EventCount' ], $nEvents , zmVlang ( $VLANG [ 'Event' ], $nEvents ) ) ?> </h2>
2008-07-14 21:54:50 +08:00
</ div >
< div id = " content " >
< form name = " contentForm " id = " contentForm " method = " post " action = " " >
2014-12-05 07:44:23 +08:00
< input type = " hidden " name = " view " value = " <?php echo $view ?> " />
2008-07-14 21:54:50 +08:00
< input type = " hidden " name = " action " value = " " />
2014-12-05 07:44:23 +08:00
< input type = " hidden " name = " page " value = " <?php echo $page ?> " />
< ? php echo $_REQUEST [ 'filter' ][ 'fields' ] ?>
< input type = " hidden " name = " sort_field " value = " <?php echo validHtmlStr( $_REQUEST['sort_field'] ) ?> " />
< input type = " hidden " name = " sort_asc " value = " <?php echo validHtmlStr( $_REQUEST['sort_asc'] ) ?> " />
< input type = " hidden " name = " limit " value = " <?php echo $limit ?> " />
2008-07-14 21:54:50 +08:00
< ? php
if ( $pagination )
{
?>
2014-12-05 07:44:23 +08:00
< h3 class = " pagination " >< ? php echo $pagination ?> </h3>
2008-07-14 21:54:50 +08:00
< ? php
}
?>
< p id = " controls " >
2015-05-10 21:10:30 +08:00
< a id = " refreshLink " href = " # " onclick = " location.reload(true); " >< ? php echo translate ( 'Refresh' ) ?> </a>
< a id = " filterLink " href = " # " onclick = " createPopup( '?view=filter&page=<?php echo $page ?><?php echo $filterQuery ?>', 'zmFilter', 'filter' ); " >< ? php echo translate ( 'ShowFilterWindow' ) ?> </a>
< a id = " timelineLink " href = " # " onclick = " createPopup( '?view=timeline<?php echo $filterQuery ?>', 'zmTimeline', 'timeline' ); " >< ? php echo translate ( 'ShowTimeline' ) ?> </a>
2008-07-14 21:54:50 +08:00
</ p >
2009-10-17 01:09:16 +08:00
< table id = " contentTable " class = " major " cellspacing = " 0 " >
2008-07-14 21:54:50 +08:00
< tbody >
< ? php
$count = 0 ;
foreach ( $events as $event )
{
if ( ( $count ++% ZM_WEB_EVENTS_PER_PAGE ) == 0 )
{
?>
< tr >
2015-05-10 21:10:30 +08:00
< th class = " colId " >< a href = " <?php echo sortHeader( 'Id' ) ?> " >< ? php echo translate ( 'Id' ) ?> <?php echo sortTag( 'Id' ) ?></a></th>
< th class = " colName " >< a href = " <?php echo sortHeader( 'Name' ) ?> " >< ? php echo translate ( 'Name' ) ?> <?php echo sortTag( 'Name' ) ?></a></th>
< th class = " colMonitor " >< a href = " <?php echo sortHeader( 'MonitorName' ) ?> " >< ? php echo translate ( 'Monitor' ) ?> <?php echo sortTag( 'MonitorName' ) ?></a></th>
< th class = " colCause " >< a href = " <?php echo sortHeader( 'Cause' ) ?> " >< ? php echo translate ( 'Cause' ) ?> <?php echo sortTag( 'Cause' ) ?></a></th>
< th class = " colTime " >< a href = " <?php echo sortHeader( 'StartTime' ) ?> " >< ? php echo translate ( 'Time' ) ?> <?php echo sortTag( 'StartTime' ) ?></a></th>
< th class = " colDuration " >< a href = " <?php echo sortHeader( 'Length' ) ?> " >< ? php echo translate ( 'Duration' ) ?> <?php echo sortTag( 'Length' ) ?></a></th>
< th class = " colFrames " >< a href = " <?php echo sortHeader( 'Frames' ) ?> " >< ? php echo translate ( 'Frames' ) ?> <?php echo sortTag( 'Frames' ) ?></a></th>
< th class = " colAlarmFrames " >< a href = " <?php echo sortHeader( 'AlarmFrames' ) ?> " >< ? php echo translate ( 'AlarmBrFrames' ) ?> <?php echo sortTag( 'AlarmFrames' ) ?></a></th>
< th class = " colTotScore " >< a href = " <?php echo sortHeader( 'TotScore' ) ?> " >< ? php echo translate ( 'TotalBrScore' ) ?> <?php echo sortTag( 'TotScore' ) ?></a></th>
< th class = " colAvgScore " >< a href = " <?php echo sortHeader( 'AvgScore' ) ?> " >< ? php echo translate ( 'AvgBrScore' ) ?> <?php echo sortTag( 'AvgScore' ) ?></a></th>
< th class = " colMaxScore " >< a href = " <?php echo sortHeader( 'MaxScore' ) ?> " >< ? php echo translate ( 'MaxBrScore' ) ?> <?php echo sortTag( 'MaxScore' ) ?></a></th>
2008-07-14 21:54:50 +08:00
< ? php
if ( ZM_WEB_LIST_THUMBS )
{
?>
2015-05-10 21:10:30 +08:00
< th class = " colThumbnail " >< ? php echo translate ( 'Thumbnail' ) ?> </th>
2008-07-14 21:54:50 +08:00
< ? php
}
?>
< th class = " colMark " >< input type = " checkbox " name = " toggleCheck " value = " 1 " onclick = " toggleCheckbox( this, 'markEids' ); " < ? php if ( ! canEdit ( 'Events' ) ) { ?> disabled="disabled"<?php } ?>/></th>
</ tr >
< ? php
}
$scale = max ( reScale ( SCALE_BASE , $event [ 'DefaultScale' ], ZM_WEB_DEFAULT_SCALE ), SCALE_BASE );
?>
< tr >
2014-12-05 07:44:23 +08:00
< td class = " colId " >< ? php echo makePopupLink ( '?view=event&eid=' . $event [ 'Id' ] . $filterQuery . $sortQuery . '&page=1' , 'zmEvent' , array ( 'event' , reScale ( $event [ 'Width' ], $scale ), reScale ( $event [ 'Height' ], $scale ) ), $event [ 'Id' ] . ( $event [ 'Archived' ] ? '*' : '' ) ) ?> </td>
< td class = " colName " >< ? php echo makePopupLink ( '?view=event&eid=' . $event [ 'Id' ] . $filterQuery . $sortQuery . '&page=1' , 'zmEvent' , array ( 'event' , reScale ( $event [ 'Width' ], $event [ 'DefaultScale' ], ZM_WEB_DEFAULT_SCALE ), reScale ( $event [ 'Height' ], $event [ 'DefaultScale' ], ZM_WEB_DEFAULT_SCALE ) ), validHtmlStr ( $event [ 'Name' ]) . ( $event [ 'Archived' ] ? '*' : '' ) ) ?> </td>
< td class = " colMonitorName " >< ? php echo $event [ 'MonitorName' ] ?> </td>
< td class = " colCause " >< ? php echo makePopupLink ( '?view=eventdetail&eid=' . $event [ 'Id' ], 'zmEventDetail' , 'eventdetail' , validHtmlStr ( $event [ 'Cause' ]), canEdit ( 'Events' ), 'title="' . htmlspecialchars ( $event [ 'Notes' ]) . '"' ) ?> </td>
< td class = " colTime " >< ? php echo strftime ( STRF_FMT_DATETIME_SHORTER , strtotime ( $event [ 'StartTime' ]) ) ?> </td>
2014-12-19 23:18:27 +08:00
< td class = " colDuration " >< ? php echo gmdate ( " H:i:s " , $event [ 'Length' ] ) ?> </td>
2014-12-05 07:44:23 +08:00
< td class = " colFrames " >< ? php echo makePopupLink ( '?view=frames&eid=' . $event [ 'Id' ], 'zmFrames' , 'frames' , $event [ 'Frames' ] ) ?> </td>
< td class = " colAlarmFrames " >< ? php echo makePopupLink ( '?view=frames&eid=' . $event [ 'Id' ], 'zmFrames' , 'frames' , $event [ 'AlarmFrames' ] ) ?> </td>
< td class = " colTotScore " >< ? php echo $event [ 'TotScore' ] ?> </td>
< td class = " colAvgScore " >< ? php echo $event [ 'AvgScore' ] ?> </td>
< td class = " colMaxScore " >< ? php echo makePopupLink ( '?view=frame&eid=' . $event [ 'Id' ] . '&fid=0' , 'zmImage' , array ( 'image' , reScale ( $event [ 'Width' ], $scale ), reScale ( $event [ 'Height' ], $scale ) ), $event [ 'MaxScore' ] ) ?> </td>
2008-07-14 21:54:50 +08:00
< ? php
if ( ZM_WEB_LIST_THUMBS )
{
2008-09-30 23:29:14 +08:00
if ( $thumbData = createListThumbnail ( $event ) )
{
2008-07-14 21:54:50 +08:00
?>
2014-12-05 07:44:23 +08:00
< td class = " colThumbnail " >< ? php echo makePopupLink ( '?view=frame&eid=' . $event [ 'Id' ] . '&fid=' . $thumbData [ 'FrameId' ], 'zmImage' , array ( 'image' , reScale ( $event [ 'Width' ], $scale ), reScale ( $event [ 'Height' ], $scale ) ), '<img src="' . viewImagePath ( $thumbData [ 'Path' ] ) . '" width="' . $thumbData [ 'Width' ] . '" height="' . $thumbData [ 'Height' ] . '" alt="' . $thumbData [ 'FrameId' ] . '/' . $event [ 'MaxScore' ] . '"/>' ) ?> </td>
2008-07-14 21:54:50 +08:00
< ? php
2008-09-30 23:29:14 +08:00
}
else
{
?>
< td class = " colThumbnail " >& nbsp ; </ td >
< ? php
}
2008-07-14 21:54:50 +08:00
}
?>
2014-12-05 07:44:23 +08:00
< td class = " colMark " >< input type = " checkbox " name = " markEids[] " value = " <?php echo $event['Id'] ?> " onclick = " configureButton( this, 'markEids' ); " < ? php if ( ! canEdit ( 'Events' ) ) { ?> disabled="disabled"<?php } ?>/></td>
2008-07-14 21:54:50 +08:00
</ tr >
< ? php
}
?>
</ tbody >
</ table >
< ? php
if ( $pagination )
{
?>
2014-12-05 07:44:23 +08:00
< h3 class = " pagination " >< ? php echo $pagination ?> </h3>
2008-07-14 21:54:50 +08:00
< ? php
}
if ( true || canEdit ( 'Events' ) )
{
?>
< div id = " contentButtons " >
2015-05-10 21:10:30 +08:00
< input type = " button " name = " viewBtn " value = " <?php echo translate('View') ?> " onclick = " viewEvents( this, 'markEids' ); " disabled = " disabled " />
< input type = " button " name = " archiveBtn " value = " <?php echo translate('Archive') ?> " onclick = " archiveEvents( this, 'markEids' ) " disabled = " disabled " />
< input type = " button " name = " unarchiveBtn " value = " <?php echo translate('Unarchive') ?> " onclick = " unarchiveEvents( this, 'markEids' ); " disabled = " disabled " />
< input type = " button " name = " editBtn " value = " <?php echo translate('Edit') ?> " onclick = " editEvents( this, 'markEids' ) " disabled = " disabled " />
< input type = " button " name = " exportBtn " value = " <?php echo translate('Export') ?> " onclick = " exportEvents( this, 'markEids' ) " disabled = " disabled " />
< input type = " button " name = " deleteBtn " value = " <?php echo translate('Delete') ?> " onclick = " deleteEvents( this, 'markEids' ); " disabled = " disabled " />
2008-07-14 21:54:50 +08:00
</ div >
< ? php
}
?>
</ form >
</ div >
</ div >
</ body >
</ html >