251 lines
13 KiB
PHP
251 lines
13 KiB
PHP
<?php
|
|
//
|
|
// ZoneMinder web export view 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 ( !canView('Events') ) {
|
|
$view = 'error';
|
|
return;
|
|
}
|
|
|
|
if ( isset($_SESSION['export']) ) {
|
|
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'];
|
|
if ( isset($_SESSION['export']['compress']) )
|
|
$_REQUEST['exportCompress'] = $_SESSION['export']['compress'];
|
|
} else {
|
|
$_REQUEST['exportDetail'] =
|
|
$_REQUEST['exportFrames'] =
|
|
$_REQUEST['exportImages'] =
|
|
$_REQUEST['exportVideo'] =
|
|
$_REQUEST['exportMisc'] = 1;
|
|
$_REQUEST['exportCompress'] = 0;
|
|
}
|
|
|
|
if (isset($_REQUEST['exportFormat'])) {
|
|
if (!in_array($_REQUEST['exportFormat'], array('zip', 'tar'))) {
|
|
ZM\Error('Invalid exportFormat');
|
|
return;
|
|
}
|
|
}
|
|
|
|
$focusWindow = true;
|
|
$connkey = isset($_REQUEST['connkey']) ? $_REQUEST['connkey'] : generateConnKey();
|
|
|
|
xhtmlHeaders(__FILE__, translate('Export'));
|
|
?>
|
|
<body>
|
|
<div id="page">
|
|
<?php echo getNavBarHTML() ?>
|
|
<div id="header">
|
|
<h2><?php echo translate('ExportOptions') ?></h2>
|
|
</div>
|
|
<div id="content">
|
|
<form name="contentForm" id="contentForm" method="post" action="?view=export">
|
|
<input type="hidden" name="connkey" value="<?php echo $connkey; ?>"/>
|
|
<?php
|
|
|
|
$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 = '';
|
|
$limitQuery = '';
|
|
|
|
if ( $user['MonitorIds'] ) {
|
|
$user_monitor_ids = ' M.Id in ('.$user['MonitorIds'].')';
|
|
$eventsSql .= $user_monitor_ids;
|
|
} else {
|
|
$eventsSql .= ' 1';
|
|
}
|
|
|
|
if ( isset($_REQUEST['eid']) and $_REQUEST['eid'] ) {
|
|
ZM\Logger::Debug('Loading events by single eid');
|
|
$eventsSql .= ' AND E.Id=?';
|
|
$eventsValues[] = $_REQUEST['eid'];
|
|
} elseif ( isset($_REQUEST['eids']) and count($_REQUEST['eids']) > 0 ) {
|
|
ZM\Logger::Debug('Loading events by eids');
|
|
$eventsSql .= ' AND E.Id IN ('.implode(',', array_map(function(){return '?';}, $_REQUEST['eids'])). ')';
|
|
$eventsValues += $_REQUEST['eids'];
|
|
} else if ( isset($_REQUEST['filter']) ) {
|
|
parseSort();
|
|
parseFilter($_REQUEST['filter']);
|
|
$filterQuery = $_REQUEST['filter']['query'];
|
|
|
|
if ( $_REQUEST['filter']['sql'] ) {
|
|
$eventsSql .= $_REQUEST['filter']['sql'];
|
|
}
|
|
$eventsSql .= " ORDER BY $sortColumn $sortOrder";
|
|
if ( isset($_REQUEST['filter']['Query']['limit']) )
|
|
$eventsSql .= ' LIMIT '.validInt($_REQUEST['filter']['Query']['limit']);
|
|
} # end if filter
|
|
|
|
$results = dbQuery($eventsSql, $eventsValues);
|
|
|
|
echo 'Export the following ' .$results->rowCount() . ' events:<br/>';
|
|
$disk_space_total = 0;
|
|
?>
|
|
<table id="contentTable" class="major">
|
|
<thead>
|
|
<tr>
|
|
<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>
|
|
<?php
|
|
if ( ZM_WEB_EVENT_DISK_SPACE ) {
|
|
?>
|
|
<th class="colDiskSpace"><a href="<?php echo sortHeader('DiskSpace') ?>"><?php echo translate('DiskSpace') ?><?php echo sortTag('DiskSpace') ?></a></th>
|
|
<?php
|
|
}
|
|
?>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$event_count = 0;
|
|
while ( $event_row = dbFetchNext($results) ) {
|
|
$event = new ZM\Event($event_row);
|
|
$scale = max( reScale( SCALE_BASE, $event->DefaultScale(), ZM_WEB_DEFAULT_SCALE ), SCALE_BASE );
|
|
echo '<input type="hidden" name="eids[]" value="'.validInt($event->Id())."\"/>\n";
|
|
?>
|
|
<tr<?php echo $event->Archived() ? ' class="archived"' : '' ?>>
|
|
<td class="colId"><a href="?view=event&eid=<?php echo $event->Id().$filterQuery.$sortQuery ?>&page=1"><?php echo $event->Id().($event->Archived()?'*':'') ?></a></td>
|
|
<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>
|
|
<td class="colMonitorName"><?php echo makePopupLink( '?view=monitor&mid='.$event->MonitorId(), 'zmMonitor'.$event->MonitorId(), 'monitor', $event->MonitorName(), canEdit( 'Monitors' ) ) ?></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())) .
|
|
( $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();
|
|
$event_count += 1;
|
|
?>
|
|
<td class="colDiskSpace"><?php echo human_filesize($event->DiskSpace()) ?></td>
|
|
<?php
|
|
}
|
|
unset($event);
|
|
} # end foreach event
|
|
?>
|
|
</tbody>
|
|
<tfoot>
|
|
<td colspan="11"><?php echo $event_count ?> events</td>
|
|
<td class="colDiskSpace"><?php echo human_filesize($disk_space_total);?></td>
|
|
</tfoot>
|
|
</table>
|
|
|
|
<table id="contentTable" class="minor">
|
|
<tbody>
|
|
<tr>
|
|
<th scope="row"><?php echo translate('ExportDetails') ?></th>
|
|
<td><input type="checkbox" name="exportDetail" value="1"<?php if ( !empty($_REQUEST['exportDetail']) ) { ?> checked="checked"<?php } ?> data-on-click-this="configureExportButton"/></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?php echo translate('ExportFrames') ?></th>
|
|
<td><input type="checkbox" name="exportFrames" value="1"<?php if ( !empty($_REQUEST['exportFrames']) ) { ?> checked="checked"<?php } ?> data-on-click-this="configureExportButton"/></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?php echo translate('ExportImageFiles') ?></th>
|
|
<td><input type="checkbox" name="exportImages" value="1"<?php if ( !empty($_REQUEST['exportImages']) ) { ?> checked="checked"<?php } ?> data-on-click-this="configureExportButton"/></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?php echo translate('ExportVideoFiles') ?></th>
|
|
<td><input type="checkbox" name="exportVideo" value="1"<?php if ( !empty($_REQUEST['exportVideo']) ) { ?> checked="checked"<?php } ?> data-on-click-this="configureExportButton"/></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?php echo translate('ExportMiscFiles') ?></th>
|
|
<td><input type="checkbox" name="exportMisc" value="1"<?php if ( !empty($_REQUEST['exportMisc']) ) { ?> checked="checked"<?php } ?> data-on-click-this="configureExportButton"/></td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?php echo translate('ExportFormat') ?></th>
|
|
<td>
|
|
<input type="radio" id="exportFormatTar" name="exportFormat" value="tar"<?php if ( isset($_REQUEST['exportFormat']) && $_REQUEST['exportFormat'] == "tar" ) { ?> checked="checked"<?php } ?> data-on-click-this="configureExportButton"/><label for="exportFormatTar"><?php echo translate('ExportFormatTar') ?></label>
|
|
<input type="radio" id="exportFormatZip" name="exportFormat" value="zip"<?php if ( isset($_REQUEST['exportFormat']) && $_REQUEST['exportFormat'] == "zip" ) { ?> checked="checked"<?php } ?> data-on-click-this="configureExportButton"/><label for="exportFormatZip"><?php echo translate('ExportFormatZip') ?></label>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th scope="row"><?php echo translate('ExportCompress') ?></th>
|
|
<td>
|
|
<input type="radio" id="exportCompress1" name="exportCompress" value="1"<?php echo ( isset($_REQUEST['exportCompress']) && $_REQUEST['exportCompress'] ) ? ' checked="checked"' : '' ?> data-on-click-this="configureExportButton"/>
|
|
<label for="exportCompress1"><?php echo translate('Yes') ?></label>
|
|
<input type="radio" id="exportCompress0" name="exportCompress" value="0"<?php echo ( isset($_REQUEST['exportCompress']) && $_REQUEST['exportCompress'] ) ? '' : ' checked="checked"' ?> data-on-click-this="configureExportButton"/>
|
|
<label for="exportCompress0"><?php echo translate('No') ?></label>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<button type="button" id="exportButton" name="exportButton" value="Export" disabled="disabled" data-on-click="exportEvent"><?php echo translate('Export') ?></button>
|
|
<?php
|
|
?>
|
|
<h2 id="exportProgress" class="
|
|
<?php
|
|
if ( isset($_REQUEST['generated']) ) {
|
|
if ( $_REQUEST['generated'] )
|
|
echo 'infoText';
|
|
else
|
|
echo 'errorText';
|
|
} else {
|
|
echo 'hidden warnText';
|
|
}
|
|
?>">
|
|
<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>
|
|
</div>
|
|
</body>
|
|
</html>
|