zoneminder/web/skins/classic/views/console.php

341 lines
13 KiB
PHP
Raw Normal View History

<?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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
if ( $running == null )
$running = daemonCheck();
$eventCounts = array(
2017-11-27 06:03:36 +08:00
'Total'=> array(
'title' => translate('Events'),
'filter' => array(
2017-11-09 00:18:23 +08:00
'Query' => array(
'terms' => array()
)
),
2017-11-27 06:03:36 +08:00
'totalevents' => 0,
'totaldiskspace' => 0,
),
'Hour'=>array(
'title' => translate('Hour'),
'filter' => array(
'Query' => array(
'terms' => array(
array( 'attr' => 'StartDateTime', 'op' => '>=', 'val' => '-1 hour' ),
)
)
),
2017-11-27 06:03:36 +08:00
'totalevents' => 0,
'totaldiskspace' => 0,
),
'Day'=>array(
'title' => translate('Day'),
'filter' => array(
'Query' => array(
'terms' => array(
array( 'attr' => 'StartDateTime', 'op' => '>=', 'val' => '-1 day' ),
)
)
),
2017-11-27 06:03:36 +08:00
'totalevents' => 0,
'totaldiskspace' => 0,
),
'Week'=>array(
'title' => translate('Week'),
'filter' => array(
'Query' => array(
'terms' => array(
array( 'attr' => 'StartDateTime', 'op' => '>=', 'val' => '-7 day' ),
)
)
),
2017-11-27 06:03:36 +08:00
'totalevents' => 0,
'totaldiskspace' => 0,
),
'Month'=>array(
'title' => translate('Month'),
'filter' => array(
'Query' => array(
'terms' => array(
array( 'attr' => 'StartDateTime', 'op' => '>=', 'val' => '-1 month' ),
)
)
),
2017-11-27 06:03:36 +08:00
'totalevents' => 0,
'totaldiskspace' => 0,
),
'Archived'=>array(
'title' => translate('Archived'),
'filter' => array(
'Query' => array(
'terms' => array(
array( 'attr' => 'Archived', 'op' => '=', 'val' => '1' ),
)
)
),
2017-11-27 06:03:36 +08:00
'totalevents' => 0,
'totaldiskspace' => 0,
),
);
$navbar = getNavBarHTML();
ob_start();
include('_monitor_filters.php');
$filterbar = ob_get_contents();
ob_end_clean();
$show_storage_areas = count($storage_areas) > 1 and canEdit( 'System' ) ? 1 : 0;
$maxWidth = 0;
$maxHeight = 0;
$zoneCount = 0;
for ( $i = 0; $i < count($displayMonitors); $i++ ) {
$monitor = &$displayMonitors[$i];
if ( $monitor['Function'] != 'None' ) {
$scaleWidth = reScale( $monitor['Width'], $monitor['DefaultScale'], ZM_WEB_DEFAULT_SCALE );
$scaleHeight = reScale( $monitor['Height'], $monitor['DefaultScale'], ZM_WEB_DEFAULT_SCALE );
if ( $maxWidth < $scaleWidth ) $maxWidth = $scaleWidth;
if ( $maxHeight < $scaleHeight ) $maxHeight = $scaleHeight;
}
#$monitor['zmc'] = zmcStatus( $monitor );
#$monitor['zma'] = zmaStatus( $monitor );
$zoneCount += $monitor['ZoneCount'];
2016-05-07 02:33:56 +08:00
$counts = array();
foreach ( array_keys( $eventCounts ) as $j ) {
2017-11-09 00:18:23 +08:00
$filter = addFilterTerm(
$eventCounts[$j]['filter'],
count($eventCounts[$j]['filter']['Query']['terms']),
array( 'cnj' => 'and', 'attr' => 'MonitorId', 'op' => '=', 'val' => $monitor['Id'] )
);
2016-05-07 02:33:56 +08:00
parseFilter( $filter );
#$counts[] = 'count(if(1'.$filter['sql'].",1,NULL)) AS EventCount$j, SUM(if(1".$filter['sql'].",DiskSpace,NULL)) As DiskSpace$j";
2016-05-07 02:33:56 +08:00
$monitor['eventCounts'][$j]['filter'] = $filter;
2017-11-27 06:03:36 +08:00
$eventCounts[$j]['totalevents'] += $monitor[$j.'Events'];
$eventCounts[$j]['totaldiskspace'] += $monitor[$j.'EventDiskSpace'];
}
unset($monitor);
2017-11-09 00:18:23 +08:00
} // end foreach display monitor
$cycleWidth = $maxWidth;
$cycleHeight = $maxHeight;
noCacheHeaders();
$eventsWindow = 'zm'.ucfirst(ZM_WEB_EVENTS_VIEW);
$left_columns = 3;
if ( count($servers) ) $left_columns += 1;
if ( ZM_WEB_ID_ON_CONSOLE ) $left_columns += 1;
if ( $show_storage_areas ) $left_columns += 1;
xhtmlHeaders( __FILE__, translate('Console') );
?>
<body>
<form name="monitorForm" method="get" action="<?php echo $_SERVER['PHP_SELF'] ?>">
<input type="hidden" name="view" value="<?php echo $view ?>"/>
<input type="hidden" name="action" value=""/>
2018-03-24 21:59:39 +08:00
<?php echo $navbar ?><br/>
<?php echo $filterbar ?>
2016-03-12 16:28:02 +08:00
<div class="container-fluid">
2017-05-26 03:29:31 +08:00
<table class="table table-striped table-hover table-condensed" id="consoleTable">
<thead>
<tr>
<?php if ( ZM_WEB_ID_ON_CONSOLE ) { ?>
<th class="colId"><?php echo translate('Id') ?></th>
<?php } ?>
2015-05-10 21:10:30 +08:00
<th class="colName"><?php echo translate('Name') ?></th>
<th class="colFunction"><?php echo translate('Function') ?></th>
<?php if ( count($servers) ) { ?>
2016-04-15 01:53:10 +08:00
<th class="colServer"><?php echo translate('Server') ?></th>
<?php } ?>
2015-05-10 21:10:30 +08:00
<th class="colSource"><?php echo translate('Source') ?></th>
2016-02-03 22:42:50 +08:00
<?php if ( $show_storage_areas ) { ?>
<th class="colStorage"><?php echo translate('Storage') ?></th>
2017-11-27 06:03:36 +08:00
<?php }
foreach ( array_keys( $eventCounts ) as $j ) {
echo '<th class="colEvents">'. $j .'</th>';
}
?>
2017-03-30 22:45:55 +08:00
<th class="colZones"><a href="<?php echo $_SERVER['PHP_SELF'] ?>?view=zones_overview"><?php echo translate('Zones') ?></a></th>
2017-02-03 01:15:16 +08:00
<?php if ( canEdit('Monitors') ) { ?>
<th class="colMark"><input type="checkbox" name="toggleCheck" value="1" onclick="toggleCheckbox(this, 'markMids[]');setButtonStates(this);"<?php if ( !canEdit( 'Monitors' ) ) { ?> disabled="disabled"<?php } ?>/> <?php echo translate('All') ?></th>
<?php } ?>
</tr>
</thead>
2017-01-23 23:12:57 +08:00
<tbody id="consoleTableBody">
<?php
for( $monitor_i = 0; $monitor_i < count($displayMonitors); $monitor_i += 1 ) {
$monitor = $displayMonitors[$monitor_i];
$Monitor = new Monitor($monitor);
?>
2017-01-23 23:12:57 +08:00
<tr id="<?php echo 'monitor_id-'.$monitor['Id'] ?>" title="<?php echo $monitor['Id'] ?>">
<?php
if ( (!$monitor['Status']) or ($monitor['Status'] == 'NotRunning') ) {
$source_class = 'errorText';
2017-06-05 23:11:34 +08:00
} else {
if ( (!$monitor['CaptureFPS']) ) {
$source_class = 'errorText';
} else if ( (!$monitor['AnalysisFPS']) && ($monitor['Function']!='Monitor') && ($monitor['Function'] != 'Nodect') ) {
$source_class = 'warnText';
} else {
$source_class = 'infoText';
}
2017-06-05 23:11:34 +08:00
}
if ( $monitor['Function'] == 'None' )
$fclass = 'errorText';
else
$fclass = 'infoText';
if ( !$monitor['Enabled'] )
$fclass .= ' disabledText';
$scale = max( reScale( SCALE_BASE, $monitor['DefaultScale'], ZM_WEB_DEFAULT_SCALE ), SCALE_BASE );
$stream_available = canView('Stream') && $monitor['CaptureFPS'] && $monitor['Function'] != 'None';
2017-06-05 23:11:34 +08:00
if ( ZM_WEB_ID_ON_CONSOLE ) {
?>
<td class="colId"><a <?php echo ($stream_available ? 'href="?view=watch&amp;mid='.$monitor['Id'].'">' : '>') . $monitor['Id'] ?></a></td>
2017-06-05 23:11:34 +08:00
<?php
}
?>
<td class="colName">
2018-03-24 21:59:39 +08:00
<span class="glyphicon glyphicon-dot <?php echo $fclass ?>" aria-hidden="true"></span><a <?php echo ($stream_available ? 'href="?view=watch&amp;mid='.$monitor['Id'].'">' : '>') . $monitor['Name'] ?></a><br/><div class="small text-nowrap text-muted">
<?php echo $monitor['Status'] ?><br/>
<?php echo implode('<br/>',
array_map(function($group_id){
$Group = new Group($group_id);
return implode(' &gt; ', array_map(function($Group){ return $Group->Name(); }, $Group->Parents()));
}, $Monitor->GroupIds() ) );
?>
2018-03-24 21:59:39 +08:00
</div></td>
<td class="colFunction">
2018-03-24 21:59:39 +08:00
<?php echo makePopupLink( '?view=function&amp;mid='.$monitor['Id'], 'zmFunction', 'function', '<span class="'.$fclass.'">'.translate('Fn'.$monitor['Function']).( empty($monitor['Enabled']) ? ', disabled' : '' ) .'</span>', canEdit( 'Monitors' ) ) ?><br/><div class="small text-nowrap text-muted">
<?php
$fps_string = '';
if ( isset($monitor['CaptureFPS']) ) {
$fps_string .= $monitor['CaptureFPS'];
}
if ( isset($monitor['AnalysisFPS']) and ( $monitor['Function'] == 'Mocord' or $monitor['Function'] == 'Modect' ) ) {
2018-03-24 21:59:39 +08:00
$fps_string .= '/' . $monitor['AnalysisFPS'];
}
2018-03-24 21:59:39 +08:00
if ($fps_string) $fps_string .= ' fps';
echo $fps_string;
?>
2018-03-24 21:59:39 +08:00
</div></td>
2017-06-05 23:11:34 +08:00
<?php
if ( count($servers) ) { ?>
2017-10-11 03:11:59 +08:00
<td class="colServer"><?php $Server = isset($ServersById[$monitor['ServerId']]) ? $ServersById[$monitor['ServerId']] : new Server( $monitor['ServerId'] ); echo $Server->Name(); ?></td>
2017-06-05 23:11:34 +08:00
<?php
}
$source = '';
2017-06-05 23:11:34 +08:00
if ( $monitor['Type'] == 'Local' ) {
$source = $monitor['Device'].' ('.$monitor['Channel'].')';
} elseif ( $monitor['Type'] == 'Remote' ) {
$source = preg_replace( '/^.*@/', '', $monitor['Host'] );
if ( $monitor['Port'] != '80' and $monitor['Port'] != '554' ) {
$source .= ':'.$monitor['Port'];
}
} elseif ( $monitor['Type'] == 'File' || $monitor['Type'] == 'cURL' ) {
$source = preg_replace( '/^.*\//', '', $monitor['Path'] );
2017-06-05 23:11:34 +08:00
} elseif ( $monitor['Type'] == 'Ffmpeg' || $monitor['Type'] == 'Libvlc' ) {
2018-01-18 05:27:44 +08:00
$url_parts = parse_url( $monitor['Path'] );
unset($url_parts['user']);
unset($url_parts['pass']);
2018-01-30 08:03:16 +08:00
unset($url_parts['scheme']);
unset($url_parts['query']);
2018-01-30 23:09:12 +08:00
unset($url_parts['path']);
2018-01-30 08:03:16 +08:00
if ( isset($url_parts['port']) and ( $url_parts['port'] == '80' or $url_parts['port'] == '554' ) )
unset($url_parts['port']);
$source = unparse_url( $url_parts );
2017-06-05 23:11:34 +08:00
}
if ( $source == '' ) {
$source = 'Monitor ' . $monitor['Id'];
}
echo '<td class="colSource">'. makePopupLink( '?view=monitor&amp;mid='.$monitor['Id'], 'zmMonitor'.$monitor['Id'], 'monitor', '<span class="'.$source_class.'">'.$source.'</span>', canEdit( 'Monitors' ) ).'</td>';
2017-06-05 23:11:34 +08:00
if ( $show_storage_areas ) {
?>
<td class="colStorage"><?php if ( isset($StorageById[$monitor['StorageId']]) ) { echo $StorageById[ $monitor['StorageId'] ]->Name(); } ?></td>
<?php
2017-06-05 23:11:34 +08:00
}
2017-11-27 06:03:36 +08:00
foreach ( array_keys( $eventCounts ) as $i ) {
?>
2017-11-21 03:52:21 +08:00
<td class="colEvents"><a <?php echo (canView('Events') ? 'href="?view='.ZM_WEB_EVENTS_VIEW.'&amp;page=1'.$monitor['eventCounts'][$i]['filter']['query'].'">' : '') .
2018-03-24 21:59:39 +08:00
$monitor[$i.'Events'] . '<br/></a><div class="small text-nowrap text-muted">' . human_filesize($monitor[$i.'EventDiskSpace']) ?></div></td>
<?php
2017-06-05 23:11:34 +08:00
}
?>
<td class="colZones"><?php echo makePopupLink( '?view=zones&amp;mid='.$monitor['Id'], 'zmZones', array( 'zones', $monitor['Width'], $monitor['Height'] ), $monitor['ZoneCount'], $running && canView( 'Monitors' ) ) ?></td>
2017-06-05 23:11:34 +08:00
<?php
if ( canEdit('Monitors') ) {
?>
2017-01-24 10:51:17 +08:00
<td class="colMark">
2017-02-03 01:15:16 +08:00
<input type="checkbox" name="markMids[]" value="<?php echo $monitor['Id'] ?>" onclick="setButtonStates( this )"<?php if ( !canEdit( 'Monitors' ) ) { ?> disabled="disabled"<?php } ?>/>
<span class="glyphicon glyphicon-sort"></span>
2017-01-24 10:51:17 +08:00
</td>
2017-06-05 23:11:34 +08:00
<?php
}
?>
</tr>
<?php
2017-05-26 03:29:31 +08:00
} # end for each monitor
?>
</tbody>
2017-06-01 21:36:00 +08:00
<tfoot>
<tr>
2018-03-25 05:34:46 +08:00
<td class="colId"><?php echo translate('Total').":".count($displayMonitors) ?></td>
2017-10-20 03:44:33 +08:00
<td class="colLeftButtons" colspan="<?php echo $left_columns -1?>">
<button type="button" name="addBtn" onclick="addMonitor(this);"
<?php echo (canEdit('Monitors') && !$user['MonitorIds']) ? '' : ' disabled="disabled"' ?>
>
2018-03-24 21:59:39 +08:00
<span class="glyphicon glyphicon-plus-sign" aria-hidden="true"></span>&nbsp;<?php echo translate('AddNewMonitor') ?>
</button>
<button type="button" name="cloneBtn" onclick="cloneMonitor(this);"
<?php echo (canEdit('Monitors') && !$user['MonitorIds']) ? '' : ' disabled="disabled"' ?>
style="display:none;">
2018-03-24 22:21:59 +08:00
<span class="glyphicon glyphicon-copy"></span>&nbsp;<?php echo translate('CloneMonitor') ?>
</button>
<button type="button" name="editBtn" onclick="editMonitor(this);" disabled="disabled">
2018-03-24 21:59:39 +08:00
<span class="glyphicon glyphicon-edit" aria-hidden="true"></span>&nbsp;<?php echo translate('Edit') ?>
</button>
<button type="button" name="deleteBtn" onclick="deleteMonitor(this);" disabled="disabled">
2018-03-24 21:59:39 +08:00
<span class="glyphicon glyphicon-trash" aria-hidden="true"></span>&nbsp;<?php echo translate('Delete') ?>
</button>
2017-06-01 21:36:00 +08:00
</td>
<?php
2017-11-27 06:03:36 +08:00
foreach ( array_keys( $eventCounts ) as $i ) {
parseFilter( $eventCounts[$i]['filter'] );
2017-06-01 21:36:00 +08:00
?>
2017-11-27 06:03:36 +08:00
<td class="colEvents">
2017-11-21 03:52:21 +08:00
<a <?php echo (canView('Events') ? 'href="?view='.ZM_WEB_EVENTS_VIEW.'&amp;page=1'.$eventCounts[$i]['filter']['query'].'">' : '') .
$eventCounts[$i]['totalevents'].'<br/>'.human_filesize($eventCounts[$i]['totaldiskspace']) ?></a></td>
2017-06-01 21:36:00 +08:00
<?php
}
2017-06-01 21:36:00 +08:00
?>
<td class="colZones"><?php echo $zoneCount ?></td>
<?php if ( canEdit('Monitors') ) { ?>
<td class="colMark"></td>
<?php } ?>
2017-06-01 21:36:00 +08:00
</tr>
</tfoot>
</table>
</div>
</form>
<?php xhtmlFooter() ?>