2017-12-04 03:04:33 +08:00
|
|
|
<?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.
|
|
|
|
//
|
|
|
|
|
2017-12-05 00:05:50 +08:00
|
|
|
if ( !canView('Events') ) {
|
2017-12-04 03:04:33 +08:00
|
|
|
$view = 'error';
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-12-12 06:33:17 +08:00
|
|
|
$total_size = 0;
|
2017-12-04 11:25:17 +08:00
|
|
|
if (isset($_SESSION['montageReviewFilter'])) { //Handles montageReview filter
|
2017-12-12 06:33:17 +08:00
|
|
|
$eventsSql = 'SELECT E.Id,E.DiskSpace FROM Events as E WHERE 1';
|
2017-12-04 11:25:17 +08:00
|
|
|
$eventsSql .= $_SESSION['montageReviewFilter']['sql'];
|
2017-12-04 03:04:33 +08:00
|
|
|
$results = dbQuery($eventsSql);
|
|
|
|
$eids = [];
|
|
|
|
while ( $event_row = dbFetchNext( $results ) ) {
|
|
|
|
array_push($eids, 'eids[]='.$event_row['Id']);
|
2017-12-12 06:33:17 +08:00
|
|
|
$total_size += $event_row['DiskSpace'];
|
2017-12-04 03:04:33 +08:00
|
|
|
}
|
|
|
|
$_REQUEST['eids'] = $eids;
|
2017-12-12 06:33:17 +08:00
|
|
|
if ( ! count($eids) ) {
|
|
|
|
Error("No events found for download using $eventsSql");
|
|
|
|
}
|
|
|
|
#session_start();
|
|
|
|
#unset($_SESSION['montageReviewFilter']);
|
|
|
|
#session_write_close();
|
|
|
|
#} else {
|
|
|
|
#Logger::Debug("NO montageReviewFilter");
|
2017-12-04 03:04:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
$focusWindow = true;
|
|
|
|
|
|
|
|
xhtmlHeaders(__FILE__, translate('Download') );
|
|
|
|
?>
|
|
|
|
<body>
|
|
|
|
<div id="page">
|
|
|
|
<div id="header">
|
|
|
|
<div id="headerButtons">
|
|
|
|
<a href="#" onclick="closeWindow()"><?php echo translate('Close') ?></a>
|
|
|
|
</div>
|
|
|
|
<h2><?php echo translate('Download') ?></h2>
|
|
|
|
</div>
|
|
|
|
<div id="content">
|
|
|
|
<form name="contentForm" id="contentForm" method="post" action="<?php echo $_SERVER['PHP_SELF'] ?>">
|
|
|
|
<?php
|
2017-12-05 00:05:50 +08:00
|
|
|
if ( !empty($_REQUEST['eid']) ) {
|
2017-12-04 03:04:33 +08:00
|
|
|
?>
|
|
|
|
<input type="hidden" name="id" value="<?php echo validInt($_REQUEST['eid']) ?>"/>
|
2017-12-12 06:33:17 +08:00
|
|
|
<?php
|
|
|
|
$Event = new Event( $_REQUEST['eid'] );
|
|
|
|
echo 'Downloading event ' . $_REQUEST['eid'] . ' Resulting file should be approximately ' . human_filesize( $Event->DiskSpace() );
|
2017-12-05 00:05:50 +08:00
|
|
|
} else if ( !empty($_REQUEST['eids']) ) {
|
2018-05-18 21:51:42 +08:00
|
|
|
$total_size = 0;
|
2017-12-05 00:05:50 +08:00
|
|
|
foreach ( $_REQUEST['eids'] as $eid ) {
|
2018-05-18 21:51:42 +08:00
|
|
|
$Event = new Event($eid);
|
|
|
|
$total_size += $Event->DiskSpace();
|
2017-12-04 03:04:33 +08:00
|
|
|
?>
|
|
|
|
<input type="hidden" name="eids[]" value="<?php echo validInt($eid) ?>"/>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
unset( $eid );
|
2017-12-12 06:33:17 +08:00
|
|
|
echo "Downloading " . count($_REQUEST['eids']) . ' events. Resulting file should be approximately ' . human_filesize($total_size);
|
|
|
|
} else {
|
2018-05-18 21:51:42 +08:00
|
|
|
echo '<div class="warning">There are no events found. Resulting download will be empty.</div>';
|
2017-12-04 03:04:33 +08:00
|
|
|
}
|
|
|
|
?>
|
|
|
|
<table id="contentTable" class="minor" cellspacing="0">
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td><input type="hidden" name="exportVideo" value="1"/></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row"><?php echo translate('ExportFormat') ?></th>
|
|
|
|
<td>
|
2017-12-05 00:05:50 +08:00
|
|
|
<input type="radio" id="exportFormatTar" name="exportFormat" value="tar" onclick="configureExportButton(this)"/>
|
|
|
|
<label for="exportFormatTar"><?php echo translate('ExportFormatTar') ?></label>
|
|
|
|
<input type="radio" id="exportFormatZip" name="exportFormat" value="zip" checked="checked" onclick="configureExportButton(this);"/>
|
|
|
|
<label for="exportFormatZip"><?php echo translate('ExportFormatZip') ?></label>
|
2017-12-04 03:04:33 +08:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2017-12-05 00:05:50 +08:00
|
|
|
<input type="button" id="exportButton" name="exportButton" value="<?php echo translate('GenerateDownload') ?>" onclick="exportEvent(this.form);" />
|
2017-12-04 03:04:33 +08:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<?php
|
2017-12-05 00:05:50 +08:00
|
|
|
if ( isset($_REQUEST['generated']) ) {
|
2017-12-04 03:04:33 +08:00
|
|
|
?>
|
2017-12-05 00:05:50 +08:00
|
|
|
<h2 id="exportProgress" class="<?php echo $_REQUEST['generated']?'infoText':'errorText' ?>">
|
|
|
|
<span id="exportProgressText"><?php echo $_REQUEST['generated']?translate('ExportSucceeded'):translate('ExportFailed') ?></span>
|
|
|
|
<span id="exportProgressTicker"></span>
|
|
|
|
</h2>
|
2017-12-04 03:04:33 +08:00
|
|
|
<?php
|
2017-12-05 00:05:50 +08:00
|
|
|
} else {
|
2017-12-04 03:04:33 +08:00
|
|
|
?>
|
2017-12-05 00:05:50 +08:00
|
|
|
<h2 id="exportProgress" class="hidden warnText">
|
|
|
|
<span id="exportProgressText"><?php echo translate('Exporting') ?></span>
|
|
|
|
<span id="exportProgressTicker"></span>
|
|
|
|
</h2>
|
2017-12-04 03:04:33 +08:00
|
|
|
<?php
|
|
|
|
}
|
2017-12-05 00:05:50 +08:00
|
|
|
if ( !empty($_REQUEST['generated']) ) {
|
2017-12-04 03:04:33 +08:00
|
|
|
?>
|
|
|
|
<h3 id="downloadLink"><a href="<?php echo validHtmlStr($_REQUEST['exportFile']) ?>"><?php echo translate('Download') ?></a></h3>
|
|
|
|
<?php
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|