441 lines
17 KiB
PHP
441 lines
17 KiB
PHP
<?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(
|
|
'Total'=> array(
|
|
'title' => translate('Events'),
|
|
'filter' => array(
|
|
'Query' => array(
|
|
'terms' => array()
|
|
)
|
|
),
|
|
'totalevents' => 0,
|
|
'totaldiskspace' => 0,
|
|
),
|
|
'Hour'=>array(
|
|
'title' => translate('Hour'),
|
|
'filter' => array(
|
|
'Query' => array(
|
|
'terms' => array(
|
|
array( 'attr' => 'StartDateTime', 'op' => '>=', 'val' => '-1 hour' ),
|
|
)
|
|
)
|
|
),
|
|
'totalevents' => 0,
|
|
'totaldiskspace' => 0,
|
|
),
|
|
'Day'=>array(
|
|
'title' => translate('Day'),
|
|
'filter' => array(
|
|
'Query' => array(
|
|
'terms' => array(
|
|
array( 'attr' => 'StartDateTime', 'op' => '>=', 'val' => '-1 day' ),
|
|
)
|
|
)
|
|
),
|
|
'totalevents' => 0,
|
|
'totaldiskspace' => 0,
|
|
),
|
|
'Week'=>array(
|
|
'title' => translate('Week'),
|
|
'filter' => array(
|
|
'Query' => array(
|
|
'terms' => array(
|
|
array( 'attr' => 'StartDateTime', 'op' => '>=', 'val' => '-7 day' ),
|
|
)
|
|
)
|
|
),
|
|
'totalevents' => 0,
|
|
'totaldiskspace' => 0,
|
|
),
|
|
'Month'=>array(
|
|
'title' => translate('Month'),
|
|
'filter' => array(
|
|
'Query' => array(
|
|
'terms' => array(
|
|
array( 'attr' => 'StartDateTime', 'op' => '>=', 'val' => '-1 month' ),
|
|
)
|
|
)
|
|
),
|
|
'totalevents' => 0,
|
|
'totaldiskspace' => 0,
|
|
),
|
|
'Archived'=>array(
|
|
'title' => translate('Archived'),
|
|
'filter' => array(
|
|
'Query' => array(
|
|
'terms' => array(
|
|
array( 'attr' => 'Archived', 'op' => '=', 'val' => '1' ),
|
|
)
|
|
)
|
|
),
|
|
'totalevents' => 0,
|
|
'totaldiskspace' => 0,
|
|
),
|
|
);
|
|
|
|
require_once('includes/Group_Monitor.php');
|
|
|
|
$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;
|
|
$total_capturing_bandwidth=0;
|
|
|
|
$group_ids_by_monitor_id = array();
|
|
foreach ( ZM\Group_Monitor::find(array('MonitorId'=>$selected_monitor_ids)) as $GM ) {
|
|
if ( !isset($group_ids_by_monitor_id[$GM->MonitorId()]) )
|
|
$group_ids_by_monitor_id[$GM->MonitorId()] = array();
|
|
$group_ids_by_monitor_id[$GM->MonitorId()][] = $GM->GroupId();
|
|
}
|
|
|
|
$status_counts = array();
|
|
for ( $i = 0; $i < count($displayMonitors); $i++ ) {
|
|
$monitor = &$displayMonitors[$i];
|
|
if ( !$monitor['Status'] ) {
|
|
if ( $monitor['Type'] == 'WebSite' )
|
|
$monitor['Status'] = 'Running';
|
|
else
|
|
$monitor['Status'] = 'NotRunning';
|
|
}
|
|
if ( !isset($status_counts[$monitor['Status']]) )
|
|
$status_counts[$monitor['Status']] = 0;
|
|
$status_counts[$monitor['Status']] += 1;
|
|
|
|
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;
|
|
}
|
|
$zoneCount += $monitor['ZoneCount'];
|
|
|
|
$counts = array();
|
|
foreach ( array_keys($eventCounts) as $j ) {
|
|
$filter = addFilterTerm(
|
|
$eventCounts[$j]['filter'],
|
|
count($eventCounts[$j]['filter']['Query']['terms']),
|
|
array('cnj'=>'and', 'attr'=>'MonitorId', 'op'=>'=', 'val'=>$monitor['Id'])
|
|
);
|
|
parseFilter($filter);
|
|
#$counts[] = 'count(if(1'.$filter['sql'].",1,NULL)) AS EventCount$j, SUM(if(1".$filter['sql'].",DiskSpace,NULL)) As DiskSpace$j";
|
|
$monitor['eventCounts'][$j]['filter'] = $filter;
|
|
$eventCounts[$j]['totalevents'] += $monitor[$j.'Events'];
|
|
$eventCounts[$j]['totaldiskspace'] += $monitor[$j.'EventDiskSpace'];
|
|
}
|
|
unset($monitor);
|
|
} // 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'));
|
|
getBodyTopHTML();
|
|
?>
|
|
<?php echo $navbar ?>
|
|
<form name="monitorForm" method="get" action="?">
|
|
<input type="hidden" name="view" value="<?php echo $view ?>"/>
|
|
<input type="hidden" name="action" value=""/>
|
|
|
|
<div class="filterBar" id="fbpanel"<?php echo ( isset($_COOKIE['zmFilterBarFlip']) and $_COOKIE['zmFilterBarFlip'] == 'down' ) ? ' style="display:none;"' : '' ?>>
|
|
<?php echo $filterbar ?>
|
|
</div>
|
|
|
|
<div class="container-fluid pt-2">
|
|
<div class="statusBreakdown float-left">
|
|
<?php
|
|
$html = '';
|
|
foreach ( array_keys($status_counts) as $status ) {
|
|
|
|
$html .= '<span class="status"><label>'.translate('Status'.$status).'</label>'.round(100*($status_counts[$status]/count($displayMonitors)),1).'%</span>';
|
|
}
|
|
echo $html;
|
|
?>
|
|
</div>
|
|
|
|
<button type="button" name="addBtn" data-on-click-this="addMonitor"
|
|
<?php echo (canEdit('Monitors') && !$user['MonitorIds']) ? '' : ' disabled="disabled" title="'.translate('AddMonitorDisabled').'"' ?>
|
|
>
|
|
<i class="material-icons md-18">add_circle</i>
|
|
<?php echo translate('AddNewMonitor') ?>
|
|
</button>
|
|
<button type="button" name="cloneBtn" data-on-click-this="cloneMonitor"
|
|
<?php echo (canEdit('Monitors') && !$user['MonitorIds']) ? '' : ' disabled="disabled"' ?>
|
|
style="display:none;">
|
|
<i class="material-icons md-18">content_copy</i>
|
|
<!--content_copy used instead of file_copy as there is a bug in material-icons -->
|
|
<?php echo translate('CloneMonitor') ?>
|
|
</button>
|
|
<button type="button" name="editBtn" data-on-click-this="editMonitor" disabled="disabled">
|
|
<i class="material-icons md-18">edit</i>
|
|
<?php echo translate('Edit') ?>
|
|
</button>
|
|
<button type="button" name="deleteBtn" data-on-click-this="deleteMonitor" disabled="disabled">
|
|
<i class="material-icons md-18">delete</i>
|
|
<?php echo translate('Delete') ?>
|
|
</button>
|
|
<button type="button" name="selectBtn" data-on-click-this="selectMonitor" disabled="disabled">
|
|
<i class="material-icons md-18">view_list</i>
|
|
<?php echo translate('Select') ?>
|
|
</button>
|
|
|
|
<a href="#"><i id="fbflip" class="material-icons md-18">keyboard_arrow_<?php echo ( isset($_COOKIE['zmFilterBarFlip']) and $_COOKIE['zmFilterBarFlip'] == 'down') ? 'down' : 'up' ?></i></a>
|
|
<?php
|
|
ob_start();
|
|
?>
|
|
<div class="table-responsive-sm pt-2">
|
|
<table class="table table-striped table-hover table-condensed consoleTable">
|
|
<thead class="thead-highlight">
|
|
<tr>
|
|
<?php if ( ZM_WEB_ID_ON_CONSOLE ) { ?>
|
|
<th class="colId"><?php echo translate('Id') ?></th>
|
|
<?php } ?>
|
|
<th class="colName"><i class="material-icons md-18">videocam</i> <?php echo translate('Name') ?></th>
|
|
<th class="colFunction"><?php echo translate('Function') ?></th>
|
|
<?php if ( count($servers) ) { ?>
|
|
<th class="colServer"><?php echo translate('Server') ?></th>
|
|
<?php } ?>
|
|
<th class="colSource"><i class="material-icons md-18">settings</i> <?php echo translate('Source') ?></th>
|
|
<?php if ( $show_storage_areas ) { ?>
|
|
<th class="colStorage"><?php echo translate('Storage') ?></th>
|
|
<?php }
|
|
foreach ( array_keys($eventCounts) as $j ) {
|
|
echo '<th class="colEvents">'. $eventCounts[$j]['title'] .'</th>';
|
|
}
|
|
?>
|
|
<th class="colZones"><a href="?view=zones"><?php echo translate('Zones') ?></a></th>
|
|
<?php if ( canEdit('Monitors') ) { ?>
|
|
<th class="colMark"><input type="checkbox" name="toggleCheck" value="1" data-checkbox-name="markMids[]" data-on-click-this="updateFormCheckboxesByName"/></th>
|
|
<?php } ?>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="consoleTableBody">
|
|
<?php
|
|
$table_head = ob_get_contents();
|
|
ob_end_clean();
|
|
echo $table_head;
|
|
$monitors = array();
|
|
for( $monitor_i = 0; $monitor_i < count($displayMonitors); $monitor_i += 1 ) {
|
|
$monitor = $displayMonitors[$monitor_i];
|
|
$Monitor = new ZM\Monitor($monitor);
|
|
$monitors[] = $Monitor;
|
|
$Monitor->GroupIds(isset($group_ids_by_monitor_id[$Monitor->Id()]) ? $group_ids_by_monitor_id[$Monitor->Id()] : array());
|
|
if ( $monitor_i and ( $monitor_i % 100 == 0 ) ) {
|
|
echo '</table>';
|
|
echo $table_head;
|
|
} # monitor_i % 100
|
|
?>
|
|
<tr id="<?php echo 'monitor_id-'.$monitor['Id'] ?>" title="<?php echo $monitor['Id'] ?>">
|
|
<?php
|
|
if ( (!$monitor['Status'] || $monitor['Status'] == 'NotRunning') && $monitor['Type']!='WebSite' ) {
|
|
$source_class = 'errorText';
|
|
} else {
|
|
if ( $monitor['CaptureFPS'] == '0.00' ) {
|
|
$source_class = 'errorText';
|
|
} else if ( (!$monitor['AnalysisFPS']) && ($monitor['Function']!='Monitor') && ($monitor['Function'] != 'Nodect') ) {
|
|
$source_class = 'warnText';
|
|
} else {
|
|
$source_class = 'infoText';
|
|
}
|
|
}
|
|
if ( $monitor['Function'] == 'None' )
|
|
$function_class = 'errorText';
|
|
else
|
|
$function_class = 'infoText';
|
|
|
|
|
|
$scale = max(reScale(SCALE_BASE, $monitor['DefaultScale'], ZM_WEB_DEFAULT_SCALE), SCALE_BASE);
|
|
$stream_available = canView('Stream') and $monitor['Type']=='WebSite' or ($monitor['CaptureFPS'] && $monitor['Function'] != 'None');
|
|
$dot_class = $source_class;
|
|
if ( $function_class != 'infoText' ) {
|
|
$dot_class = $function_class;
|
|
} else if ( !$monitor['Enabled'] ) {
|
|
$dot_class .= ' warnText';
|
|
}
|
|
|
|
if ( ZM_WEB_ID_ON_CONSOLE ) {
|
|
?>
|
|
<td class="colId"><a <?php echo ($stream_available ? 'href="?view=watch&mid='.$monitor['Id'].'">' : '>') . $monitor['Id'] ?></a></td>
|
|
<?php
|
|
}
|
|
$imgHTML='';
|
|
if ( ZM_WEB_LIST_THUMBS && ($monitor['Status'] == 'Connected') && $running ) {
|
|
$options = array();
|
|
|
|
$ratio_factor = $Monitor->ViewHeight() / $Monitor->ViewWidth();
|
|
$options['width'] = ZM_WEB_LIST_THUMB_WIDTH;
|
|
$options['height'] = ZM_WEB_LIST_THUMB_HEIGHT ? ZM_WEB_LIST_THUMB_HEIGHT : ZM_WEB_LIST_THUMB_WIDTH*$ratio_factor;
|
|
$options['scale'] = intval(100*ZM_WEB_LIST_THUMB_WIDTH / $Monitor->ViewWidth());
|
|
$options['mode'] = 'single';
|
|
|
|
$stillSrc = $Monitor->getStreamSrc($options);
|
|
$streamSrc = $Monitor->getStreamSrc(array('scale'=>$options['scale']*5));
|
|
|
|
$thmbWidth = ( $options['width'] ) ? 'width:'.$options['width'].'px;' : '';
|
|
$thmbHeight = ( $options['height'] ) ? 'height:'.$options['height'].'px;' : '';
|
|
|
|
$imgHTML = '<div class="colThumbnail"><a';
|
|
$imgHTML .= $stream_available ? ' href="?view=watch&mid='.$monitor['Id'].'">' : '>';
|
|
$imgHTML .= '<img id="thumbnail' .$Monitor->Id(). '" src="' .$stillSrc. '" style="'
|
|
.$thmbWidth.$thmbHeight. '" stream_src="' .$streamSrc. '" still_src="' .$stillSrc. '"'.
|
|
($options['width'] ? ' width="'.$options['width'].'"' : '' ).
|
|
($options['height'] ? ' height="'.$options['height'].'"' : '' ).
|
|
'/></a></div>';
|
|
}
|
|
?>
|
|
<td class="colName">
|
|
<i class="material-icons md-18 <?php echo $dot_class ?>">lens</i>
|
|
<a <?php echo ($stream_available ? 'href="?view=watch&mid='.$monitor['Id'].'">' : '>') . validHtmlStr($monitor['Name']) ?></a><br/>
|
|
<?php echo $imgHTML ?>
|
|
<div class="small text-nowrap text-muted">
|
|
|
|
<?php echo implode('<br/>',
|
|
array_map(function($group_id){
|
|
$Group = ZM\Group::find_one(array('Id'=>$group_id));
|
|
if ( $Group ) {
|
|
$Groups = $Group->Parents();
|
|
array_push( $Groups, $Group );
|
|
}
|
|
return implode(' > ', array_map(function($Group){ return '<a href="?view=montagereview&GroupId='.$Group->Id().'">'.validHtmlStr($Group->Name()).'</a>'; }, $Groups ));
|
|
}, $Monitor->GroupIds() ) );
|
|
?>
|
|
</div></td>
|
|
<td class="colFunction">
|
|
<a class="functionLnk <?php echo $function_class ?>" data-mid="<?php echo $monitor['Id'] ?>" id="functionLnk-<?php echo $monitor['Id'] ?>" href="#"><?php echo translate('Fn'.$monitor['Function']) ?></a><br/>
|
|
<?php echo translate('Status'.$monitor['Status']) ?><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' ) ) {
|
|
$fps_string .= '/' . $monitor['AnalysisFPS'];
|
|
}
|
|
if ($fps_string) $fps_string .= ' fps';
|
|
$fps_string .= ' ' . human_filesize($monitor['CaptureBandwidth']).'/s';
|
|
$total_capturing_bandwidth += $monitor['CaptureBandwidth'];
|
|
echo $fps_string;
|
|
?>
|
|
</div></td>
|
|
<?php
|
|
if ( count($servers) ) { ?>
|
|
<td class="colServer"><?php $Server = isset($ServersById[$monitor['ServerId']]) ? $ServersById[$monitor['ServerId']] : new ZM\Server($monitor['ServerId']); echo validHtmlStr($Server->Name()); ?></td>
|
|
<?php
|
|
}
|
|
echo '<td class="colSource">'. makeLink( '?view=monitor&mid='.$monitor['Id'], '<span class="'.$source_class.'">'.validHtmlStr($Monitor->Source()).'</span>', canEdit('Monitors') ).'</td>';
|
|
if ( $show_storage_areas ) {
|
|
?>
|
|
<td class="colStorage"><?php echo isset($StorageById[$monitor['StorageId']]) ? validHtmlStr($StorageById[$monitor['StorageId']]->Name()) : ($monitor['StorageId']?'<span class="error">Deleted '.$monitor['StorageId'].'</span>' : '') ?></td>
|
|
<?php
|
|
}
|
|
|
|
foreach ( array_keys($eventCounts) as $i ) {
|
|
?>
|
|
<td class="colEvents"><a <?php echo (canView('Events') ? 'href="?view='.ZM_WEB_EVENTS_VIEW.'&page=1'.$monitor['eventCounts'][$i]['filter']['querystring'].'">' : '') .
|
|
$monitor[$i.'Events'] . '<br/></a><div class="small text-nowrap text-muted">' . human_filesize($monitor[$i.'EventDiskSpace']) ?></div></td>
|
|
<?php
|
|
}
|
|
?>
|
|
<td class="colZones"><?php echo makeLink('?view=zones&mid='.$monitor['Id'], $monitor['ZoneCount'], canView('Monitors')) ?></td>
|
|
<?php
|
|
if ( canEdit('Monitors') ) {
|
|
?>
|
|
<td class="colMark">
|
|
<input type="checkbox" name="markMids[]" value="<?php echo $monitor['Id'] ?>" data-on-click-this="setButtonStates"<?php if ( !canEdit( 'Monitors' ) ) { ?> disabled="disabled"<?php } ?>/>
|
|
<i class="material-icons sort" title="Click and drag to change order">swap_vert</i>
|
|
</td>
|
|
<?php
|
|
}
|
|
?>
|
|
</tr>
|
|
<?php
|
|
} # end for each monitor
|
|
?>
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<?php if ( ZM_WEB_ID_ON_CONSOLE ) { ?>
|
|
<td class="colId"><?php echo translate('Total').":".count($displayMonitors) ?></td>
|
|
<?php } ?>
|
|
<td class="colName"></td>
|
|
<td class="colFunction"><?php echo human_filesize($total_capturing_bandwidth ).'/s' ?></td>
|
|
<?php if ( count($servers) ) { ?>
|
|
<td class="colServer"></td>
|
|
<?php } ?>
|
|
<td class="colSource"></td>
|
|
<?php if ( $show_storage_areas ) { ?>
|
|
<td class="colStorage"></td>
|
|
<?php
|
|
}
|
|
foreach ( array_keys($eventCounts) as $i ) {
|
|
$filter = addFilterTerm(
|
|
$eventCounts[$i]['filter'],
|
|
count($eventCounts[$i]['filter']['Query']['terms']),
|
|
array(
|
|
'cnj'=>'and',
|
|
'attr'=>'MonitorId',
|
|
'op'=>'IN',
|
|
'val'=>implode(',',array_map(function($m){return $m['Id'];}, $displayMonitors))
|
|
)
|
|
);
|
|
parseFilter($filter);
|
|
?>
|
|
<td class="colEvents">
|
|
<a <?php echo
|
|
(canView('Events') ? 'href="?view='.ZM_WEB_EVENTS_VIEW.'&page=1'.$filter['querystring'].'">' : '') .
|
|
$eventCounts[$i]['totalevents'].'</a><br/>
|
|
<div class="small text-nowrap text-muted">'.human_filesize($eventCounts[$i]['totaldiskspace'])
|
|
?></div>
|
|
</td>
|
|
<?php
|
|
} // end foreach eventCounts
|
|
?>
|
|
<td class="colZones"><?php echo $zoneCount ?></td>
|
|
<?php if ( canEdit('Monitors') ) { ?>
|
|
<td class="colMark"></td>
|
|
<?php } ?>
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
<?php
|
|
xhtmlFooter();
|
|
?>
|