2014-11-01 02:46:37 +08:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// ZoneMinder web console 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
//
|
|
|
|
|
|
|
|
$eventCounts = array(
|
|
|
|
array(
|
|
|
|
"title" => $SLANG['Events'],
|
|
|
|
"filter" => array(
|
|
|
|
"terms" => array(
|
|
|
|
)
|
|
|
|
),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
"title" => $SLANG['Hour'],
|
|
|
|
"filter" => array(
|
|
|
|
"terms" => array(
|
|
|
|
array( "attr" => "DateTime", "op" => ">=", "val" => "-1 hour" ),
|
|
|
|
)
|
|
|
|
),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
"title" => $SLANG['Day'],
|
|
|
|
"filter" => array(
|
|
|
|
"terms" => array(
|
|
|
|
array( "attr" => "DateTime", "op" => ">=", "val" => "-1 day" ),
|
|
|
|
)
|
|
|
|
),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
"title" => $SLANG['Week'],
|
|
|
|
"filter" => array(
|
|
|
|
"terms" => array(
|
|
|
|
array( "attr" => "DateTime", "op" => ">=", "val" => "-7 day" ),
|
|
|
|
)
|
|
|
|
),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
"title" => $SLANG['Month'],
|
|
|
|
"filter" => array(
|
|
|
|
"terms" => array(
|
|
|
|
array( "attr" => "DateTime", "op" => ">=", "val" => "-1 month" ),
|
|
|
|
)
|
|
|
|
),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
"title" => $SLANG['Archived'],
|
|
|
|
"filter" => array(
|
|
|
|
"terms" => array(
|
|
|
|
array( "attr" => "Archived", "op" => "=", "val" => "1" ),
|
|
|
|
)
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
$group = NULL;
|
|
|
|
if ( ! empty($_COOKIE['zmGroup']) ) {
|
|
|
|
if ( $group = dbFetchOne( 'select * from Groups where Id = ?', NULL, array($_COOKIE['zmGroup'])) )
|
|
|
|
$groupIds = array_flip(explode( ',', $group['MonitorIds'] ));
|
|
|
|
}
|
|
|
|
|
|
|
|
noCacheHeaders();
|
|
|
|
|
|
|
|
$maxWidth = 0;
|
|
|
|
$maxHeight = 0;
|
|
|
|
$cycleCount = 0;
|
|
|
|
$minSequence = 0;
|
|
|
|
$maxSequence = 1;
|
|
|
|
$seqIdList = array();
|
|
|
|
$monitors = dbFetchAll( "select * from Monitors order by Sequence asc" );
|
|
|
|
$displayMonitors = array();
|
|
|
|
for ( $i = 0; $i < count($monitors); $i++ )
|
|
|
|
{
|
|
|
|
if ( !visibleMonitor( $monitors[$i]['Id'] ) )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if ( $group && !empty($groupIds) && !array_key_exists( $monitors[$i]['Id'], $groupIds ) )
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
$monitors[$i]['Show'] = true;
|
|
|
|
if ( empty($minSequence) || ($monitors[$i]['Sequence'] < $minSequence) )
|
|
|
|
{
|
|
|
|
$minSequence = $monitors[$i]['Sequence'];
|
|
|
|
}
|
|
|
|
if ( $monitors[$i]['Sequence'] > $maxSequence )
|
|
|
|
{
|
|
|
|
$maxSequence = $monitors[$i]['Sequence'];
|
|
|
|
}
|
|
|
|
$monitors[$i]['zmc'] = zmcStatus( $monitors[$i] );
|
|
|
|
$monitors[$i]['zma'] = zmaStatus( $monitors[$i] );
|
|
|
|
$monitors[$i]['ZoneCount'] = dbFetchOne( 'select count(Id) as ZoneCount from Zones where MonitorId = ?', 'ZoneCount', array($monitors[$i]['Id']) );
|
|
|
|
$counts = array();
|
|
|
|
for ( $j = 0; $j < count($eventCounts); $j++ )
|
|
|
|
{
|
|
|
|
$filter = addFilterTerm( $eventCounts[$j]['filter'], count($eventCounts[$j]['filter']['terms']), array( "cnj" => "and", "attr" => "MonitorId", "op" => "=", "val" => $monitors[$i]['Id'] ) );
|
|
|
|
parseFilter( $filter );
|
|
|
|
$counts[] = "count(if(1".$filter['sql'].",1,NULL)) as EventCount$j";
|
|
|
|
$monitors[$i]['eventCounts'][$j]['filter'] = $filter;
|
|
|
|
}
|
|
|
|
$sql = "select ".join($counts,", ")." from Events as E where MonitorId = ?";
|
|
|
|
$counts = dbFetchOne( $sql, NULL, array($monitors[$i]['Id']) );
|
|
|
|
if ( $monitors[$i]['Function'] != 'None' )
|
|
|
|
{
|
|
|
|
$cycleCount++;
|
|
|
|
$scaleWidth = reScale( $monitors[$i]['Width'], $monitors[$i]['DefaultScale'], ZM_WEB_DEFAULT_SCALE );
|
|
|
|
$scaleHeight = reScale( $monitors[$i]['Height'], $monitors[$i]['DefaultScale'], ZM_WEB_DEFAULT_SCALE );
|
|
|
|
if ( $maxWidth < $scaleWidth ) $maxWidth = $scaleWidth;
|
|
|
|
if ( $maxHeight < $scaleHeight ) $maxHeight = $scaleHeight;
|
|
|
|
}
|
|
|
|
if ( $counts ) $monitors[$i] = array_merge( $monitors[$i], $counts );
|
|
|
|
$seqIdList[] = $monitors[$i]['Id'];
|
|
|
|
$displayMonitors[] = $monitors[$i];
|
|
|
|
}
|
|
|
|
$lastId = 0;
|
|
|
|
$seqIdUpList = array();
|
|
|
|
foreach ( $seqIdList as $seqId )
|
|
|
|
{
|
|
|
|
if ( !empty($lastId) )
|
|
|
|
$seqIdUpList[$seqId] = $lastId;
|
|
|
|
else
|
|
|
|
$seqIdUpList[$seqId] = $seqId;
|
|
|
|
$lastId = $seqId;
|
|
|
|
}
|
|
|
|
$lastId = 0;
|
|
|
|
$seqIdDownList = array();
|
|
|
|
foreach ( array_reverse($seqIdList) as $seqId )
|
|
|
|
{
|
|
|
|
if ( !empty($lastId) )
|
|
|
|
$seqIdDownList[$seqId] = $lastId;
|
|
|
|
else
|
|
|
|
$seqIdDownList[$seqId] = $seqId;
|
|
|
|
$lastId = $seqId;
|
|
|
|
}
|
|
|
|
|
|
|
|
$cycleWidth = $maxWidth;
|
|
|
|
$cycleHeight = $maxHeight;
|
|
|
|
|
|
|
|
$eventsView = ZM_WEB_EVENTS_VIEW;
|
|
|
|
$eventsWindow = 'zm'.ucfirst(ZM_WEB_EVENTS_VIEW);
|
|
|
|
|
|
|
|
$eventCount = 0;
|
|
|
|
for ( $i = 0; $i < count($eventCounts); $i++ )
|
|
|
|
{
|
|
|
|
$eventCounts[$i]['total'] = 0;
|
|
|
|
}
|
|
|
|
$zoneCount = 0;
|
|
|
|
foreach( $displayMonitors as $monitor )
|
|
|
|
{
|
|
|
|
for ( $i = 0; $i < count($eventCounts); $i++ )
|
|
|
|
{
|
|
|
|
$eventCounts[$i]['total'] += $monitor['EventCount'.$i];
|
|
|
|
}
|
|
|
|
$zoneCount += $monitor['ZoneCount'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$seqUpFile = getSkinFile( 'graphics/seq-u.gif' );
|
|
|
|
$seqDownFile = getSkinFile( 'graphics/seq-d.gif' );
|
|
|
|
|
|
|
|
$versionClass = (ZM_DYN_DB_VERSION&&(ZM_DYN_DB_VERSION!=ZM_VERSION))?'errorText':'';
|
|
|
|
|
|
|
|
xhtmlHeaders( __FILE__, $SLANG['Console'] );
|
|
|
|
?>
|
|
|
|
<body>
|
|
|
|
<form name="monitorForm" method="get" action="<?= $_SERVER['PHP_SELF'] ?>">
|
|
|
|
<input type="hidden" name="view" value="<?= $view ?>"/>
|
|
|
|
<input type="hidden" name="action" value=""/>
|
2014-11-01 23:39:11 +08:00
|
|
|
|
|
|
|
<?php include("header.php"); ?>
|
2014-11-01 23:26:19 +08:00
|
|
|
|
2014-11-01 04:55:19 +08:00
|
|
|
<div id="content" class="container-fluid">
|
2014-11-01 23:26:19 +08:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-2"><?php include("sidebar.php"); ?></div>
|
|
|
|
|
|
|
|
<div class="col-md-10">
|
2014-11-01 04:55:19 +08:00
|
|
|
<table id="consoleTable" class="table table-striped">
|
2014-11-01 02:46:37 +08:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th class="colName"><?= $SLANG['Name'] ?></th>
|
|
|
|
<th class="colFunction"><?= $SLANG['Function'] ?></th>
|
|
|
|
<th class="colSource"><?= $SLANG['Source'] ?></th>
|
|
|
|
<?php
|
|
|
|
for ( $i = 0; $i < count($eventCounts); $i++ )
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<th class="colEvents"><?= $eventCounts[$i]['title'] ?></th>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<th class="colZones"><?= $SLANG['Zones'] ?></th>
|
|
|
|
<?php
|
|
|
|
if ( canEdit('Monitors') )
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<th class="colOrder"><?= $SLANG['Order'] ?></th>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<th class="colMark"><?= $SLANG['Mark'] ?></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tfoot>
|
|
|
|
<tr>
|
|
|
|
<td class="colLeftButtons" colspan="3">
|
|
|
|
</td>
|
|
|
|
<?php
|
|
|
|
for ( $i = 0; $i < count($eventCounts); $i++ )
|
|
|
|
{
|
|
|
|
parseFilter( $eventCounts[$i]['filter'] );
|
|
|
|
?>
|
|
|
|
<td class="colEvents"><?= makePopupLink( '?view='.$eventsView.'&page=1'.$eventCounts[$i]['filter']['query'], $eventsWindow, $eventsView, $eventCounts[$i]['total'], canView( 'Events' ) ) ?></td>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<td class="colZones"><?= $zoneCount ?></td>
|
2014-11-01 23:26:19 +08:00
|
|
|
<td class="colRightButtons" colspan="<?= canEdit('Monitors')?2:1 ?>"></td>
|
2014-11-01 02:46:37 +08:00
|
|
|
</tr>
|
|
|
|
</tfoot>
|
|
|
|
<tbody>
|
|
|
|
<?php
|
|
|
|
foreach( $displayMonitors as $monitor )
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<tr>
|
|
|
|
<?php
|
|
|
|
if ( !$monitor['zmc'] )
|
|
|
|
$dclass = "errorText";
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( !$monitor['zma'] )
|
|
|
|
$dclass = "warnText";
|
|
|
|
else
|
|
|
|
$dclass = "infoText";
|
|
|
|
}
|
|
|
|
if ( $monitor['Function'] == 'None' )
|
|
|
|
$fclass = "errorText";
|
|
|
|
elseif ( $monitor['Function'] == 'Monitor' )
|
|
|
|
$fclass = "warnText";
|
|
|
|
else
|
|
|
|
$fclass = "infoText";
|
|
|
|
if ( !$monitor['Enabled'] )
|
|
|
|
$fclass .= " disabledText";
|
|
|
|
$scale = max( reScale( SCALE_BASE, $monitor['DefaultScale'], ZM_WEB_DEFAULT_SCALE ), SCALE_BASE );
|
|
|
|
?>
|
|
|
|
<td class="colName"><?= makePopupLink( '?view=watch&mid='.$monitor['Id'], 'zmWatch'.$monitor['Id'], array( 'watch', reScale( $monitor['Width'], $scale ), reScale( $monitor['Height'], $scale ) ), $monitor['Name'], $running && ($monitor['Function'] != 'None') && canView( 'Stream' ) ) ?></td>
|
|
|
|
<td class="colFunction"><?= makePopupLink( '?view=function&mid='.$monitor['Id'], 'zmFunction', 'function', '<span class="'.$fclass.'">'.$SLANG['Fn'.$monitor['Function']].( empty($monitor['Enabled']) ? ', disabled' : '' ) .'</span>', canEdit( 'Monitors' ) ) ?></td>
|
|
|
|
<?php if ( $monitor['Type'] == "Local" ) { ?>
|
|
|
|
<td class="colSource"><?= makePopupLink( '?view=monitor&mid='.$monitor['Id'], 'zmMonitor'.$monitor['Id'], 'monitor', '<span class="'.$dclass.'">'.$monitor['Device'].' ('.$monitor['Channel'].')</span>', canEdit( 'Monitors' ) ) ?></td>
|
|
|
|
<?php } elseif ( $monitor['Type'] == "Remote" ) { ?>
|
|
|
|
<td class="colSource"><?= makePopupLink( '?view=monitor&mid='.$monitor['Id'], 'zmMonitor'.$monitor['Id'], 'monitor', '<span class="'.$dclass.'">'.preg_replace( '/^.*@/', '', $monitor['Host'] ).'</span>', canEdit( 'Monitors' ) ) ?></td>
|
|
|
|
<?php } elseif ( $monitor['Type'] == "File" ) { ?>
|
|
|
|
<td class="colSource"><?= makePopupLink( '?view=monitor&mid='.$monitor['Id'], 'zmMonitor'.$monitor['Id'], 'monitor', '<span class="'.$dclass.'">'.preg_replace( '/^.*\//', '', $monitor['Path'] ).'</span>', canEdit( 'Monitors' ) ) ?></td>
|
|
|
|
<?php } elseif ( $monitor['Type'] == "Ffmpeg" ) { ?>
|
|
|
|
<td class="colSource"><?= makePopupLink( '?view=monitor&mid='.$monitor['Id'], 'zmMonitor'.$monitor['Id'], 'monitor', '<span class="'.$dclass.'">'.preg_replace( '/^.*\//', '', $monitor['Path'] ).'</span>', canEdit( 'Monitors' ) ) ?></td>
|
|
|
|
<?php } elseif ( $monitor['Type'] == "Libvlc" ) {
|
|
|
|
$domain = parse_url( $monitor['Path'], PHP_URL_HOST );
|
|
|
|
$shortpath = $domain ? $domain : preg_replace( '/^.*\//', '', $monitor['Path'] );
|
|
|
|
?>
|
|
|
|
<td class="colSource"><?= makePopupLink( '?view=monitor&mid='.$monitor['Id'], 'zmMonitor'.$monitor['Id'], 'monitor', '<span class="'.$dclass.'">'.$shortpath.'</span>', canEdit( 'Monitors' ) ) ?></td>
|
|
|
|
<?php } elseif ( $monitor['Type'] == "cURL" ) { ?>
|
|
|
|
<td class="colSource"><?= makePopupLink( '?view=monitor&mid='.$monitor['Id'], 'zmMonitor'.$monitor['Id'], 'monitor', '<span class="'.$dclass.'">'.preg_replace( '/^.*\//', '', $monitor['Path'] ).'</span>', canEdit( 'Monitors' ) ) ?></td>
|
|
|
|
<?php } else { ?>
|
|
|
|
<td class="colSource"> </td>
|
|
|
|
<?php } ?>
|
|
|
|
<?php
|
|
|
|
for ( $i = 0; $i < count($eventCounts); $i++ )
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<td class="colEvents"><?= makePopupLink( '?view='.$eventsView.'&page=1'.$monitor['eventCounts'][$i]['filter']['query'], $eventsWindow, $eventsView, $monitor['EventCount'.$i], canView( 'Events' ) ) ?></td>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<td class="colZones"><?= makePopupLink( '?view=zones&mid='.$monitor['Id'], 'zmZones', array( 'zones', $monitor['Width'], $monitor['Height'] ), $monitor['ZoneCount'], canView( 'Monitors' ) ) ?></td>
|
|
|
|
<?php
|
|
|
|
if ( canEdit('Monitors') )
|
|
|
|
{
|
|
|
|
?>
|
|
|
|
<td class="colOrder"><?= makeLink( '?view='.$view.'&action=sequence&mid='.$monitor['Id'].'&smid='.$seqIdUpList[$monitor['Id']], '<img src="'.$seqUpFile.'" alt="Up"/>', $monitor['Sequence']>$minSequence ) ?><?= makeLink( '?view='.$view.'&action=sequence&mid='.$monitor['Id'].'&smid='.$seqIdDownList[$monitor['Id']], '<img src="'.$seqDownFile.'" alt="Down"/>', $monitor['Sequence']<$maxSequence ) ?></td>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
2014-11-01 04:55:19 +08:00
|
|
|
<td class="colMark"><input class="btn btn-default" type="checkbox" name="markMids[]" value="<?= $monitor['Id'] ?>" onclick="setButtonStates( this )"<?php if ( !canEdit( 'Monitors' ) ) { ?> disabled="disabled"<?php } ?>/></td>
|
2014-11-01 02:46:37 +08:00
|
|
|
</tr>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2014-11-01 23:26:19 +08:00
|
|
|
</div> <!-- End .col-md-10 -->
|
|
|
|
|
|
|
|
|
|
|
|
</div> <!-- End .row -->
|
|
|
|
</div> <!-- End #content .container-fluid -->
|
|
|
|
<?php include("footer.php"); ?>
|
2014-11-01 02:46:37 +08:00
|
|
|
</form>
|
|
|
|
</body>
|
|
|
|
</html>
|