2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
//
|
|
|
|
// ZoneMinder web export 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
|
2016-12-26 23:23:16 +08:00
|
|
|
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2008-07-14 21:54:50 +08:00
|
|
|
//
|
|
|
|
|
2018-05-18 22:07:58 +08:00
|
|
|
if ( !canView('Events') ) {
|
2017-10-01 02:19:32 +08:00
|
|
|
$view = 'error';
|
|
|
|
return;
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
|
2017-10-01 02:19:32 +08:00
|
|
|
if ( isset($_SESSION['export']) ) {
|
2018-01-25 06:08:12 +08:00
|
|
|
if ( isset($_SESSION['export']['detail']) )
|
|
|
|
$_REQUEST['exportDetail'] = $_SESSION['export']['detail'];
|
|
|
|
if ( isset($_SESSION['export']['frames']) )
|
|
|
|
$_REQUEST['exportFrames'] = $_SESSION['export']['frames'];
|
|
|
|
if ( isset($_SESSION['export']['images']) )
|
|
|
|
$_REQUEST['exportImages'] = $_SESSION['export']['images'];
|
|
|
|
if ( isset($_SESSION['export']['video']) )
|
|
|
|
$_REQUEST['exportVideo'] = $_SESSION['export']['video'];
|
|
|
|
if ( isset($_SESSION['export']['misc']) )
|
|
|
|
$_REQUEST['exportMisc'] = $_SESSION['export']['misc'];
|
|
|
|
if ( isset($_SESSION['export']['format']) )
|
|
|
|
$_REQUEST['exportFormat'] = $_SESSION['export']['format'];
|
2018-09-07 21:08:33 +08:00
|
|
|
if ( isset($_SESSION['export']['compress']) )
|
|
|
|
$_REQUEST['exportCompress'] = $_SESSION['export']['compress'];
|
2018-07-17 20:24:19 +08:00
|
|
|
} else {
|
|
|
|
$_REQUEST['exportDetail'] =
|
|
|
|
$_REQUEST['exportFrames'] =
|
|
|
|
$_REQUEST['exportImages'] =
|
|
|
|
$_REQUEST['exportVideo'] =
|
|
|
|
$_REQUEST['exportMisc'] = 1;
|
2018-09-05 22:33:10 +08:00
|
|
|
$_REQUEST['exportCompress'] = 0;
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
|
|
|
|
2019-02-09 18:01:26 +08:00
|
|
|
if (isset($_REQUEST['exportFormat'])) {
|
|
|
|
if (!in_array($_REQUEST['exportFormat'], array('zip', 'tar'))) {
|
2019-02-22 22:19:07 +08:00
|
|
|
ZM\Error('Invalid exportFormat');
|
2019-02-09 18:01:26 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-07-14 21:54:50 +08:00
|
|
|
$focusWindow = true;
|
2018-07-09 23:59:08 +08:00
|
|
|
$connkey = isset($_REQUEST['connkey']) ? $_REQUEST['connkey'] : generateConnKey();
|
2008-07-14 21:54:50 +08:00
|
|
|
|
2018-09-05 22:33:10 +08:00
|
|
|
xhtmlHeaders(__FILE__, translate('Export'));
|
2008-07-14 21:54:50 +08:00
|
|
|
?>
|
|
|
|
<body>
|
|
|
|
<div id="page">
|
2018-07-09 23:59:08 +08:00
|
|
|
<?php echo getNavBarHTML() ?>
|
2008-07-14 21:54:50 +08:00
|
|
|
<div id="header">
|
2015-05-10 21:10:30 +08:00
|
|
|
<h2><?php echo translate('ExportOptions') ?></h2>
|
2008-07-14 21:54:50 +08:00
|
|
|
</div>
|
|
|
|
<div id="content">
|
2019-03-21 02:29:05 +08:00
|
|
|
<form name="contentForm" id="contentForm" method="post" action="?view=export">
|
2018-07-09 23:59:08 +08:00
|
|
|
<input type="hidden" name="connkey" value="<?php echo $connkey; ?>"/>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
2018-07-09 23:59:08 +08:00
|
|
|
|
|
|
|
$eventsSql = 'SELECT E.*,M.Name AS MonitorName FROM Monitors AS M INNER JOIN Events AS E on (M.Id = E.MonitorId) WHERE';
|
|
|
|
$eventsValues = array();
|
|
|
|
$filterQuery = '';
|
|
|
|
$sortColumn = '';
|
|
|
|
$sortOrder = '';
|
2019-03-21 02:29:05 +08:00
|
|
|
$limitQuery = '';
|
2018-07-09 23:59:08 +08:00
|
|
|
|
|
|
|
if ( $user['MonitorIds'] ) {
|
|
|
|
$user_monitor_ids = ' M.Id in ('.$user['MonitorIds'].')';
|
|
|
|
$eventsSql .= $user_monitor_ids;
|
|
|
|
} else {
|
|
|
|
$eventsSql .= ' 1';
|
|
|
|
}
|
|
|
|
|
2018-07-13 02:07:19 +08:00
|
|
|
if ( isset($_REQUEST['eid']) and $_REQUEST['eid'] ) {
|
2019-03-21 02:29:05 +08:00
|
|
|
ZM\Logger::Debug('Loading events by single eid');
|
2018-07-09 23:59:08 +08:00
|
|
|
$eventsSql .= ' AND E.Id=?';
|
|
|
|
$eventsValues[] = $_REQUEST['eid'];
|
2018-07-13 02:07:19 +08:00
|
|
|
} elseif ( isset($_REQUEST['eids']) and count($_REQUEST['eids']) > 0 ) {
|
2019-03-21 02:29:05 +08:00
|
|
|
ZM\Logger::Debug('Loading events by eids');
|
2018-07-09 23:59:08 +08:00
|
|
|
$eventsSql .= ' AND E.Id IN ('.implode(',', array_map(function(){return '?';}, $_REQUEST['eids'])). ')';
|
|
|
|
$eventsValues += $_REQUEST['eids'];
|
2018-07-13 02:07:19 +08:00
|
|
|
} else if ( isset($_REQUEST['filter']) ) {
|
2018-07-09 23:59:08 +08:00
|
|
|
parseSort();
|
|
|
|
parseFilter($_REQUEST['filter']);
|
|
|
|
$filterQuery = $_REQUEST['filter']['query'];
|
|
|
|
|
|
|
|
if ( $_REQUEST['filter']['sql'] ) {
|
|
|
|
$eventsSql .= $_REQUEST['filter']['sql'];
|
|
|
|
}
|
|
|
|
$eventsSql .= " ORDER BY $sortColumn $sortOrder";
|
2019-03-21 02:29:05 +08:00
|
|
|
if ( isset($_REQUEST['filter']['Query']['limit']) )
|
|
|
|
$eventsSql .= ' LIMIT '.validInt($_REQUEST['filter']['Query']['limit']);
|
2018-07-09 23:59:08 +08:00
|
|
|
} # end if filter
|
|
|
|
|
|
|
|
$results = dbQuery($eventsSql, $eventsValues);
|
|
|
|
|
|
|
|
echo 'Export the following ' .$results->rowCount() . ' events:<br/>';
|
|
|
|
$disk_space_total = 0;
|
2008-07-14 21:54:50 +08:00
|
|
|
?>
|
2018-07-09 23:59:08 +08:00
|
|
|
<table id="contentTable" class="major">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2018-09-05 22:33:10 +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
|
2018-07-09 23:59:08 +08:00
|
|
|
if ( ZM_WEB_EVENT_DISK_SPACE ) {
|
2008-07-14 21:54:50 +08:00
|
|
|
?>
|
2018-07-09 23:59:08 +08:00
|
|
|
<th class="colDiskSpace"><a href="<?php echo sortHeader('DiskSpace') ?>"><?php echo translate('DiskSpace') ?><?php echo sortTag('DiskSpace') ?></a></th>
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
2018-07-09 23:59:08 +08:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<?php
|
2018-09-26 04:00:01 +08:00
|
|
|
$event_count = 0;
|
2018-07-09 23:59:08 +08:00
|
|
|
while ( $event_row = dbFetchNext($results) ) {
|
2019-03-21 02:29:05 +08:00
|
|
|
$event = new ZM\Event($event_row);
|
2019-12-03 02:38:23 +08:00
|
|
|
$scale = max(reScale(SCALE_BASE, $event->DefaultScale(), ZM_WEB_DEFAULT_SCALE), SCALE_BASE);
|
2018-07-09 23:59:08 +08:00
|
|
|
?>
|
|
|
|
<tr<?php echo $event->Archived() ? ' class="archived"' : '' ?>>
|
2019-12-03 02:38:23 +08:00
|
|
|
<td class="colId">
|
|
|
|
<input type="hidden" name="eids[]" value="<?php echo $event->Id()?>"/>
|
|
|
|
<a href="?view=event&eid=<?php echo $event->Id().$filterQuery.$sortQuery ?>&page=1"><?php echo $event->Id().($event->Archived()?'*':'') ?></a>
|
|
|
|
</td>
|
2018-09-26 04:00:01 +08:00
|
|
|
<td class="colName"><a href="?view=event&eid=<?php echo $event->Id().$filterQuery.$sortQuery ?>&page=1"><?php echo validHtmlStr($event->Name()).($event->Archived()?'*':'') ?></a></td>
|
2019-09-05 22:31:22 +08:00
|
|
|
<td class="colMonitorName"><?php echo makePopupLink( '?view=monitor&mid='.$event->MonitorId(), 'zmMonitor'.$event->MonitorId(), 'monitor', $event->MonitorName(), canEdit( 'Monitors' ) ) ?></td>
|
2018-07-09 23:59:08 +08:00
|
|
|
<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())) .
|
|
|
|
( $event->EndTime() ? ' until ' . strftime(STRF_FMT_DATETIME_SHORTER, strtotime($event->EndTime()) ) : '' ) ?>
|
|
|
|
</td>
|
|
|
|
<td class="colDuration"><?php echo gmdate("H:i:s", $event->Length() ) ?></td>
|
|
|
|
<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
|
|
|
|
$event->MaxScore();
|
|
|
|
#makePopupLink('?view=frame&eid='.$event->Id().'&fid=0', 'zmImage', array('image', reScale($event->Width(), $scale), reScale($event->Height(), $scale)), $event->MaxScore()) ?></td>
|
|
|
|
<?php
|
|
|
|
if ( ZM_WEB_EVENT_DISK_SPACE ) {
|
|
|
|
$disk_space_total += $event->DiskSpace();
|
2018-09-26 04:00:01 +08:00
|
|
|
$event_count += 1;
|
2019-12-03 02:38:23 +08:00
|
|
|
echo '<td class="colDiskSpace">'.human_filesize($event->DiskSpace()).'</td>';
|
2018-07-09 23:59:08 +08:00
|
|
|
}
|
|
|
|
unset($event);
|
2019-12-03 02:38:23 +08:00
|
|
|
echo '
|
|
|
|
</tr>
|
|
|
|
';
|
2018-07-09 23:59:08 +08:00
|
|
|
} # end foreach event
|
|
|
|
?>
|
|
|
|
</tbody>
|
2018-09-26 04:00:01 +08:00
|
|
|
<tfoot>
|
2019-03-21 02:29:05 +08:00
|
|
|
<tr>
|
2019-12-03 02:38:23 +08:00
|
|
|
<td colspan="11"><?php echo $event_count ?> events</td>
|
|
|
|
<?php
|
|
|
|
if ( ZM_WEB_EVENT_DISK_SPACE ) {
|
|
|
|
?>
|
|
|
|
<td class="colDiskSpace"><?php echo human_filesize($disk_space_total);?></td>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
2019-03-21 02:29:05 +08:00
|
|
|
</tr>
|
2019-12-03 02:38:23 +08:00
|
|
|
</tfoot>
|
2019-03-21 02:29:05 +08:00
|
|
|
</table>
|
2019-12-03 02:38:23 +08:00
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-3">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="exportDetail"><?php echo translate('ExportDetails') ?>
|
|
|
|
<input type="checkbox" name="exportDetail" value="1"<?php if ( !empty($_REQUEST['exportDetail']) ) { ?> checked="checked"<?php } ?> data-on-click-this="configureExportButton"/>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="exportFrames"><?php echo translate('ExportFrames') ?>
|
|
|
|
<input type="checkbox" name="exportFrames" value="1"<?php if ( !empty($_REQUEST['exportFrames']) ) { ?> checked="checked"<?php } ?> data-on-click-this="configureExportButton"/>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="exportImages"><?php echo translate('ExportImageFiles') ?>
|
|
|
|
<input type="checkbox" name="exportImages" value="1"<?php if ( !empty($_REQUEST['exportImages']) ) { ?> checked="checked"<?php } ?> data-on-click-this="configureExportButton"/>
|
|
|
|
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="exportVideo"><?php echo translate('ExportVideoFiles') ?>
|
|
|
|
<input type="checkbox" name="exportVideo" value="1"<?php if ( !empty($_REQUEST['exportVideo']) ) { ?> checked="checked"<?php } ?> data-on-click-this="configureExportButton"/>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="exportMisc"><?php echo translate('ExportMiscFiles') ?>
|
|
|
|
<input type="checkbox" name="exportMisc" value="1"<?php if ( !empty($_REQUEST['exportMisc']) ) { ?> checked="checked"<?php } ?> data-on-click-this="configureExportButton"/>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="exportFormat"><?php echo translate('ExportFormat') ?>
|
|
|
|
<?php echo html_radio('exportFormat',
|
|
|
|
array('tar'=>translate('ExportFormatTar'), 'zip' => translate('ExportFormatZip')),
|
|
|
|
(isset($_REQUEST['exportFormat'])?$_REQUEST['exportFormat']:'zip'), # default to zip
|
|
|
|
array(),
|
|
|
|
array('data-on-click-this'=>'configureExportButton')
|
|
|
|
); ?>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="exportCompress"><?php echo translate('ExportCompress') ?>
|
|
|
|
<?php echo html_radio('exportCompress',
|
|
|
|
array('1'=>translate('Yes'), '0' => translate('No')),
|
|
|
|
(isset($_REQUEST['exportCompress'])?$_REQUEST['exportCompress']:'0'), # default to no
|
|
|
|
array(),
|
|
|
|
array('data-on-click-this'=>'configureExportButton')
|
|
|
|
); ?>
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div><!--row-->
|
|
|
|
<button type="button" id="exportButton" name="exportButton" value="Export" disabled="disabled"><?php echo translate('Export') ?></button>
|
|
|
|
</div><!--container-->
|
2008-07-14 21:54:50 +08:00
|
|
|
<?php
|
|
|
|
?>
|
2019-12-03 02:38:23 +08:00
|
|
|
<h2 id="exportProgress" class="<?php
|
2019-03-21 02:29:05 +08:00
|
|
|
if ( isset($_REQUEST['generated']) ) {
|
|
|
|
if ( $_REQUEST['generated'] )
|
|
|
|
echo 'infoText';
|
|
|
|
else
|
|
|
|
echo 'errorText';
|
2018-01-25 06:08:12 +08:00
|
|
|
} else {
|
2019-03-21 02:29:05 +08:00
|
|
|
echo 'hidden warnText';
|
2008-07-14 21:54:50 +08:00
|
|
|
}
|
2019-03-21 02:29:05 +08:00
|
|
|
?>">
|
2019-12-03 02:38:23 +08:00
|
|
|
<span id="exportProgressText">
|
|
|
|
<?php
|
|
|
|
if ( isset($_REQUEST['generated']) ) {
|
|
|
|
if ( $_REQUEST['generated'] )
|
|
|
|
echo translate('ExportSucceeded');
|
|
|
|
else
|
|
|
|
echo translate('ExportFailed');
|
|
|
|
}
|
|
|
|
?></span>
|
|
|
|
<span id="exportProgressTicker"></span>
|
|
|
|
</h2>
|
|
|
|
<button type="button" data-on-click-this="startDownload" <?php echo empty($_REQUEST['generated'])? ' class="hidden"' : '' ?>><?php echo translate('Download') ?></button>
|
|
|
|
<input type="hidden" name="exportFile" value="<?php echo isset($_REQUEST['exportFile']) ? validHtmlStr($_REQUEST['exportFile']) : '' ?>"/>
|
|
|
|
<input type="hidden" name="generated" value="<?php echo isset($_REQUEST['generated']) ? validHtmlStr($_REQUEST['generated']) : '' ?>"/>
|
|
|
|
</form>
|
|
|
|
</div>
|
2019-03-21 02:29:05 +08:00
|
|
|
</div>
|
|
|
|
</body>
|
2008-07-14 21:54:50 +08:00
|
|
|
</html>
|